arm64-apple-ios.abi.json 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148
  1. {
  2. "ABIRoot": {
  3. "kind": "Root",
  4. "name": "TopLevel",
  5. "printedName": "TopLevel",
  6. "children": [
  7. {
  8. "kind": "Import",
  9. "name": "Security",
  10. "printedName": "Security",
  11. "declKind": "Import",
  12. "moduleName": "nuSDKService",
  13. "declAttributes": [
  14. "RawDocComment"
  15. ]
  16. },
  17. {
  18. "kind": "Import",
  19. "name": "Foundation",
  20. "printedName": "Foundation",
  21. "declKind": "Import",
  22. "moduleName": "nuSDKService"
  23. },
  24. {
  25. "kind": "Import",
  26. "name": "CommonCrypto",
  27. "printedName": "CommonCrypto",
  28. "declKind": "Import",
  29. "moduleName": "nuSDKService"
  30. },
  31. {
  32. "kind": "Import",
  33. "name": "Foundation",
  34. "printedName": "Foundation",
  35. "declKind": "Import",
  36. "moduleName": "nuSDKService",
  37. "declAttributes": [
  38. "RawDocComment"
  39. ]
  40. },
  41. {
  42. "kind": "Import",
  43. "name": "AVFoundation",
  44. "printedName": "AVFoundation",
  45. "declKind": "Import",
  46. "moduleName": "nuSDKService",
  47. "declAttributes": [
  48. "RawDocComment"
  49. ]
  50. },
  51. {
  52. "kind": "Import",
  53. "name": "ReplayKit",
  54. "printedName": "ReplayKit",
  55. "declKind": "Import",
  56. "moduleName": "nuSDKService"
  57. },
  58. {
  59. "kind": "TypeDecl",
  60. "name": "CallBack",
  61. "printedName": "CallBack",
  62. "children": [
  63. {
  64. "kind": "Var",
  65. "name": "sID",
  66. "printedName": "sID",
  67. "children": [
  68. {
  69. "kind": "TypeNominal",
  70. "name": "String",
  71. "printedName": "Swift.String",
  72. "usr": "s:SS"
  73. }
  74. ],
  75. "declKind": "Var",
  76. "usr": "s:12nuSDKService8CallBackP3sIDSSvp",
  77. "mangledName": "$s12nuSDKService8CallBackP3sIDSSvp",
  78. "moduleName": "nuSDKService",
  79. "protocolReq": true,
  80. "accessors": [
  81. {
  82. "kind": "Accessor",
  83. "name": "Get",
  84. "printedName": "Get()",
  85. "children": [
  86. {
  87. "kind": "TypeNominal",
  88. "name": "String",
  89. "printedName": "Swift.String",
  90. "usr": "s:SS"
  91. }
  92. ],
  93. "declKind": "Accessor",
  94. "usr": "s:12nuSDKService8CallBackP3sIDSSvg",
  95. "mangledName": "$s12nuSDKService8CallBackP3sIDSSvg",
  96. "moduleName": "nuSDKService",
  97. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  98. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  99. "protocolReq": true,
  100. "reqNewWitnessTableEntry": true,
  101. "accessorKind": "get"
  102. }
  103. ]
  104. },
  105. {
  106. "kind": "Function",
  107. "name": "connectionStateChanged",
  108. "printedName": "connectionStateChanged(sUserID:sDeviceID:bConState:nConType:nConSubType:nCLMConStat:)",
  109. "children": [
  110. {
  111. "kind": "TypeNominal",
  112. "name": "Void",
  113. "printedName": "()"
  114. },
  115. {
  116. "kind": "TypeNominal",
  117. "name": "ImplicitlyUnwrappedOptional",
  118. "printedName": "Swift.String?",
  119. "children": [
  120. {
  121. "kind": "TypeNominal",
  122. "name": "String",
  123. "printedName": "Swift.String",
  124. "usr": "s:SS"
  125. }
  126. ],
  127. "usr": "s:Sq"
  128. },
  129. {
  130. "kind": "TypeNominal",
  131. "name": "ImplicitlyUnwrappedOptional",
  132. "printedName": "Swift.String?",
  133. "children": [
  134. {
  135. "kind": "TypeNominal",
  136. "name": "String",
  137. "printedName": "Swift.String",
  138. "usr": "s:SS"
  139. }
  140. ],
  141. "usr": "s:Sq"
  142. },
  143. {
  144. "kind": "TypeNominal",
  145. "name": "ImplicitlyUnwrappedOptional",
  146. "printedName": "Swift.Bool?",
  147. "children": [
  148. {
  149. "kind": "TypeNominal",
  150. "name": "Bool",
  151. "printedName": "Swift.Bool",
  152. "usr": "s:Sb"
  153. }
  154. ],
  155. "usr": "s:Sq"
  156. },
  157. {
  158. "kind": "TypeNominal",
  159. "name": "ImplicitlyUnwrappedOptional",
  160. "printedName": "Swift.Int?",
  161. "children": [
  162. {
  163. "kind": "TypeNominal",
  164. "name": "Int",
  165. "printedName": "Swift.Int",
  166. "usr": "s:Si"
  167. }
  168. ],
  169. "usr": "s:Sq"
  170. },
  171. {
  172. "kind": "TypeNominal",
  173. "name": "ImplicitlyUnwrappedOptional",
  174. "printedName": "Swift.Int?",
  175. "children": [
  176. {
  177. "kind": "TypeNominal",
  178. "name": "Int",
  179. "printedName": "Swift.Int",
  180. "usr": "s:Si"
  181. }
  182. ],
  183. "usr": "s:Sq"
  184. },
  185. {
  186. "kind": "TypeNominal",
  187. "name": "ImplicitlyUnwrappedOptional",
  188. "printedName": "Swift.UInt8?",
  189. "children": [
  190. {
  191. "kind": "TypeNominal",
  192. "name": "UInt8",
  193. "printedName": "Swift.UInt8",
  194. "usr": "s:s5UInt8V"
  195. }
  196. ],
  197. "usr": "s:Sq"
  198. }
  199. ],
  200. "declKind": "Func",
  201. "usr": "s:12nuSDKService8CallBackP22connectionStateChanged7sUserID07sDeviceI004bConF001nK4Type01nk3SubL011nCLMConStatySSSg_AKSbSgSiSgAMs5UInt8VSgtF",
  202. "mangledName": "$s12nuSDKService8CallBackP22connectionStateChanged7sUserID07sDeviceI004bConF001nK4Type01nk3SubL011nCLMConStatySSSg_AKSbSgSiSgAMs5UInt8VSgtF",
  203. "moduleName": "nuSDKService",
  204. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  205. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  206. "protocolReq": true,
  207. "reqNewWitnessTableEntry": true,
  208. "funcSelfKind": "NonMutating"
  209. },
  210. {
  211. "kind": "Function",
  212. "name": "gpsStateChanged",
  213. "printedName": "gpsStateChanged(nState:)",
  214. "children": [
  215. {
  216. "kind": "TypeNominal",
  217. "name": "Void",
  218. "printedName": "()"
  219. },
  220. {
  221. "kind": "TypeNominal",
  222. "name": "ImplicitlyUnwrappedOptional",
  223. "printedName": "Swift.Int?",
  224. "children": [
  225. {
  226. "kind": "TypeNominal",
  227. "name": "Int",
  228. "printedName": "Swift.Int",
  229. "usr": "s:Si"
  230. }
  231. ],
  232. "usr": "s:Sq"
  233. }
  234. ],
  235. "declKind": "Func",
  236. "usr": "s:12nuSDKService8CallBackP15gpsStateChanged01nF0ySiSg_tF",
  237. "mangledName": "$s12nuSDKService8CallBackP15gpsStateChanged01nF0ySiSg_tF",
  238. "moduleName": "nuSDKService",
  239. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  240. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  241. "protocolReq": true,
  242. "reqNewWitnessTableEntry": true,
  243. "funcSelfKind": "NonMutating"
  244. },
  245. {
  246. "kind": "Function",
  247. "name": "sleepStateChanged",
  248. "printedName": "sleepStateChanged(bState:)",
  249. "children": [
  250. {
  251. "kind": "TypeNominal",
  252. "name": "Void",
  253. "printedName": "()"
  254. },
  255. {
  256. "kind": "TypeNominal",
  257. "name": "ImplicitlyUnwrappedOptional",
  258. "printedName": "Swift.Bool?",
  259. "children": [
  260. {
  261. "kind": "TypeNominal",
  262. "name": "Bool",
  263. "printedName": "Swift.Bool",
  264. "usr": "s:Sb"
  265. }
  266. ],
  267. "usr": "s:Sq"
  268. }
  269. ],
  270. "declKind": "Func",
  271. "usr": "s:12nuSDKService8CallBackP17sleepStateChanged01bF0ySbSg_tF",
  272. "mangledName": "$s12nuSDKService8CallBackP17sleepStateChanged01bF0ySbSg_tF",
  273. "moduleName": "nuSDKService",
  274. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  275. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  276. "protocolReq": true,
  277. "declAttributes": [
  278. "RawDocComment"
  279. ],
  280. "reqNewWitnessTableEntry": true,
  281. "funcSelfKind": "NonMutating"
  282. },
  283. {
  284. "kind": "Function",
  285. "name": "callStateChanged",
  286. "printedName": "callStateChanged(nState:sMessage:)",
  287. "children": [
  288. {
  289. "kind": "TypeNominal",
  290. "name": "Int",
  291. "printedName": "Swift.Int",
  292. "usr": "s:Si"
  293. },
  294. {
  295. "kind": "TypeNominal",
  296. "name": "ImplicitlyUnwrappedOptional",
  297. "printedName": "Swift.Int?",
  298. "children": [
  299. {
  300. "kind": "TypeNominal",
  301. "name": "Int",
  302. "printedName": "Swift.Int",
  303. "usr": "s:Si"
  304. }
  305. ],
  306. "usr": "s:Sq"
  307. },
  308. {
  309. "kind": "TypeNominal",
  310. "name": "ImplicitlyUnwrappedOptional",
  311. "printedName": "Swift.String?",
  312. "children": [
  313. {
  314. "kind": "TypeNominal",
  315. "name": "String",
  316. "printedName": "Swift.String",
  317. "usr": "s:SS"
  318. }
  319. ],
  320. "usr": "s:Sq"
  321. }
  322. ],
  323. "declKind": "Func",
  324. "usr": "s:12nuSDKService8CallBackP16callStateChanged01nF08sMessageS2iSg_SSSgtF",
  325. "mangledName": "$s12nuSDKService8CallBackP16callStateChanged01nF08sMessageS2iSg_SSSgtF",
  326. "moduleName": "nuSDKService",
  327. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  328. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  329. "protocolReq": true,
  330. "reqNewWitnessTableEntry": true,
  331. "funcSelfKind": "NonMutating"
  332. },
  333. {
  334. "kind": "Function",
  335. "name": "bcastStateChanged",
  336. "printedName": "bcastStateChanged(nState:sMessage:)",
  337. "children": [
  338. {
  339. "kind": "TypeNominal",
  340. "name": "Int",
  341. "printedName": "Swift.Int",
  342. "usr": "s:Si"
  343. },
  344. {
  345. "kind": "TypeNominal",
  346. "name": "ImplicitlyUnwrappedOptional",
  347. "printedName": "Swift.Int?",
  348. "children": [
  349. {
  350. "kind": "TypeNominal",
  351. "name": "Int",
  352. "printedName": "Swift.Int",
  353. "usr": "s:Si"
  354. }
  355. ],
  356. "usr": "s:Sq"
  357. },
  358. {
  359. "kind": "TypeNominal",
  360. "name": "ImplicitlyUnwrappedOptional",
  361. "printedName": "Swift.String?",
  362. "children": [
  363. {
  364. "kind": "TypeNominal",
  365. "name": "String",
  366. "printedName": "Swift.String",
  367. "usr": "s:SS"
  368. }
  369. ],
  370. "usr": "s:Sq"
  371. }
  372. ],
  373. "declKind": "Func",
  374. "usr": "s:12nuSDKService8CallBackP17bcastStateChanged01nF08sMessageS2iSg_SSSgtF",
  375. "mangledName": "$s12nuSDKService8CallBackP17bcastStateChanged01nF08sMessageS2iSg_SSSgtF",
  376. "moduleName": "nuSDKService",
  377. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  378. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  379. "protocolReq": true,
  380. "declAttributes": [
  381. "RawDocComment"
  382. ],
  383. "reqNewWitnessTableEntry": true,
  384. "funcSelfKind": "NonMutating"
  385. },
  386. {
  387. "kind": "Function",
  388. "name": "sshareStateChanged",
  389. "printedName": "sshareStateChanged(nState:sMessage:)",
  390. "children": [
  391. {
  392. "kind": "TypeNominal",
  393. "name": "Int",
  394. "printedName": "Swift.Int",
  395. "usr": "s:Si"
  396. },
  397. {
  398. "kind": "TypeNominal",
  399. "name": "ImplicitlyUnwrappedOptional",
  400. "printedName": "Swift.Int?",
  401. "children": [
  402. {
  403. "kind": "TypeNominal",
  404. "name": "Int",
  405. "printedName": "Swift.Int",
  406. "usr": "s:Si"
  407. }
  408. ],
  409. "usr": "s:Sq"
  410. },
  411. {
  412. "kind": "TypeNominal",
  413. "name": "ImplicitlyUnwrappedOptional",
  414. "printedName": "Swift.String?",
  415. "children": [
  416. {
  417. "kind": "TypeNominal",
  418. "name": "String",
  419. "printedName": "Swift.String",
  420. "usr": "s:SS"
  421. }
  422. ],
  423. "usr": "s:Sq"
  424. }
  425. ],
  426. "declKind": "Func",
  427. "usr": "s:12nuSDKService8CallBackP18sshareStateChanged01nF08sMessageS2iSg_SSSgtF",
  428. "mangledName": "$s12nuSDKService8CallBackP18sshareStateChanged01nF08sMessageS2iSg_SSSgtF",
  429. "moduleName": "nuSDKService",
  430. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  431. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  432. "protocolReq": true,
  433. "reqNewWitnessTableEntry": true,
  434. "funcSelfKind": "NonMutating"
  435. },
  436. {
  437. "kind": "Function",
  438. "name": "incomingData",
  439. "printedName": "incomingData(sPacketID:oData:)",
  440. "children": [
  441. {
  442. "kind": "TypeNominal",
  443. "name": "Void",
  444. "printedName": "()"
  445. },
  446. {
  447. "kind": "TypeNominal",
  448. "name": "ImplicitlyUnwrappedOptional",
  449. "printedName": "Swift.String?",
  450. "children": [
  451. {
  452. "kind": "TypeNominal",
  453. "name": "String",
  454. "printedName": "Swift.String",
  455. "usr": "s:SS"
  456. }
  457. ],
  458. "usr": "s:Sq"
  459. },
  460. {
  461. "kind": "TypeNominal",
  462. "name": "ImplicitlyUnwrappedOptional",
  463. "printedName": "AnyObject?",
  464. "children": [
  465. {
  466. "kind": "TypeNominal",
  467. "name": "ProtocolComposition",
  468. "printedName": "AnyObject"
  469. }
  470. ],
  471. "usr": "s:Sq"
  472. }
  473. ],
  474. "declKind": "Func",
  475. "usr": "s:12nuSDKService8CallBackP12incomingData9sPacketID01oF0ySSSg_yXlSgtKF",
  476. "mangledName": "$s12nuSDKService8CallBackP12incomingData9sPacketID01oF0ySSSg_yXlSgtKF",
  477. "moduleName": "nuSDKService",
  478. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  479. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  480. "protocolReq": true,
  481. "throwing": true,
  482. "reqNewWitnessTableEntry": true,
  483. "funcSelfKind": "NonMutating"
  484. },
  485. {
  486. "kind": "Function",
  487. "name": "lateResponse",
  488. "printedName": "lateResponse(sPacketID:sResponse:)",
  489. "children": [
  490. {
  491. "kind": "TypeNominal",
  492. "name": "Void",
  493. "printedName": "()"
  494. },
  495. {
  496. "kind": "TypeNominal",
  497. "name": "ImplicitlyUnwrappedOptional",
  498. "printedName": "Swift.String?",
  499. "children": [
  500. {
  501. "kind": "TypeNominal",
  502. "name": "String",
  503. "printedName": "Swift.String",
  504. "usr": "s:SS"
  505. }
  506. ],
  507. "usr": "s:Sq"
  508. },
  509. {
  510. "kind": "TypeNominal",
  511. "name": "ImplicitlyUnwrappedOptional",
  512. "printedName": "Swift.String?",
  513. "children": [
  514. {
  515. "kind": "TypeNominal",
  516. "name": "String",
  517. "printedName": "Swift.String",
  518. "usr": "s:SS"
  519. }
  520. ],
  521. "usr": "s:Sq"
  522. }
  523. ],
  524. "declKind": "Func",
  525. "usr": "s:12nuSDKService8CallBackP12lateResponse9sPacketID01sF0ySSSg_AGtKF",
  526. "mangledName": "$s12nuSDKService8CallBackP12lateResponse9sPacketID01sF0ySSSg_AGtKF",
  527. "moduleName": "nuSDKService",
  528. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  529. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  530. "protocolReq": true,
  531. "throwing": true,
  532. "reqNewWitnessTableEntry": true,
  533. "funcSelfKind": "NonMutating"
  534. },
  535. {
  536. "kind": "Function",
  537. "name": "asycnACKReceived",
  538. "printedName": "asycnACKReceived(sPacketID:)",
  539. "children": [
  540. {
  541. "kind": "TypeNominal",
  542. "name": "Void",
  543. "printedName": "()"
  544. },
  545. {
  546. "kind": "TypeNominal",
  547. "name": "ImplicitlyUnwrappedOptional",
  548. "printedName": "Swift.String?",
  549. "children": [
  550. {
  551. "kind": "TypeNominal",
  552. "name": "String",
  553. "printedName": "Swift.String",
  554. "usr": "s:SS"
  555. }
  556. ],
  557. "usr": "s:Sq"
  558. }
  559. ],
  560. "declKind": "Func",
  561. "usr": "s:12nuSDKService8CallBackP16asycnACKReceived9sPacketIDySSSg_tKF",
  562. "mangledName": "$s12nuSDKService8CallBackP16asycnACKReceived9sPacketIDySSSg_tKF",
  563. "moduleName": "nuSDKService",
  564. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  565. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  566. "protocolReq": true,
  567. "throwing": true,
  568. "reqNewWitnessTableEntry": true,
  569. "funcSelfKind": "NonMutating"
  570. },
  571. {
  572. "kind": "Function",
  573. "name": "locationUpdated",
  574. "printedName": "locationUpdated(lTime:sLocationInfo:)",
  575. "children": [
  576. {
  577. "kind": "TypeNominal",
  578. "name": "Void",
  579. "printedName": "()"
  580. },
  581. {
  582. "kind": "TypeNominal",
  583. "name": "ImplicitlyUnwrappedOptional",
  584. "printedName": "Swift.Int64?",
  585. "children": [
  586. {
  587. "kind": "TypeNominal",
  588. "name": "Int64",
  589. "printedName": "Swift.Int64",
  590. "usr": "s:s5Int64V"
  591. }
  592. ],
  593. "usr": "s:Sq"
  594. },
  595. {
  596. "kind": "TypeNominal",
  597. "name": "ImplicitlyUnwrappedOptional",
  598. "printedName": "Swift.String?",
  599. "children": [
  600. {
  601. "kind": "TypeNominal",
  602. "name": "String",
  603. "printedName": "Swift.String",
  604. "usr": "s:SS"
  605. }
  606. ],
  607. "usr": "s:Sq"
  608. }
  609. ],
  610. "declKind": "Func",
  611. "usr": "s:12nuSDKService8CallBackP15locationUpdated5lTime13sLocationInfoys5Int64VSg_SSSgtF",
  612. "mangledName": "$s12nuSDKService8CallBackP15locationUpdated5lTime13sLocationInfoys5Int64VSg_SSSgtF",
  613. "moduleName": "nuSDKService",
  614. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  615. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  616. "protocolReq": true,
  617. "reqNewWitnessTableEntry": true,
  618. "funcSelfKind": "NonMutating"
  619. },
  620. {
  621. "kind": "Function",
  622. "name": "resetDB",
  623. "printedName": "resetDB()",
  624. "children": [
  625. {
  626. "kind": "TypeNominal",
  627. "name": "Void",
  628. "printedName": "()"
  629. }
  630. ],
  631. "declKind": "Func",
  632. "usr": "s:12nuSDKService8CallBackP7resetDByyF",
  633. "mangledName": "$s12nuSDKService8CallBackP7resetDByyF",
  634. "moduleName": "nuSDKService",
  635. "genericSig": "<τ_0_0 where τ_0_0 : nuSDKService.CallBack>",
  636. "sugared_genericSig": "<Self where Self : nuSDKService.CallBack>",
  637. "protocolReq": true,
  638. "declAttributes": [
  639. "RawDocComment"
  640. ],
  641. "reqNewWitnessTableEntry": true,
  642. "funcSelfKind": "NonMutating"
  643. }
  644. ],
  645. "declKind": "Protocol",
  646. "usr": "s:12nuSDKService8CallBackP",
  647. "mangledName": "$s12nuSDKService8CallBackP",
  648. "moduleName": "nuSDKService",
  649. "declAttributes": [
  650. "AccessControl",
  651. "RawDocComment"
  652. ]
  653. },
  654. {
  655. "kind": "Import",
  656. "name": "Foundation",
  657. "printedName": "Foundation",
  658. "declKind": "Import",
  659. "moduleName": "nuSDKService",
  660. "declAttributes": [
  661. "RawDocComment"
  662. ]
  663. },
  664. {
  665. "kind": "Import",
  666. "name": "AVFoundation",
  667. "printedName": "AVFoundation",
  668. "declKind": "Import",
  669. "moduleName": "nuSDKService"
  670. },
  671. {
  672. "kind": "Import",
  673. "name": "CoreImage",
  674. "printedName": "CoreImage",
  675. "declKind": "Import",
  676. "moduleName": "nuSDKService"
  677. },
  678. {
  679. "kind": "Import",
  680. "name": "UIKit",
  681. "printedName": "UIKit",
  682. "declKind": "Import",
  683. "moduleName": "nuSDKService"
  684. },
  685. {
  686. "kind": "Import",
  687. "name": "WebPKit",
  688. "printedName": "WebPKit",
  689. "declKind": "Import",
  690. "moduleName": "nuSDKService",
  691. "declAttributes": [
  692. "ImplementationOnly"
  693. ]
  694. },
  695. {
  696. "kind": "Import",
  697. "name": "Foundation",
  698. "printedName": "Foundation",
  699. "declKind": "Import",
  700. "moduleName": "nuSDKService",
  701. "declAttributes": [
  702. "RawDocComment"
  703. ]
  704. },
  705. {
  706. "kind": "Import",
  707. "name": "Security",
  708. "printedName": "Security",
  709. "declKind": "Import",
  710. "moduleName": "nuSDKService"
  711. },
  712. {
  713. "kind": "Import",
  714. "name": "Foundation",
  715. "printedName": "Foundation",
  716. "declKind": "Import",
  717. "moduleName": "nuSDKService",
  718. "declAttributes": [
  719. "RawDocComment"
  720. ]
  721. },
  722. {
  723. "kind": "Import",
  724. "name": "UIKit",
  725. "printedName": "UIKit",
  726. "declKind": "Import",
  727. "moduleName": "nuSDKService",
  728. "declAttributes": [
  729. "RawDocComment"
  730. ]
  731. },
  732. {
  733. "kind": "Import",
  734. "name": "AVFoundation",
  735. "printedName": "AVFoundation",
  736. "declKind": "Import",
  737. "moduleName": "nuSDKService",
  738. "declAttributes": [
  739. "RawDocComment"
  740. ]
  741. },
  742. {
  743. "kind": "Import",
  744. "name": "CoreTelephony",
  745. "printedName": "CoreTelephony",
  746. "declKind": "Import",
  747. "moduleName": "nuSDKService"
  748. },
  749. {
  750. "kind": "Import",
  751. "name": "UIKit",
  752. "printedName": "UIKit",
  753. "declKind": "Import",
  754. "moduleName": "nuSDKService"
  755. },
  756. {
  757. "kind": "TypeDecl",
  758. "name": "API",
  759. "printedName": "API",
  760. "children": [
  761. {
  762. "kind": "Function",
  763. "name": "initConnection",
  764. "printedName": "initConnection(bSwitchIP:sAPIK:aAppMain:cbiI:sTCPAddr:nTCPPort:sUserID:sStartWH:)",
  765. "children": [
  766. {
  767. "kind": "TypeNominal",
  768. "name": "Void",
  769. "printedName": "()"
  770. },
  771. {
  772. "kind": "TypeNominal",
  773. "name": "ImplicitlyUnwrappedOptional",
  774. "printedName": "Swift.Bool?",
  775. "children": [
  776. {
  777. "kind": "TypeNominal",
  778. "name": "Bool",
  779. "printedName": "Swift.Bool",
  780. "usr": "s:Sb"
  781. }
  782. ],
  783. "usr": "s:Sq"
  784. },
  785. {
  786. "kind": "TypeNominal",
  787. "name": "ImplicitlyUnwrappedOptional",
  788. "printedName": "Swift.String?",
  789. "children": [
  790. {
  791. "kind": "TypeNominal",
  792. "name": "String",
  793. "printedName": "Swift.String",
  794. "usr": "s:SS"
  795. }
  796. ],
  797. "usr": "s:Sq"
  798. },
  799. {
  800. "kind": "TypeNominal",
  801. "name": "ImplicitlyUnwrappedOptional",
  802. "printedName": "UIKit.UIViewController?",
  803. "children": [
  804. {
  805. "kind": "TypeNominal",
  806. "name": "UIViewController",
  807. "printedName": "UIKit.UIViewController",
  808. "usr": "c:objc(cs)UIViewController"
  809. }
  810. ],
  811. "usr": "s:Sq"
  812. },
  813. {
  814. "kind": "TypeNominal",
  815. "name": "ImplicitlyUnwrappedOptional",
  816. "printedName": "nuSDKService.CallBack?",
  817. "children": [
  818. {
  819. "kind": "TypeNominal",
  820. "name": "CallBack",
  821. "printedName": "nuSDKService.CallBack",
  822. "usr": "s:12nuSDKService8CallBackP"
  823. }
  824. ],
  825. "usr": "s:Sq"
  826. },
  827. {
  828. "kind": "TypeNominal",
  829. "name": "ImplicitlyUnwrappedOptional",
  830. "printedName": "Swift.String?",
  831. "children": [
  832. {
  833. "kind": "TypeNominal",
  834. "name": "String",
  835. "printedName": "Swift.String",
  836. "usr": "s:SS"
  837. }
  838. ],
  839. "usr": "s:Sq"
  840. },
  841. {
  842. "kind": "TypeNominal",
  843. "name": "ImplicitlyUnwrappedOptional",
  844. "printedName": "Swift.Int?",
  845. "children": [
  846. {
  847. "kind": "TypeNominal",
  848. "name": "Int",
  849. "printedName": "Swift.Int",
  850. "usr": "s:Si"
  851. }
  852. ],
  853. "usr": "s:Sq"
  854. },
  855. {
  856. "kind": "TypeNominal",
  857. "name": "ImplicitlyUnwrappedOptional",
  858. "printedName": "Swift.String?",
  859. "children": [
  860. {
  861. "kind": "TypeNominal",
  862. "name": "String",
  863. "printedName": "Swift.String",
  864. "usr": "s:SS"
  865. }
  866. ],
  867. "usr": "s:Sq"
  868. },
  869. {
  870. "kind": "TypeNominal",
  871. "name": "ImplicitlyUnwrappedOptional",
  872. "printedName": "Swift.String?",
  873. "children": [
  874. {
  875. "kind": "TypeNominal",
  876. "name": "String",
  877. "printedName": "Swift.String",
  878. "usr": "s:SS"
  879. }
  880. ],
  881. "usr": "s:Sq"
  882. }
  883. ],
  884. "declKind": "Func",
  885. "usr": "s:12nuSDKService3APIC14initConnection9bSwitchIP5sAPIK8aAppMain4cbiI8sTCPAddr8nTCPPort7sUserID8sStartWHySbSg_SSSgSo16UIViewControllerCSgAA8CallBack_pSgANSiSgA2NtKFZ",
  886. "mangledName": "$s12nuSDKService3APIC14initConnection9bSwitchIP5sAPIK8aAppMain4cbiI8sTCPAddr8nTCPPort7sUserID8sStartWHySbSg_SSSgSo16UIViewControllerCSgAA8CallBack_pSgANSiSgA2NtKFZ",
  887. "moduleName": "nuSDKService",
  888. "static": true,
  889. "declAttributes": [
  890. "Final",
  891. "AccessControl",
  892. "RawDocComment"
  893. ],
  894. "throwing": true,
  895. "funcSelfKind": "NonMutating"
  896. },
  897. {
  898. "kind": "Function",
  899. "name": "switchCBI",
  900. "printedName": "switchCBI(cbiI:bLight:)",
  901. "children": [
  902. {
  903. "kind": "TypeNominal",
  904. "name": "Void",
  905. "printedName": "()"
  906. },
  907. {
  908. "kind": "TypeNominal",
  909. "name": "ImplicitlyUnwrappedOptional",
  910. "printedName": "nuSDKService.CallBack?",
  911. "children": [
  912. {
  913. "kind": "TypeNominal",
  914. "name": "CallBack",
  915. "printedName": "nuSDKService.CallBack",
  916. "usr": "s:12nuSDKService8CallBackP"
  917. }
  918. ],
  919. "usr": "s:Sq"
  920. },
  921. {
  922. "kind": "TypeNominal",
  923. "name": "ImplicitlyUnwrappedOptional",
  924. "printedName": "Swift.Bool?",
  925. "children": [
  926. {
  927. "kind": "TypeNominal",
  928. "name": "Bool",
  929. "printedName": "Swift.Bool",
  930. "usr": "s:Sb"
  931. }
  932. ],
  933. "usr": "s:Sq"
  934. }
  935. ],
  936. "declKind": "Func",
  937. "usr": "s:12nuSDKService3APIC9switchCBI4cbiI6bLightyAA8CallBack_pSg_SbSgtKFZ",
  938. "mangledName": "$s12nuSDKService3APIC9switchCBI4cbiI6bLightyAA8CallBack_pSg_SbSgtKFZ",
  939. "moduleName": "nuSDKService",
  940. "static": true,
  941. "declAttributes": [
  942. "Final",
  943. "AccessControl"
  944. ],
  945. "throwing": true,
  946. "funcSelfKind": "NonMutating"
  947. },
  948. {
  949. "kind": "Function",
  950. "name": "bnuSDKServiceReady",
  951. "printedName": "bnuSDKServiceReady()",
  952. "children": [
  953. {
  954. "kind": "TypeNominal",
  955. "name": "Bool",
  956. "printedName": "Swift.Bool",
  957. "usr": "s:Sb"
  958. }
  959. ],
  960. "declKind": "Func",
  961. "usr": "s:12nuSDKService3APIC03bnuB5ReadySbyFZ",
  962. "mangledName": "$s12nuSDKService3APIC03bnuB5ReadySbyFZ",
  963. "moduleName": "nuSDKService",
  964. "static": true,
  965. "declAttributes": [
  966. "Final",
  967. "AccessControl"
  968. ],
  969. "funcSelfKind": "NonMutating"
  970. },
  971. {
  972. "kind": "Function",
  973. "name": "sSend",
  974. "printedName": "sSend(sData:nPriority:lTimeout:)",
  975. "children": [
  976. {
  977. "kind": "TypeNominal",
  978. "name": "Optional",
  979. "printedName": "Swift.String?",
  980. "children": [
  981. {
  982. "kind": "TypeNominal",
  983. "name": "String",
  984. "printedName": "Swift.String",
  985. "usr": "s:SS"
  986. }
  987. ],
  988. "usr": "s:Sq"
  989. },
  990. {
  991. "kind": "TypeNominal",
  992. "name": "ImplicitlyUnwrappedOptional",
  993. "printedName": "Swift.String?",
  994. "children": [
  995. {
  996. "kind": "TypeNominal",
  997. "name": "String",
  998. "printedName": "Swift.String",
  999. "usr": "s:SS"
  1000. }
  1001. ],
  1002. "usr": "s:Sq"
  1003. },
  1004. {
  1005. "kind": "TypeNominal",
  1006. "name": "ImplicitlyUnwrappedOptional",
  1007. "printedName": "Swift.UInt8?",
  1008. "children": [
  1009. {
  1010. "kind": "TypeNominal",
  1011. "name": "UInt8",
  1012. "printedName": "Swift.UInt8",
  1013. "usr": "s:s5UInt8V"
  1014. }
  1015. ],
  1016. "usr": "s:Sq"
  1017. },
  1018. {
  1019. "kind": "TypeNominal",
  1020. "name": "ImplicitlyUnwrappedOptional",
  1021. "printedName": "Swift.Int?",
  1022. "children": [
  1023. {
  1024. "kind": "TypeNominal",
  1025. "name": "Int",
  1026. "printedName": "Swift.Int",
  1027. "usr": "s:Si"
  1028. }
  1029. ],
  1030. "usr": "s:Sq"
  1031. }
  1032. ],
  1033. "declKind": "Func",
  1034. "usr": "s:12nuSDKService3APIC5sSend5sData9nPriority8lTimeoutSSSgAH_s5UInt8VSgSiSgtKFZ",
  1035. "mangledName": "$s12nuSDKService3APIC5sSend5sData9nPriority8lTimeoutSSSgAH_s5UInt8VSgSiSgtKFZ",
  1036. "moduleName": "nuSDKService",
  1037. "static": true,
  1038. "declAttributes": [
  1039. "Final",
  1040. "AccessControl"
  1041. ],
  1042. "throwing": true,
  1043. "funcSelfKind": "NonMutating"
  1044. },
  1045. {
  1046. "kind": "Function",
  1047. "name": "sSend",
  1048. "printedName": "sSend(abData:nPriority:lTimeout:)",
  1049. "children": [
  1050. {
  1051. "kind": "TypeNominal",
  1052. "name": "Optional",
  1053. "printedName": "Swift.String?",
  1054. "children": [
  1055. {
  1056. "kind": "TypeNominal",
  1057. "name": "String",
  1058. "printedName": "Swift.String",
  1059. "usr": "s:SS"
  1060. }
  1061. ],
  1062. "usr": "s:Sq"
  1063. },
  1064. {
  1065. "kind": "TypeNominal",
  1066. "name": "ImplicitlyUnwrappedOptional",
  1067. "printedName": "[Swift.UInt8]?",
  1068. "children": [
  1069. {
  1070. "kind": "TypeNominal",
  1071. "name": "Array",
  1072. "printedName": "[Swift.UInt8]",
  1073. "children": [
  1074. {
  1075. "kind": "TypeNominal",
  1076. "name": "UInt8",
  1077. "printedName": "Swift.UInt8",
  1078. "usr": "s:s5UInt8V"
  1079. }
  1080. ],
  1081. "usr": "s:Sa"
  1082. }
  1083. ],
  1084. "usr": "s:Sq"
  1085. },
  1086. {
  1087. "kind": "TypeNominal",
  1088. "name": "ImplicitlyUnwrappedOptional",
  1089. "printedName": "Swift.UInt8?",
  1090. "children": [
  1091. {
  1092. "kind": "TypeNominal",
  1093. "name": "UInt8",
  1094. "printedName": "Swift.UInt8",
  1095. "usr": "s:s5UInt8V"
  1096. }
  1097. ],
  1098. "usr": "s:Sq"
  1099. },
  1100. {
  1101. "kind": "TypeNominal",
  1102. "name": "ImplicitlyUnwrappedOptional",
  1103. "printedName": "Swift.Int?",
  1104. "children": [
  1105. {
  1106. "kind": "TypeNominal",
  1107. "name": "Int",
  1108. "printedName": "Swift.Int",
  1109. "usr": "s:Si"
  1110. }
  1111. ],
  1112. "usr": "s:Sq"
  1113. }
  1114. ],
  1115. "declKind": "Func",
  1116. "usr": "s:12nuSDKService3APIC5sSend6abData9nPriority8lTimeoutSSSgSays5UInt8VGSg_AJSgSiSgtKFZ",
  1117. "mangledName": "$s12nuSDKService3APIC5sSend6abData9nPriority8lTimeoutSSSgSays5UInt8VGSg_AJSgSiSgtKFZ",
  1118. "moduleName": "nuSDKService",
  1119. "static": true,
  1120. "declAttributes": [
  1121. "Final",
  1122. "AccessControl"
  1123. ],
  1124. "throwing": true,
  1125. "funcSelfKind": "NonMutating"
  1126. },
  1127. {
  1128. "kind": "Function",
  1129. "name": "sSendResponse",
  1130. "printedName": "sSendResponse(sRequestID:sResponse:lTimeout:)",
  1131. "children": [
  1132. {
  1133. "kind": "TypeNominal",
  1134. "name": "Optional",
  1135. "printedName": "Swift.String?",
  1136. "children": [
  1137. {
  1138. "kind": "TypeNominal",
  1139. "name": "String",
  1140. "printedName": "Swift.String",
  1141. "usr": "s:SS"
  1142. }
  1143. ],
  1144. "usr": "s:Sq"
  1145. },
  1146. {
  1147. "kind": "TypeNominal",
  1148. "name": "ImplicitlyUnwrappedOptional",
  1149. "printedName": "Swift.String?",
  1150. "children": [
  1151. {
  1152. "kind": "TypeNominal",
  1153. "name": "String",
  1154. "printedName": "Swift.String",
  1155. "usr": "s:SS"
  1156. }
  1157. ],
  1158. "usr": "s:Sq"
  1159. },
  1160. {
  1161. "kind": "TypeNominal",
  1162. "name": "ImplicitlyUnwrappedOptional",
  1163. "printedName": "Swift.String?",
  1164. "children": [
  1165. {
  1166. "kind": "TypeNominal",
  1167. "name": "String",
  1168. "printedName": "Swift.String",
  1169. "usr": "s:SS"
  1170. }
  1171. ],
  1172. "usr": "s:Sq"
  1173. },
  1174. {
  1175. "kind": "TypeNominal",
  1176. "name": "ImplicitlyUnwrappedOptional",
  1177. "printedName": "Swift.Int?",
  1178. "children": [
  1179. {
  1180. "kind": "TypeNominal",
  1181. "name": "Int",
  1182. "printedName": "Swift.Int",
  1183. "usr": "s:Si"
  1184. }
  1185. ],
  1186. "usr": "s:Sq"
  1187. }
  1188. ],
  1189. "declKind": "Func",
  1190. "usr": "s:12nuSDKService3APIC13sSendResponse10sRequestID01sE08lTimeoutSSSgAH_AHSiSgtKFZ",
  1191. "mangledName": "$s12nuSDKService3APIC13sSendResponse10sRequestID01sE08lTimeoutSSSgAH_AHSiSgtKFZ",
  1192. "moduleName": "nuSDKService",
  1193. "static": true,
  1194. "declAttributes": [
  1195. "Final",
  1196. "AccessControl"
  1197. ],
  1198. "throwing": true,
  1199. "funcSelfKind": "NonMutating"
  1200. },
  1201. {
  1202. "kind": "Function",
  1203. "name": "sGetResponse",
  1204. "printedName": "sGetResponse(sRequest:lTimeout:bKeepTOResp:)",
  1205. "children": [
  1206. {
  1207. "kind": "TypeNominal",
  1208. "name": "Optional",
  1209. "printedName": "Swift.String?",
  1210. "children": [
  1211. {
  1212. "kind": "TypeNominal",
  1213. "name": "String",
  1214. "printedName": "Swift.String",
  1215. "usr": "s:SS"
  1216. }
  1217. ],
  1218. "usr": "s:Sq"
  1219. },
  1220. {
  1221. "kind": "TypeNominal",
  1222. "name": "ImplicitlyUnwrappedOptional",
  1223. "printedName": "Swift.String?",
  1224. "children": [
  1225. {
  1226. "kind": "TypeNominal",
  1227. "name": "String",
  1228. "printedName": "Swift.String",
  1229. "usr": "s:SS"
  1230. }
  1231. ],
  1232. "usr": "s:Sq"
  1233. },
  1234. {
  1235. "kind": "TypeNominal",
  1236. "name": "ImplicitlyUnwrappedOptional",
  1237. "printedName": "Swift.Int?",
  1238. "children": [
  1239. {
  1240. "kind": "TypeNominal",
  1241. "name": "Int",
  1242. "printedName": "Swift.Int",
  1243. "usr": "s:Si"
  1244. }
  1245. ],
  1246. "usr": "s:Sq"
  1247. },
  1248. {
  1249. "kind": "TypeNominal",
  1250. "name": "Bool",
  1251. "printedName": "Swift.Bool",
  1252. "usr": "s:Sb"
  1253. }
  1254. ],
  1255. "declKind": "Func",
  1256. "usr": "s:12nuSDKService3APIC12sGetResponse8sRequest8lTimeout11bKeepTORespSSSgAH_SiSgSbtKFZ",
  1257. "mangledName": "$s12nuSDKService3APIC12sGetResponse8sRequest8lTimeout11bKeepTORespSSSgAH_SiSgSbtKFZ",
  1258. "moduleName": "nuSDKService",
  1259. "static": true,
  1260. "declAttributes": [
  1261. "Final",
  1262. "AccessControl"
  1263. ],
  1264. "throwing": true,
  1265. "funcSelfKind": "NonMutating"
  1266. },
  1267. {
  1268. "kind": "Function",
  1269. "name": "sGetMessage",
  1270. "printedName": "sGetMessage(sPacketID:)",
  1271. "children": [
  1272. {
  1273. "kind": "TypeNominal",
  1274. "name": "Optional",
  1275. "printedName": "Swift.String?",
  1276. "children": [
  1277. {
  1278. "kind": "TypeNominal",
  1279. "name": "String",
  1280. "printedName": "Swift.String",
  1281. "usr": "s:SS"
  1282. }
  1283. ],
  1284. "usr": "s:Sq"
  1285. },
  1286. {
  1287. "kind": "TypeNominal",
  1288. "name": "ImplicitlyUnwrappedOptional",
  1289. "printedName": "Swift.String?",
  1290. "children": [
  1291. {
  1292. "kind": "TypeNominal",
  1293. "name": "String",
  1294. "printedName": "Swift.String",
  1295. "usr": "s:SS"
  1296. }
  1297. ],
  1298. "usr": "s:Sq"
  1299. }
  1300. ],
  1301. "declKind": "Func",
  1302. "usr": "s:12nuSDKService3APIC11sGetMessage9sPacketIDSSSgAF_tKFZ",
  1303. "mangledName": "$s12nuSDKService3APIC11sGetMessage9sPacketIDSSSgAF_tKFZ",
  1304. "moduleName": "nuSDKService",
  1305. "static": true,
  1306. "declAttributes": [
  1307. "Final",
  1308. "AccessControl"
  1309. ],
  1310. "throwing": true,
  1311. "funcSelfKind": "NonMutating"
  1312. },
  1313. {
  1314. "kind": "Function",
  1315. "name": "abGetMessage",
  1316. "printedName": "abGetMessage(sPacketID:)",
  1317. "children": [
  1318. {
  1319. "kind": "TypeNominal",
  1320. "name": "Optional",
  1321. "printedName": "[Swift.UInt8]?",
  1322. "children": [
  1323. {
  1324. "kind": "TypeNominal",
  1325. "name": "Array",
  1326. "printedName": "[Swift.UInt8]",
  1327. "children": [
  1328. {
  1329. "kind": "TypeNominal",
  1330. "name": "UInt8",
  1331. "printedName": "Swift.UInt8",
  1332. "usr": "s:s5UInt8V"
  1333. }
  1334. ],
  1335. "usr": "s:Sa"
  1336. }
  1337. ],
  1338. "usr": "s:Sq"
  1339. },
  1340. {
  1341. "kind": "TypeNominal",
  1342. "name": "ImplicitlyUnwrappedOptional",
  1343. "printedName": "Swift.String?",
  1344. "children": [
  1345. {
  1346. "kind": "TypeNominal",
  1347. "name": "String",
  1348. "printedName": "Swift.String",
  1349. "usr": "s:SS"
  1350. }
  1351. ],
  1352. "usr": "s:Sq"
  1353. }
  1354. ],
  1355. "declKind": "Func",
  1356. "usr": "s:12nuSDKService3APIC12abGetMessage9sPacketIDSays5UInt8VGSgSSSg_tKFZ",
  1357. "mangledName": "$s12nuSDKService3APIC12abGetMessage9sPacketIDSays5UInt8VGSgSSSg_tKFZ",
  1358. "moduleName": "nuSDKService",
  1359. "static": true,
  1360. "declAttributes": [
  1361. "Final",
  1362. "AccessControl"
  1363. ],
  1364. "throwing": true,
  1365. "funcSelfKind": "NonMutating"
  1366. },
  1367. {
  1368. "kind": "Function",
  1369. "name": "oGetMessage",
  1370. "printedName": "oGetMessage(sPacketID:)",
  1371. "children": [
  1372. {
  1373. "kind": "TypeNominal",
  1374. "name": "Optional",
  1375. "printedName": "AnyObject?",
  1376. "children": [
  1377. {
  1378. "kind": "TypeNominal",
  1379. "name": "ProtocolComposition",
  1380. "printedName": "AnyObject"
  1381. }
  1382. ],
  1383. "usr": "s:Sq"
  1384. },
  1385. {
  1386. "kind": "TypeNominal",
  1387. "name": "ImplicitlyUnwrappedOptional",
  1388. "printedName": "Swift.String?",
  1389. "children": [
  1390. {
  1391. "kind": "TypeNominal",
  1392. "name": "String",
  1393. "printedName": "Swift.String",
  1394. "usr": "s:SS"
  1395. }
  1396. ],
  1397. "usr": "s:Sq"
  1398. }
  1399. ],
  1400. "declKind": "Func",
  1401. "usr": "s:12nuSDKService3APIC11oGetMessage9sPacketIDyXlSgSSSg_tKFZ",
  1402. "mangledName": "$s12nuSDKService3APIC11oGetMessage9sPacketIDyXlSgSSSg_tKFZ",
  1403. "moduleName": "nuSDKService",
  1404. "static": true,
  1405. "declAttributes": [
  1406. "Final",
  1407. "AccessControl"
  1408. ],
  1409. "throwing": true,
  1410. "funcSelfKind": "NonMutating"
  1411. },
  1412. {
  1413. "kind": "Function",
  1414. "name": "sGetVersion",
  1415. "printedName": "sGetVersion()",
  1416. "children": [
  1417. {
  1418. "kind": "TypeNominal",
  1419. "name": "ImplicitlyUnwrappedOptional",
  1420. "printedName": "Swift.String?",
  1421. "children": [
  1422. {
  1423. "kind": "TypeNominal",
  1424. "name": "String",
  1425. "printedName": "Swift.String",
  1426. "usr": "s:SS"
  1427. }
  1428. ],
  1429. "usr": "s:Sq"
  1430. }
  1431. ],
  1432. "declKind": "Func",
  1433. "usr": "s:12nuSDKService3APIC11sGetVersionSSSgyFZ",
  1434. "mangledName": "$s12nuSDKService3APIC11sGetVersionSSSgyFZ",
  1435. "moduleName": "nuSDKService",
  1436. "static": true,
  1437. "declAttributes": [
  1438. "Final",
  1439. "AccessControl",
  1440. "RawDocComment"
  1441. ],
  1442. "funcSelfKind": "NonMutating"
  1443. },
  1444. {
  1445. "kind": "Function",
  1446. "name": "sGetServerAddress",
  1447. "printedName": "sGetServerAddress()",
  1448. "children": [
  1449. {
  1450. "kind": "TypeNominal",
  1451. "name": "ImplicitlyUnwrappedOptional",
  1452. "printedName": "Swift.String?",
  1453. "children": [
  1454. {
  1455. "kind": "TypeNominal",
  1456. "name": "String",
  1457. "printedName": "Swift.String",
  1458. "usr": "s:SS"
  1459. }
  1460. ],
  1461. "usr": "s:Sq"
  1462. }
  1463. ],
  1464. "declKind": "Func",
  1465. "usr": "s:12nuSDKService3APIC17sGetServerAddressSSSgyFZ",
  1466. "mangledName": "$s12nuSDKService3APIC17sGetServerAddressSSSgyFZ",
  1467. "moduleName": "nuSDKService",
  1468. "static": true,
  1469. "declAttributes": [
  1470. "Final",
  1471. "AccessControl"
  1472. ],
  1473. "funcSelfKind": "NonMutating"
  1474. },
  1475. {
  1476. "kind": "Function",
  1477. "name": "sGetOperatorCode",
  1478. "printedName": "sGetOperatorCode()",
  1479. "children": [
  1480. {
  1481. "kind": "TypeNominal",
  1482. "name": "ImplicitlyUnwrappedOptional",
  1483. "printedName": "Swift.String?",
  1484. "children": [
  1485. {
  1486. "kind": "TypeNominal",
  1487. "name": "String",
  1488. "printedName": "Swift.String",
  1489. "usr": "s:SS"
  1490. }
  1491. ],
  1492. "usr": "s:Sq"
  1493. }
  1494. ],
  1495. "declKind": "Func",
  1496. "usr": "s:12nuSDKService3APIC16sGetOperatorCodeSSSgyFZ",
  1497. "mangledName": "$s12nuSDKService3APIC16sGetOperatorCodeSSSgyFZ",
  1498. "moduleName": "nuSDKService",
  1499. "static": true,
  1500. "declAttributes": [
  1501. "Final",
  1502. "AccessControl"
  1503. ],
  1504. "funcSelfKind": "NonMutating"
  1505. },
  1506. {
  1507. "kind": "Function",
  1508. "name": "sGetConnMode",
  1509. "printedName": "sGetConnMode()",
  1510. "children": [
  1511. {
  1512. "kind": "TypeNominal",
  1513. "name": "ImplicitlyUnwrappedOptional",
  1514. "printedName": "Swift.String?",
  1515. "children": [
  1516. {
  1517. "kind": "TypeNominal",
  1518. "name": "String",
  1519. "printedName": "Swift.String",
  1520. "usr": "s:SS"
  1521. }
  1522. ],
  1523. "usr": "s:Sq"
  1524. }
  1525. ],
  1526. "declKind": "Func",
  1527. "usr": "s:12nuSDKService3APIC12sGetConnModeSSSgyFZ",
  1528. "mangledName": "$s12nuSDKService3APIC12sGetConnModeSSSgyFZ",
  1529. "moduleName": "nuSDKService",
  1530. "static": true,
  1531. "declAttributes": [
  1532. "Final",
  1533. "AccessControl"
  1534. ],
  1535. "funcSelfKind": "NonMutating"
  1536. },
  1537. {
  1538. "kind": "Function",
  1539. "name": "sGetConnStat",
  1540. "printedName": "sGetConnStat()",
  1541. "children": [
  1542. {
  1543. "kind": "TypeNominal",
  1544. "name": "ImplicitlyUnwrappedOptional",
  1545. "printedName": "Swift.String?",
  1546. "children": [
  1547. {
  1548. "kind": "TypeNominal",
  1549. "name": "String",
  1550. "printedName": "Swift.String",
  1551. "usr": "s:SS"
  1552. }
  1553. ],
  1554. "usr": "s:Sq"
  1555. }
  1556. ],
  1557. "declKind": "Func",
  1558. "usr": "s:12nuSDKService3APIC12sGetConnStatSSSgyFZ",
  1559. "mangledName": "$s12nuSDKService3APIC12sGetConnStatSSSgyFZ",
  1560. "moduleName": "nuSDKService",
  1561. "static": true,
  1562. "declAttributes": [
  1563. "Final",
  1564. "AccessControl"
  1565. ],
  1566. "funcSelfKind": "NonMutating"
  1567. },
  1568. {
  1569. "kind": "Function",
  1570. "name": "bInetConnAvailable",
  1571. "printedName": "bInetConnAvailable()",
  1572. "children": [
  1573. {
  1574. "kind": "TypeNominal",
  1575. "name": "ImplicitlyUnwrappedOptional",
  1576. "printedName": "Swift.Bool?",
  1577. "children": [
  1578. {
  1579. "kind": "TypeNominal",
  1580. "name": "Bool",
  1581. "printedName": "Swift.Bool",
  1582. "usr": "s:Sb"
  1583. }
  1584. ],
  1585. "usr": "s:Sq"
  1586. }
  1587. ],
  1588. "declKind": "Func",
  1589. "usr": "s:12nuSDKService3APIC18bInetConnAvailableSbSgyFZ",
  1590. "mangledName": "$s12nuSDKService3APIC18bInetConnAvailableSbSgyFZ",
  1591. "moduleName": "nuSDKService",
  1592. "static": true,
  1593. "declAttributes": [
  1594. "Final",
  1595. "AccessControl"
  1596. ],
  1597. "funcSelfKind": "NonMutating"
  1598. },
  1599. {
  1600. "kind": "Function",
  1601. "name": "nGetCLXConnState",
  1602. "printedName": "nGetCLXConnState()",
  1603. "children": [
  1604. {
  1605. "kind": "TypeNominal",
  1606. "name": "ImplicitlyUnwrappedOptional",
  1607. "printedName": "Swift.UInt8?",
  1608. "children": [
  1609. {
  1610. "kind": "TypeNominal",
  1611. "name": "UInt8",
  1612. "printedName": "Swift.UInt8",
  1613. "usr": "s:s5UInt8V"
  1614. }
  1615. ],
  1616. "usr": "s:Sq"
  1617. }
  1618. ],
  1619. "declKind": "Func",
  1620. "usr": "s:12nuSDKService3APIC16nGetCLXConnStates5UInt8VSgyFZ",
  1621. "mangledName": "$s12nuSDKService3APIC16nGetCLXConnStates5UInt8VSgyFZ",
  1622. "moduleName": "nuSDKService",
  1623. "static": true,
  1624. "declAttributes": [
  1625. "Final",
  1626. "AccessControl"
  1627. ],
  1628. "funcSelfKind": "NonMutating"
  1629. },
  1630. {
  1631. "kind": "Function",
  1632. "name": "sGetCurentUserID",
  1633. "printedName": "sGetCurentUserID()",
  1634. "children": [
  1635. {
  1636. "kind": "TypeNominal",
  1637. "name": "ImplicitlyUnwrappedOptional",
  1638. "printedName": "Swift.String?",
  1639. "children": [
  1640. {
  1641. "kind": "TypeNominal",
  1642. "name": "String",
  1643. "printedName": "Swift.String",
  1644. "usr": "s:SS"
  1645. }
  1646. ],
  1647. "usr": "s:Sq"
  1648. }
  1649. ],
  1650. "declKind": "Func",
  1651. "usr": "s:12nuSDKService3APIC16sGetCurentUserIDSSSgyFZ",
  1652. "mangledName": "$s12nuSDKService3APIC16sGetCurentUserIDSSSgyFZ",
  1653. "moduleName": "nuSDKService",
  1654. "static": true,
  1655. "declAttributes": [
  1656. "Final",
  1657. "AccessControl"
  1658. ],
  1659. "funcSelfKind": "NonMutating"
  1660. },
  1661. {
  1662. "kind": "Function",
  1663. "name": "nGetSSRequestCode",
  1664. "printedName": "nGetSSRequestCode()",
  1665. "children": [
  1666. {
  1667. "kind": "TypeNominal",
  1668. "name": "ImplicitlyUnwrappedOptional",
  1669. "printedName": "Swift.Int?",
  1670. "children": [
  1671. {
  1672. "kind": "TypeNominal",
  1673. "name": "Int",
  1674. "printedName": "Swift.Int",
  1675. "usr": "s:Si"
  1676. }
  1677. ],
  1678. "usr": "s:Sq"
  1679. }
  1680. ],
  1681. "declKind": "Func",
  1682. "usr": "s:12nuSDKService3APIC17nGetSSRequestCodeSiSgyFZ",
  1683. "mangledName": "$s12nuSDKService3APIC17nGetSSRequestCodeSiSgyFZ",
  1684. "moduleName": "nuSDKService",
  1685. "static": true,
  1686. "declAttributes": [
  1687. "Final",
  1688. "AccessControl"
  1689. ],
  1690. "funcSelfKind": "NonMutating"
  1691. },
  1692. {
  1693. "kind": "Function",
  1694. "name": "sGetLocInfo",
  1695. "printedName": "sGetLocInfo()",
  1696. "children": [
  1697. {
  1698. "kind": "TypeNominal",
  1699. "name": "ImplicitlyUnwrappedOptional",
  1700. "printedName": "Swift.String?",
  1701. "children": [
  1702. {
  1703. "kind": "TypeNominal",
  1704. "name": "String",
  1705. "printedName": "Swift.String",
  1706. "usr": "s:SS"
  1707. }
  1708. ],
  1709. "usr": "s:Sq"
  1710. }
  1711. ],
  1712. "declKind": "Func",
  1713. "usr": "s:12nuSDKService3APIC11sGetLocInfoSSSgyFZ",
  1714. "mangledName": "$s12nuSDKService3APIC11sGetLocInfoSSSgyFZ",
  1715. "moduleName": "nuSDKService",
  1716. "static": true,
  1717. "declAttributes": [
  1718. "Final",
  1719. "AccessControl"
  1720. ],
  1721. "funcSelfKind": "NonMutating"
  1722. },
  1723. {
  1724. "kind": "Function",
  1725. "name": "pauseAudio",
  1726. "printedName": "pauseAudio(fValue:)",
  1727. "children": [
  1728. {
  1729. "kind": "TypeNominal",
  1730. "name": "Void",
  1731. "printedName": "()"
  1732. },
  1733. {
  1734. "kind": "TypeNominal",
  1735. "name": "ImplicitlyUnwrappedOptional",
  1736. "printedName": "Swift.Float?",
  1737. "children": [
  1738. {
  1739. "kind": "TypeNominal",
  1740. "name": "Float",
  1741. "printedName": "Swift.Float",
  1742. "usr": "s:Sf"
  1743. }
  1744. ],
  1745. "usr": "s:Sq"
  1746. }
  1747. ],
  1748. "declKind": "Func",
  1749. "usr": "s:12nuSDKService3APIC10pauseAudio6fValueySfSg_tFZ",
  1750. "mangledName": "$s12nuSDKService3APIC10pauseAudio6fValueySfSg_tFZ",
  1751. "moduleName": "nuSDKService",
  1752. "static": true,
  1753. "declAttributes": [
  1754. "Final",
  1755. "AccessControl",
  1756. "RawDocComment"
  1757. ],
  1758. "funcSelfKind": "NonMutating"
  1759. },
  1760. {
  1761. "kind": "Function",
  1762. "name": "resumeAudio",
  1763. "printedName": "resumeAudio(fValue:)",
  1764. "children": [
  1765. {
  1766. "kind": "TypeNominal",
  1767. "name": "Void",
  1768. "printedName": "()"
  1769. },
  1770. {
  1771. "kind": "TypeNominal",
  1772. "name": "ImplicitlyUnwrappedOptional",
  1773. "printedName": "Swift.Float?",
  1774. "children": [
  1775. {
  1776. "kind": "TypeNominal",
  1777. "name": "Float",
  1778. "printedName": "Swift.Float",
  1779. "usr": "s:Sf"
  1780. }
  1781. ],
  1782. "usr": "s:Sq"
  1783. }
  1784. ],
  1785. "declKind": "Func",
  1786. "usr": "s:12nuSDKService3APIC11resumeAudio6fValueySfSg_tFZ",
  1787. "mangledName": "$s12nuSDKService3APIC11resumeAudio6fValueySfSg_tFZ",
  1788. "moduleName": "nuSDKService",
  1789. "static": true,
  1790. "declAttributes": [
  1791. "Final",
  1792. "AccessControl"
  1793. ],
  1794. "funcSelfKind": "NonMutating"
  1795. },
  1796. {
  1797. "kind": "Function",
  1798. "name": "turnCCallAudio",
  1799. "printedName": "turnCCallAudio(sParty:bOnOff:)",
  1800. "children": [
  1801. {
  1802. "kind": "TypeNominal",
  1803. "name": "Void",
  1804. "printedName": "()"
  1805. },
  1806. {
  1807. "kind": "TypeNominal",
  1808. "name": "ImplicitlyUnwrappedOptional",
  1809. "printedName": "Swift.String?",
  1810. "children": [
  1811. {
  1812. "kind": "TypeNominal",
  1813. "name": "String",
  1814. "printedName": "Swift.String",
  1815. "usr": "s:SS"
  1816. }
  1817. ],
  1818. "usr": "s:Sq"
  1819. },
  1820. {
  1821. "kind": "TypeNominal",
  1822. "name": "ImplicitlyUnwrappedOptional",
  1823. "printedName": "Swift.Bool?",
  1824. "children": [
  1825. {
  1826. "kind": "TypeNominal",
  1827. "name": "Bool",
  1828. "printedName": "Swift.Bool",
  1829. "usr": "s:Sb"
  1830. }
  1831. ],
  1832. "usr": "s:Sq"
  1833. }
  1834. ],
  1835. "declKind": "Func",
  1836. "usr": "s:12nuSDKService3APIC14turnCCallAudio6sParty6bOnOffySSSg_SbSgtFZ",
  1837. "mangledName": "$s12nuSDKService3APIC14turnCCallAudio6sParty6bOnOffySSSg_SbSgtFZ",
  1838. "moduleName": "nuSDKService",
  1839. "static": true,
  1840. "declAttributes": [
  1841. "Final",
  1842. "AccessControl"
  1843. ],
  1844. "funcSelfKind": "NonMutating"
  1845. },
  1846. {
  1847. "kind": "Function",
  1848. "name": "adjustVolume",
  1849. "printedName": "adjustVolume(fValue:)",
  1850. "children": [
  1851. {
  1852. "kind": "TypeNominal",
  1853. "name": "Void",
  1854. "printedName": "()"
  1855. },
  1856. {
  1857. "kind": "TypeNominal",
  1858. "name": "ImplicitlyUnwrappedOptional",
  1859. "printedName": "Swift.Float?",
  1860. "children": [
  1861. {
  1862. "kind": "TypeNominal",
  1863. "name": "Float",
  1864. "printedName": "Swift.Float",
  1865. "usr": "s:Sf"
  1866. }
  1867. ],
  1868. "usr": "s:Sq"
  1869. }
  1870. ],
  1871. "declKind": "Func",
  1872. "usr": "s:12nuSDKService3APIC12adjustVolume6fValueySfSg_tFZ",
  1873. "mangledName": "$s12nuSDKService3APIC12adjustVolume6fValueySfSg_tFZ",
  1874. "moduleName": "nuSDKService",
  1875. "static": true,
  1876. "declAttributes": [
  1877. "Final",
  1878. "AccessControl"
  1879. ],
  1880. "funcSelfKind": "NonMutating"
  1881. },
  1882. {
  1883. "kind": "Function",
  1884. "name": "adjustCQFR",
  1885. "printedName": "adjustCQFR(nVQuality:)",
  1886. "children": [
  1887. {
  1888. "kind": "TypeNominal",
  1889. "name": "Void",
  1890. "printedName": "()"
  1891. },
  1892. {
  1893. "kind": "TypeNominal",
  1894. "name": "ImplicitlyUnwrappedOptional",
  1895. "printedName": "Swift.Int?",
  1896. "children": [
  1897. {
  1898. "kind": "TypeNominal",
  1899. "name": "Int",
  1900. "printedName": "Swift.Int",
  1901. "usr": "s:Si"
  1902. }
  1903. ],
  1904. "usr": "s:Sq"
  1905. }
  1906. ],
  1907. "declKind": "Func",
  1908. "usr": "s:12nuSDKService3APIC10adjustCQFR9nVQualityySiSg_tFZ",
  1909. "mangledName": "$s12nuSDKService3APIC10adjustCQFR9nVQualityySiSg_tFZ",
  1910. "moduleName": "nuSDKService",
  1911. "static": true,
  1912. "declAttributes": [
  1913. "Final",
  1914. "AccessControl"
  1915. ],
  1916. "funcSelfKind": "NonMutating"
  1917. },
  1918. {
  1919. "kind": "Function",
  1920. "name": "changeCameraParam",
  1921. "printedName": "changeCameraParam(nCameraIdx:nResolutionIndex:nQuality:)",
  1922. "children": [
  1923. {
  1924. "kind": "TypeNominal",
  1925. "name": "Void",
  1926. "printedName": "()"
  1927. },
  1928. {
  1929. "kind": "TypeNominal",
  1930. "name": "ImplicitlyUnwrappedOptional",
  1931. "printedName": "Swift.Int?",
  1932. "children": [
  1933. {
  1934. "kind": "TypeNominal",
  1935. "name": "Int",
  1936. "printedName": "Swift.Int",
  1937. "usr": "s:Si"
  1938. }
  1939. ],
  1940. "usr": "s:Sq"
  1941. },
  1942. {
  1943. "kind": "TypeNominal",
  1944. "name": "ImplicitlyUnwrappedOptional",
  1945. "printedName": "Swift.UInt8?",
  1946. "children": [
  1947. {
  1948. "kind": "TypeNominal",
  1949. "name": "UInt8",
  1950. "printedName": "Swift.UInt8",
  1951. "usr": "s:s5UInt8V"
  1952. }
  1953. ],
  1954. "usr": "s:Sq"
  1955. },
  1956. {
  1957. "kind": "TypeNominal",
  1958. "name": "ImplicitlyUnwrappedOptional",
  1959. "printedName": "Swift.Int?",
  1960. "children": [
  1961. {
  1962. "kind": "TypeNominal",
  1963. "name": "Int",
  1964. "printedName": "Swift.Int",
  1965. "usr": "s:Si"
  1966. }
  1967. ],
  1968. "usr": "s:Sq"
  1969. }
  1970. ],
  1971. "declKind": "Func",
  1972. "usr": "s:12nuSDKService3APIC17changeCameraParam01nE3Idx16nResolutionIndex8nQualityySiSg_s5UInt8VSgAHtFZ",
  1973. "mangledName": "$s12nuSDKService3APIC17changeCameraParam01nE3Idx16nResolutionIndex8nQualityySiSg_s5UInt8VSgAHtFZ",
  1974. "moduleName": "nuSDKService",
  1975. "static": true,
  1976. "declAttributes": [
  1977. "Final",
  1978. "AccessControl"
  1979. ],
  1980. "funcSelfKind": "NonMutating"
  1981. },
  1982. {
  1983. "kind": "Function",
  1984. "name": "incomingCallWSleep",
  1985. "printedName": "incomingCallWSleep(sParty:nService:)",
  1986. "children": [
  1987. {
  1988. "kind": "TypeNominal",
  1989. "name": "Void",
  1990. "printedName": "()"
  1991. },
  1992. {
  1993. "kind": "TypeNominal",
  1994. "name": "ImplicitlyUnwrappedOptional",
  1995. "printedName": "Swift.String?",
  1996. "children": [
  1997. {
  1998. "kind": "TypeNominal",
  1999. "name": "String",
  2000. "printedName": "Swift.String",
  2001. "usr": "s:SS"
  2002. }
  2003. ],
  2004. "usr": "s:Sq"
  2005. },
  2006. {
  2007. "kind": "TypeNominal",
  2008. "name": "ImplicitlyUnwrappedOptional",
  2009. "printedName": "Swift.Int?",
  2010. "children": [
  2011. {
  2012. "kind": "TypeNominal",
  2013. "name": "Int",
  2014. "printedName": "Swift.Int",
  2015. "usr": "s:Si"
  2016. }
  2017. ],
  2018. "usr": "s:Sq"
  2019. }
  2020. ],
  2021. "declKind": "Func",
  2022. "usr": "s:12nuSDKService3APIC18incomingCallWSleep6sParty8nServiceySSSg_SiSgtFZ",
  2023. "mangledName": "$s12nuSDKService3APIC18incomingCallWSleep6sParty8nServiceySSSg_SiSgtFZ",
  2024. "moduleName": "nuSDKService",
  2025. "static": true,
  2026. "declAttributes": [
  2027. "Final",
  2028. "AccessControl",
  2029. "RawDocComment"
  2030. ],
  2031. "funcSelfKind": "NonMutating"
  2032. },
  2033. {
  2034. "kind": "Function",
  2035. "name": "initiateCCall",
  2036. "printedName": "initiateCCall(sParty:)",
  2037. "children": [
  2038. {
  2039. "kind": "TypeNominal",
  2040. "name": "Void",
  2041. "printedName": "()"
  2042. },
  2043. {
  2044. "kind": "TypeNominal",
  2045. "name": "ImplicitlyUnwrappedOptional",
  2046. "printedName": "Swift.String?",
  2047. "children": [
  2048. {
  2049. "kind": "TypeNominal",
  2050. "name": "String",
  2051. "printedName": "Swift.String",
  2052. "usr": "s:SS"
  2053. }
  2054. ],
  2055. "usr": "s:Sq"
  2056. }
  2057. ],
  2058. "declKind": "Func",
  2059. "usr": "s:12nuSDKService3APIC13initiateCCall6sPartyySSSg_tFZ",
  2060. "mangledName": "$s12nuSDKService3APIC13initiateCCall6sPartyySSSg_tFZ",
  2061. "moduleName": "nuSDKService",
  2062. "static": true,
  2063. "declAttributes": [
  2064. "Final",
  2065. "AccessControl"
  2066. ],
  2067. "funcSelfKind": "NonMutating"
  2068. },
  2069. {
  2070. "kind": "Function",
  2071. "name": "receiveCCall",
  2072. "printedName": "receiveCCall(sParty:)",
  2073. "children": [
  2074. {
  2075. "kind": "TypeNominal",
  2076. "name": "Void",
  2077. "printedName": "()"
  2078. },
  2079. {
  2080. "kind": "TypeNominal",
  2081. "name": "ImplicitlyUnwrappedOptional",
  2082. "printedName": "Swift.String?",
  2083. "children": [
  2084. {
  2085. "kind": "TypeNominal",
  2086. "name": "String",
  2087. "printedName": "Swift.String",
  2088. "usr": "s:SS"
  2089. }
  2090. ],
  2091. "usr": "s:Sq"
  2092. }
  2093. ],
  2094. "declKind": "Func",
  2095. "usr": "s:12nuSDKService3APIC12receiveCCall6sPartyySSSg_tFZ",
  2096. "mangledName": "$s12nuSDKService3APIC12receiveCCall6sPartyySSSg_tFZ",
  2097. "moduleName": "nuSDKService",
  2098. "static": true,
  2099. "declAttributes": [
  2100. "Final",
  2101. "AccessControl"
  2102. ],
  2103. "funcSelfKind": "NonMutating"
  2104. },
  2105. {
  2106. "kind": "Function",
  2107. "name": "initiateCCall",
  2108. "printedName": "initiateCCall(sParty:nCamIdx:nResIdx:nVQuality:ivRemoteView:ivLocalView:ivRemoteZ:)",
  2109. "children": [
  2110. {
  2111. "kind": "TypeNominal",
  2112. "name": "Void",
  2113. "printedName": "()"
  2114. },
  2115. {
  2116. "kind": "TypeNominal",
  2117. "name": "ImplicitlyUnwrappedOptional",
  2118. "printedName": "Swift.String?",
  2119. "children": [
  2120. {
  2121. "kind": "TypeNominal",
  2122. "name": "String",
  2123. "printedName": "Swift.String",
  2124. "usr": "s:SS"
  2125. }
  2126. ],
  2127. "usr": "s:Sq"
  2128. },
  2129. {
  2130. "kind": "TypeNominal",
  2131. "name": "ImplicitlyUnwrappedOptional",
  2132. "printedName": "Swift.Int?",
  2133. "children": [
  2134. {
  2135. "kind": "TypeNominal",
  2136. "name": "Int",
  2137. "printedName": "Swift.Int",
  2138. "usr": "s:Si"
  2139. }
  2140. ],
  2141. "usr": "s:Sq"
  2142. },
  2143. {
  2144. "kind": "TypeNominal",
  2145. "name": "ImplicitlyUnwrappedOptional",
  2146. "printedName": "Swift.UInt8?",
  2147. "children": [
  2148. {
  2149. "kind": "TypeNominal",
  2150. "name": "UInt8",
  2151. "printedName": "Swift.UInt8",
  2152. "usr": "s:s5UInt8V"
  2153. }
  2154. ],
  2155. "usr": "s:Sq"
  2156. },
  2157. {
  2158. "kind": "TypeNominal",
  2159. "name": "ImplicitlyUnwrappedOptional",
  2160. "printedName": "Swift.Int?",
  2161. "children": [
  2162. {
  2163. "kind": "TypeNominal",
  2164. "name": "Int",
  2165. "printedName": "Swift.Int",
  2166. "usr": "s:Si"
  2167. }
  2168. ],
  2169. "usr": "s:Sq"
  2170. },
  2171. {
  2172. "kind": "TypeNominal",
  2173. "name": "ImplicitlyUnwrappedOptional",
  2174. "printedName": "[UIKit.UIImageView]?",
  2175. "children": [
  2176. {
  2177. "kind": "TypeNominal",
  2178. "name": "Array",
  2179. "printedName": "[UIKit.UIImageView]",
  2180. "children": [
  2181. {
  2182. "kind": "TypeNominal",
  2183. "name": "UIImageView",
  2184. "printedName": "UIKit.UIImageView",
  2185. "usr": "c:objc(cs)UIImageView"
  2186. }
  2187. ],
  2188. "usr": "s:Sa"
  2189. }
  2190. ],
  2191. "usr": "s:Sq"
  2192. },
  2193. {
  2194. "kind": "TypeNominal",
  2195. "name": "ImplicitlyUnwrappedOptional",
  2196. "printedName": "UIKit.UIImageView?",
  2197. "children": [
  2198. {
  2199. "kind": "TypeNominal",
  2200. "name": "UIImageView",
  2201. "printedName": "UIKit.UIImageView",
  2202. "usr": "c:objc(cs)UIImageView"
  2203. }
  2204. ],
  2205. "usr": "s:Sq"
  2206. },
  2207. {
  2208. "kind": "TypeNominal",
  2209. "name": "ImplicitlyUnwrappedOptional",
  2210. "printedName": "UIKit.UIImageView?",
  2211. "children": [
  2212. {
  2213. "kind": "TypeNominal",
  2214. "name": "UIImageView",
  2215. "printedName": "UIKit.UIImageView",
  2216. "usr": "c:objc(cs)UIImageView"
  2217. }
  2218. ],
  2219. "usr": "s:Sq"
  2220. }
  2221. ],
  2222. "declKind": "Func",
  2223. "usr": "s:12nuSDKService3APIC13initiateCCall6sParty7nCamIdx04nResH09nVQuality12ivRemoteView0k5LocalM00kL1ZySSSg_SiSgs5UInt8VSgAMSaySo07UIImageM0CGSgARSgAUtFZ",
  2224. "mangledName": "$s12nuSDKService3APIC13initiateCCall6sParty7nCamIdx04nResH09nVQuality12ivRemoteView0k5LocalM00kL1ZySSSg_SiSgs5UInt8VSgAMSaySo07UIImageM0CGSgARSgAUtFZ",
  2225. "moduleName": "nuSDKService",
  2226. "static": true,
  2227. "declAttributes": [
  2228. "Final",
  2229. "AccessControl"
  2230. ],
  2231. "funcSelfKind": "NonMutating"
  2232. },
  2233. {
  2234. "kind": "Function",
  2235. "name": "receiveCCall",
  2236. "printedName": "receiveCCall(sParty:nCamIdx:nResIdx:nVQuality:ivRemoteView:ivLocalView:ivRemoteZ:)",
  2237. "children": [
  2238. {
  2239. "kind": "TypeNominal",
  2240. "name": "Void",
  2241. "printedName": "()"
  2242. },
  2243. {
  2244. "kind": "TypeNominal",
  2245. "name": "ImplicitlyUnwrappedOptional",
  2246. "printedName": "Swift.String?",
  2247. "children": [
  2248. {
  2249. "kind": "TypeNominal",
  2250. "name": "String",
  2251. "printedName": "Swift.String",
  2252. "usr": "s:SS"
  2253. }
  2254. ],
  2255. "usr": "s:Sq"
  2256. },
  2257. {
  2258. "kind": "TypeNominal",
  2259. "name": "ImplicitlyUnwrappedOptional",
  2260. "printedName": "Swift.Int?",
  2261. "children": [
  2262. {
  2263. "kind": "TypeNominal",
  2264. "name": "Int",
  2265. "printedName": "Swift.Int",
  2266. "usr": "s:Si"
  2267. }
  2268. ],
  2269. "usr": "s:Sq"
  2270. },
  2271. {
  2272. "kind": "TypeNominal",
  2273. "name": "ImplicitlyUnwrappedOptional",
  2274. "printedName": "Swift.UInt8?",
  2275. "children": [
  2276. {
  2277. "kind": "TypeNominal",
  2278. "name": "UInt8",
  2279. "printedName": "Swift.UInt8",
  2280. "usr": "s:s5UInt8V"
  2281. }
  2282. ],
  2283. "usr": "s:Sq"
  2284. },
  2285. {
  2286. "kind": "TypeNominal",
  2287. "name": "ImplicitlyUnwrappedOptional",
  2288. "printedName": "Swift.Int?",
  2289. "children": [
  2290. {
  2291. "kind": "TypeNominal",
  2292. "name": "Int",
  2293. "printedName": "Swift.Int",
  2294. "usr": "s:Si"
  2295. }
  2296. ],
  2297. "usr": "s:Sq"
  2298. },
  2299. {
  2300. "kind": "TypeNominal",
  2301. "name": "ImplicitlyUnwrappedOptional",
  2302. "printedName": "[UIKit.UIImageView]?",
  2303. "children": [
  2304. {
  2305. "kind": "TypeNominal",
  2306. "name": "Array",
  2307. "printedName": "[UIKit.UIImageView]",
  2308. "children": [
  2309. {
  2310. "kind": "TypeNominal",
  2311. "name": "UIImageView",
  2312. "printedName": "UIKit.UIImageView",
  2313. "usr": "c:objc(cs)UIImageView"
  2314. }
  2315. ],
  2316. "usr": "s:Sa"
  2317. }
  2318. ],
  2319. "usr": "s:Sq"
  2320. },
  2321. {
  2322. "kind": "TypeNominal",
  2323. "name": "ImplicitlyUnwrappedOptional",
  2324. "printedName": "UIKit.UIImageView?",
  2325. "children": [
  2326. {
  2327. "kind": "TypeNominal",
  2328. "name": "UIImageView",
  2329. "printedName": "UIKit.UIImageView",
  2330. "usr": "c:objc(cs)UIImageView"
  2331. }
  2332. ],
  2333. "usr": "s:Sq"
  2334. },
  2335. {
  2336. "kind": "TypeNominal",
  2337. "name": "ImplicitlyUnwrappedOptional",
  2338. "printedName": "UIKit.UIImageView?",
  2339. "children": [
  2340. {
  2341. "kind": "TypeNominal",
  2342. "name": "UIImageView",
  2343. "printedName": "UIKit.UIImageView",
  2344. "usr": "c:objc(cs)UIImageView"
  2345. }
  2346. ],
  2347. "usr": "s:Sq"
  2348. }
  2349. ],
  2350. "declKind": "Func",
  2351. "usr": "s:12nuSDKService3APIC12receiveCCall6sParty7nCamIdx04nResH09nVQuality12ivRemoteView0k5LocalM00kL1ZySSSg_SiSgs5UInt8VSgAMSaySo07UIImageM0CGSgARSgAUtFZ",
  2352. "mangledName": "$s12nuSDKService3APIC12receiveCCall6sParty7nCamIdx04nResH09nVQuality12ivRemoteView0k5LocalM00kL1ZySSSg_SiSgs5UInt8VSgAMSaySo07UIImageM0CGSgARSgAUtFZ",
  2353. "moduleName": "nuSDKService",
  2354. "static": true,
  2355. "declAttributes": [
  2356. "Final",
  2357. "AccessControl"
  2358. ],
  2359. "funcSelfKind": "NonMutating"
  2360. },
  2361. {
  2362. "kind": "Function",
  2363. "name": "terminateCall",
  2364. "printedName": "terminateCall(sParty:)",
  2365. "children": [
  2366. {
  2367. "kind": "TypeNominal",
  2368. "name": "Void",
  2369. "printedName": "()"
  2370. },
  2371. {
  2372. "kind": "TypeNominal",
  2373. "name": "Optional",
  2374. "printedName": "Swift.String?",
  2375. "children": [
  2376. {
  2377. "kind": "TypeNominal",
  2378. "name": "String",
  2379. "printedName": "Swift.String",
  2380. "usr": "s:SS"
  2381. }
  2382. ],
  2383. "usr": "s:Sq"
  2384. }
  2385. ],
  2386. "declKind": "Func",
  2387. "usr": "s:12nuSDKService3APIC13terminateCall6sPartyySSSg_tFZ",
  2388. "mangledName": "$s12nuSDKService3APIC13terminateCall6sPartyySSSg_tFZ",
  2389. "moduleName": "nuSDKService",
  2390. "static": true,
  2391. "declAttributes": [
  2392. "Final",
  2393. "AccessControl"
  2394. ],
  2395. "funcSelfKind": "NonMutating"
  2396. },
  2397. {
  2398. "kind": "Function",
  2399. "name": "initiateCR",
  2400. "printedName": "initiateCR(sConfRoom:)",
  2401. "children": [
  2402. {
  2403. "kind": "TypeNominal",
  2404. "name": "Void",
  2405. "printedName": "()"
  2406. },
  2407. {
  2408. "kind": "TypeNominal",
  2409. "name": "ImplicitlyUnwrappedOptional",
  2410. "printedName": "Swift.String?",
  2411. "children": [
  2412. {
  2413. "kind": "TypeNominal",
  2414. "name": "String",
  2415. "printedName": "Swift.String",
  2416. "usr": "s:SS"
  2417. }
  2418. ],
  2419. "usr": "s:Sq"
  2420. }
  2421. ],
  2422. "declKind": "Func",
  2423. "usr": "s:12nuSDKService3APIC10initiateCR9sConfRoomySSSg_tFZ",
  2424. "mangledName": "$s12nuSDKService3APIC10initiateCR9sConfRoomySSSg_tFZ",
  2425. "moduleName": "nuSDKService",
  2426. "static": true,
  2427. "declAttributes": [
  2428. "Final",
  2429. "AccessControl",
  2430. "RawDocComment"
  2431. ],
  2432. "funcSelfKind": "NonMutating"
  2433. },
  2434. {
  2435. "kind": "Function",
  2436. "name": "joinCR",
  2437. "printedName": "joinCR(sConfRoom:)",
  2438. "children": [
  2439. {
  2440. "kind": "TypeNominal",
  2441. "name": "Void",
  2442. "printedName": "()"
  2443. },
  2444. {
  2445. "kind": "TypeNominal",
  2446. "name": "ImplicitlyUnwrappedOptional",
  2447. "printedName": "Swift.String?",
  2448. "children": [
  2449. {
  2450. "kind": "TypeNominal",
  2451. "name": "String",
  2452. "printedName": "Swift.String",
  2453. "usr": "s:SS"
  2454. }
  2455. ],
  2456. "usr": "s:Sq"
  2457. }
  2458. ],
  2459. "declKind": "Func",
  2460. "usr": "s:12nuSDKService3APIC6joinCR9sConfRoomySSSg_tFZ",
  2461. "mangledName": "$s12nuSDKService3APIC6joinCR9sConfRoomySSSg_tFZ",
  2462. "moduleName": "nuSDKService",
  2463. "static": true,
  2464. "declAttributes": [
  2465. "Final",
  2466. "AccessControl"
  2467. ],
  2468. "funcSelfKind": "NonMutating"
  2469. },
  2470. {
  2471. "kind": "Function",
  2472. "name": "initiateCR",
  2473. "printedName": "initiateCR(sConfRoom:nCamIdx:nResIdx:nVQuality:ivRemoteView:ivLocalView:ivRemoteZ:)",
  2474. "children": [
  2475. {
  2476. "kind": "TypeNominal",
  2477. "name": "Void",
  2478. "printedName": "()"
  2479. },
  2480. {
  2481. "kind": "TypeNominal",
  2482. "name": "ImplicitlyUnwrappedOptional",
  2483. "printedName": "Swift.String?",
  2484. "children": [
  2485. {
  2486. "kind": "TypeNominal",
  2487. "name": "String",
  2488. "printedName": "Swift.String",
  2489. "usr": "s:SS"
  2490. }
  2491. ],
  2492. "usr": "s:Sq"
  2493. },
  2494. {
  2495. "kind": "TypeNominal",
  2496. "name": "ImplicitlyUnwrappedOptional",
  2497. "printedName": "Swift.Int?",
  2498. "children": [
  2499. {
  2500. "kind": "TypeNominal",
  2501. "name": "Int",
  2502. "printedName": "Swift.Int",
  2503. "usr": "s:Si"
  2504. }
  2505. ],
  2506. "usr": "s:Sq"
  2507. },
  2508. {
  2509. "kind": "TypeNominal",
  2510. "name": "ImplicitlyUnwrappedOptional",
  2511. "printedName": "Swift.UInt8?",
  2512. "children": [
  2513. {
  2514. "kind": "TypeNominal",
  2515. "name": "UInt8",
  2516. "printedName": "Swift.UInt8",
  2517. "usr": "s:s5UInt8V"
  2518. }
  2519. ],
  2520. "usr": "s:Sq"
  2521. },
  2522. {
  2523. "kind": "TypeNominal",
  2524. "name": "ImplicitlyUnwrappedOptional",
  2525. "printedName": "Swift.Int?",
  2526. "children": [
  2527. {
  2528. "kind": "TypeNominal",
  2529. "name": "Int",
  2530. "printedName": "Swift.Int",
  2531. "usr": "s:Si"
  2532. }
  2533. ],
  2534. "usr": "s:Sq"
  2535. },
  2536. {
  2537. "kind": "TypeNominal",
  2538. "name": "ImplicitlyUnwrappedOptional",
  2539. "printedName": "[UIKit.UIImageView]?",
  2540. "children": [
  2541. {
  2542. "kind": "TypeNominal",
  2543. "name": "Array",
  2544. "printedName": "[UIKit.UIImageView]",
  2545. "children": [
  2546. {
  2547. "kind": "TypeNominal",
  2548. "name": "UIImageView",
  2549. "printedName": "UIKit.UIImageView",
  2550. "usr": "c:objc(cs)UIImageView"
  2551. }
  2552. ],
  2553. "usr": "s:Sa"
  2554. }
  2555. ],
  2556. "usr": "s:Sq"
  2557. },
  2558. {
  2559. "kind": "TypeNominal",
  2560. "name": "ImplicitlyUnwrappedOptional",
  2561. "printedName": "UIKit.UIImageView?",
  2562. "children": [
  2563. {
  2564. "kind": "TypeNominal",
  2565. "name": "UIImageView",
  2566. "printedName": "UIKit.UIImageView",
  2567. "usr": "c:objc(cs)UIImageView"
  2568. }
  2569. ],
  2570. "usr": "s:Sq"
  2571. },
  2572. {
  2573. "kind": "TypeNominal",
  2574. "name": "ImplicitlyUnwrappedOptional",
  2575. "printedName": "UIKit.UIImageView?",
  2576. "children": [
  2577. {
  2578. "kind": "TypeNominal",
  2579. "name": "UIImageView",
  2580. "printedName": "UIKit.UIImageView",
  2581. "usr": "c:objc(cs)UIImageView"
  2582. }
  2583. ],
  2584. "usr": "s:Sq"
  2585. }
  2586. ],
  2587. "declKind": "Func",
  2588. "usr": "s:12nuSDKService3APIC10initiateCR9sConfRoom7nCamIdx04nResI09nVQuality12ivRemoteView0l5LocalN00lM1ZySSSg_SiSgs5UInt8VSgAMSaySo07UIImageN0CGSgARSgAUtFZ",
  2589. "mangledName": "$s12nuSDKService3APIC10initiateCR9sConfRoom7nCamIdx04nResI09nVQuality12ivRemoteView0l5LocalN00lM1ZySSSg_SiSgs5UInt8VSgAMSaySo07UIImageN0CGSgARSgAUtFZ",
  2590. "moduleName": "nuSDKService",
  2591. "static": true,
  2592. "declAttributes": [
  2593. "Final",
  2594. "AccessControl"
  2595. ],
  2596. "funcSelfKind": "NonMutating"
  2597. },
  2598. {
  2599. "kind": "Function",
  2600. "name": "joinCR",
  2601. "printedName": "joinCR(sConfRoom:nCamIdx:nResIdx:nVQuality:ivRemoteView:ivLocalView:ivRemoteZ:)",
  2602. "children": [
  2603. {
  2604. "kind": "TypeNominal",
  2605. "name": "Void",
  2606. "printedName": "()"
  2607. },
  2608. {
  2609. "kind": "TypeNominal",
  2610. "name": "ImplicitlyUnwrappedOptional",
  2611. "printedName": "Swift.String?",
  2612. "children": [
  2613. {
  2614. "kind": "TypeNominal",
  2615. "name": "String",
  2616. "printedName": "Swift.String",
  2617. "usr": "s:SS"
  2618. }
  2619. ],
  2620. "usr": "s:Sq"
  2621. },
  2622. {
  2623. "kind": "TypeNominal",
  2624. "name": "ImplicitlyUnwrappedOptional",
  2625. "printedName": "Swift.Int?",
  2626. "children": [
  2627. {
  2628. "kind": "TypeNominal",
  2629. "name": "Int",
  2630. "printedName": "Swift.Int",
  2631. "usr": "s:Si"
  2632. }
  2633. ],
  2634. "usr": "s:Sq"
  2635. },
  2636. {
  2637. "kind": "TypeNominal",
  2638. "name": "ImplicitlyUnwrappedOptional",
  2639. "printedName": "Swift.UInt8?",
  2640. "children": [
  2641. {
  2642. "kind": "TypeNominal",
  2643. "name": "UInt8",
  2644. "printedName": "Swift.UInt8",
  2645. "usr": "s:s5UInt8V"
  2646. }
  2647. ],
  2648. "usr": "s:Sq"
  2649. },
  2650. {
  2651. "kind": "TypeNominal",
  2652. "name": "ImplicitlyUnwrappedOptional",
  2653. "printedName": "Swift.Int?",
  2654. "children": [
  2655. {
  2656. "kind": "TypeNominal",
  2657. "name": "Int",
  2658. "printedName": "Swift.Int",
  2659. "usr": "s:Si"
  2660. }
  2661. ],
  2662. "usr": "s:Sq"
  2663. },
  2664. {
  2665. "kind": "TypeNominal",
  2666. "name": "ImplicitlyUnwrappedOptional",
  2667. "printedName": "[UIKit.UIImageView]?",
  2668. "children": [
  2669. {
  2670. "kind": "TypeNominal",
  2671. "name": "Array",
  2672. "printedName": "[UIKit.UIImageView]",
  2673. "children": [
  2674. {
  2675. "kind": "TypeNominal",
  2676. "name": "UIImageView",
  2677. "printedName": "UIKit.UIImageView",
  2678. "usr": "c:objc(cs)UIImageView"
  2679. }
  2680. ],
  2681. "usr": "s:Sa"
  2682. }
  2683. ],
  2684. "usr": "s:Sq"
  2685. },
  2686. {
  2687. "kind": "TypeNominal",
  2688. "name": "ImplicitlyUnwrappedOptional",
  2689. "printedName": "UIKit.UIImageView?",
  2690. "children": [
  2691. {
  2692. "kind": "TypeNominal",
  2693. "name": "UIImageView",
  2694. "printedName": "UIKit.UIImageView",
  2695. "usr": "c:objc(cs)UIImageView"
  2696. }
  2697. ],
  2698. "usr": "s:Sq"
  2699. },
  2700. {
  2701. "kind": "TypeNominal",
  2702. "name": "ImplicitlyUnwrappedOptional",
  2703. "printedName": "UIKit.UIImageView?",
  2704. "children": [
  2705. {
  2706. "kind": "TypeNominal",
  2707. "name": "UIImageView",
  2708. "printedName": "UIKit.UIImageView",
  2709. "usr": "c:objc(cs)UIImageView"
  2710. }
  2711. ],
  2712. "usr": "s:Sq"
  2713. }
  2714. ],
  2715. "declKind": "Func",
  2716. "usr": "s:12nuSDKService3APIC6joinCR9sConfRoom7nCamIdx04nResI09nVQuality12ivRemoteView0l5LocalN00lM1ZySSSg_SiSgs5UInt8VSgAMSaySo07UIImageN0CGSgARSgAUtFZ",
  2717. "mangledName": "$s12nuSDKService3APIC6joinCR9sConfRoom7nCamIdx04nResI09nVQuality12ivRemoteView0l5LocalN00lM1ZySSSg_SiSgs5UInt8VSgAMSaySo07UIImageN0CGSgARSgAUtFZ",
  2718. "moduleName": "nuSDKService",
  2719. "static": true,
  2720. "declAttributes": [
  2721. "Final",
  2722. "AccessControl"
  2723. ],
  2724. "funcSelfKind": "NonMutating"
  2725. },
  2726. {
  2727. "kind": "Function",
  2728. "name": "adjustBCQFR",
  2729. "printedName": "adjustBCQFR(nVQuality:)",
  2730. "children": [
  2731. {
  2732. "kind": "TypeNominal",
  2733. "name": "Void",
  2734. "printedName": "()"
  2735. },
  2736. {
  2737. "kind": "TypeNominal",
  2738. "name": "ImplicitlyUnwrappedOptional",
  2739. "printedName": "Swift.Int?",
  2740. "children": [
  2741. {
  2742. "kind": "TypeNominal",
  2743. "name": "Int",
  2744. "printedName": "Swift.Int",
  2745. "usr": "s:Si"
  2746. }
  2747. ],
  2748. "usr": "s:Sq"
  2749. }
  2750. ],
  2751. "declKind": "Func",
  2752. "usr": "s:12nuSDKService3APIC11adjustBCQFR9nVQualityySiSg_tFZ",
  2753. "mangledName": "$s12nuSDKService3APIC11adjustBCQFR9nVQualityySiSg_tFZ",
  2754. "moduleName": "nuSDKService",
  2755. "static": true,
  2756. "declAttributes": [
  2757. "Final",
  2758. "AccessControl",
  2759. "RawDocComment"
  2760. ],
  2761. "funcSelfKind": "NonMutating"
  2762. },
  2763. {
  2764. "kind": "Function",
  2765. "name": "turnLBRAudio",
  2766. "printedName": "turnLBRAudio(sBroadcasterID:bOnOff:)",
  2767. "children": [
  2768. {
  2769. "kind": "TypeNominal",
  2770. "name": "Void",
  2771. "printedName": "()"
  2772. },
  2773. {
  2774. "kind": "TypeNominal",
  2775. "name": "ImplicitlyUnwrappedOptional",
  2776. "printedName": "Swift.String?",
  2777. "children": [
  2778. {
  2779. "kind": "TypeNominal",
  2780. "name": "String",
  2781. "printedName": "Swift.String",
  2782. "usr": "s:SS"
  2783. }
  2784. ],
  2785. "usr": "s:Sq"
  2786. },
  2787. {
  2788. "kind": "TypeNominal",
  2789. "name": "ImplicitlyUnwrappedOptional",
  2790. "printedName": "Swift.Bool?",
  2791. "children": [
  2792. {
  2793. "kind": "TypeNominal",
  2794. "name": "Bool",
  2795. "printedName": "Swift.Bool",
  2796. "usr": "s:Sb"
  2797. }
  2798. ],
  2799. "usr": "s:Sq"
  2800. }
  2801. ],
  2802. "declKind": "Func",
  2803. "usr": "s:12nuSDKService3APIC12turnLBRAudio14sBroadcasterID6bOnOffySSSg_SbSgtFZ",
  2804. "mangledName": "$s12nuSDKService3APIC12turnLBRAudio14sBroadcasterID6bOnOffySSSg_SbSgtFZ",
  2805. "moduleName": "nuSDKService",
  2806. "static": true,
  2807. "declAttributes": [
  2808. "Final",
  2809. "AccessControl"
  2810. ],
  2811. "funcSelfKind": "NonMutating"
  2812. },
  2813. {
  2814. "kind": "Function",
  2815. "name": "adjustLBRVolume",
  2816. "printedName": "adjustLBRVolume(sBroadcasterID:fValue:)",
  2817. "children": [
  2818. {
  2819. "kind": "TypeNominal",
  2820. "name": "Void",
  2821. "printedName": "()"
  2822. },
  2823. {
  2824. "kind": "TypeNominal",
  2825. "name": "ImplicitlyUnwrappedOptional",
  2826. "printedName": "Swift.String?",
  2827. "children": [
  2828. {
  2829. "kind": "TypeNominal",
  2830. "name": "String",
  2831. "printedName": "Swift.String",
  2832. "usr": "s:SS"
  2833. }
  2834. ],
  2835. "usr": "s:Sq"
  2836. },
  2837. {
  2838. "kind": "TypeNominal",
  2839. "name": "ImplicitlyUnwrappedOptional",
  2840. "printedName": "Swift.Float?",
  2841. "children": [
  2842. {
  2843. "kind": "TypeNominal",
  2844. "name": "Float",
  2845. "printedName": "Swift.Float",
  2846. "usr": "s:Sf"
  2847. }
  2848. ],
  2849. "usr": "s:Sq"
  2850. }
  2851. ],
  2852. "declKind": "Func",
  2853. "usr": "s:12nuSDKService3APIC15adjustLBRVolume14sBroadcasterID6fValueySSSg_SfSgtFZ",
  2854. "mangledName": "$s12nuSDKService3APIC15adjustLBRVolume14sBroadcasterID6fValueySSSg_SfSgtFZ",
  2855. "moduleName": "nuSDKService",
  2856. "static": true,
  2857. "declAttributes": [
  2858. "Final",
  2859. "AccessControl"
  2860. ],
  2861. "funcSelfKind": "NonMutating"
  2862. },
  2863. {
  2864. "kind": "Function",
  2865. "name": "initiateBC",
  2866. "printedName": "initiateBC(sTitle:nCamIdx:nResIdx:nVQuality:ivLocalView:)",
  2867. "children": [
  2868. {
  2869. "kind": "TypeNominal",
  2870. "name": "Void",
  2871. "printedName": "()"
  2872. },
  2873. {
  2874. "kind": "TypeNominal",
  2875. "name": "ImplicitlyUnwrappedOptional",
  2876. "printedName": "Swift.String?",
  2877. "children": [
  2878. {
  2879. "kind": "TypeNominal",
  2880. "name": "String",
  2881. "printedName": "Swift.String",
  2882. "usr": "s:SS"
  2883. }
  2884. ],
  2885. "usr": "s:Sq"
  2886. },
  2887. {
  2888. "kind": "TypeNominal",
  2889. "name": "ImplicitlyUnwrappedOptional",
  2890. "printedName": "Swift.Int?",
  2891. "children": [
  2892. {
  2893. "kind": "TypeNominal",
  2894. "name": "Int",
  2895. "printedName": "Swift.Int",
  2896. "usr": "s:Si"
  2897. }
  2898. ],
  2899. "usr": "s:Sq"
  2900. },
  2901. {
  2902. "kind": "TypeNominal",
  2903. "name": "ImplicitlyUnwrappedOptional",
  2904. "printedName": "Swift.UInt8?",
  2905. "children": [
  2906. {
  2907. "kind": "TypeNominal",
  2908. "name": "UInt8",
  2909. "printedName": "Swift.UInt8",
  2910. "usr": "s:s5UInt8V"
  2911. }
  2912. ],
  2913. "usr": "s:Sq"
  2914. },
  2915. {
  2916. "kind": "TypeNominal",
  2917. "name": "ImplicitlyUnwrappedOptional",
  2918. "printedName": "Swift.Int?",
  2919. "children": [
  2920. {
  2921. "kind": "TypeNominal",
  2922. "name": "Int",
  2923. "printedName": "Swift.Int",
  2924. "usr": "s:Si"
  2925. }
  2926. ],
  2927. "usr": "s:Sq"
  2928. },
  2929. {
  2930. "kind": "TypeNominal",
  2931. "name": "ImplicitlyUnwrappedOptional",
  2932. "printedName": "UIKit.UIImageView?",
  2933. "children": [
  2934. {
  2935. "kind": "TypeNominal",
  2936. "name": "UIImageView",
  2937. "printedName": "UIKit.UIImageView",
  2938. "usr": "c:objc(cs)UIImageView"
  2939. }
  2940. ],
  2941. "usr": "s:Sq"
  2942. }
  2943. ],
  2944. "declKind": "Func",
  2945. "usr": "s:12nuSDKService3APIC10initiateBC6sTitle7nCamIdx04nResH09nVQuality11ivLocalViewySSSg_SiSgs5UInt8VSgAKSo07UIImageM0CSgtFZ",
  2946. "mangledName": "$s12nuSDKService3APIC10initiateBC6sTitle7nCamIdx04nResH09nVQuality11ivLocalViewySSSg_SiSgs5UInt8VSgAKSo07UIImageM0CSgtFZ",
  2947. "moduleName": "nuSDKService",
  2948. "static": true,
  2949. "declAttributes": [
  2950. "Final",
  2951. "AccessControl"
  2952. ],
  2953. "funcSelfKind": "NonMutating"
  2954. },
  2955. {
  2956. "kind": "Function",
  2957. "name": "joinBC",
  2958. "printedName": "joinBC(sBroadcasterID:ivRemoteView:)",
  2959. "children": [
  2960. {
  2961. "kind": "TypeNominal",
  2962. "name": "Void",
  2963. "printedName": "()"
  2964. },
  2965. {
  2966. "kind": "TypeNominal",
  2967. "name": "ImplicitlyUnwrappedOptional",
  2968. "printedName": "Swift.String?",
  2969. "children": [
  2970. {
  2971. "kind": "TypeNominal",
  2972. "name": "String",
  2973. "printedName": "Swift.String",
  2974. "usr": "s:SS"
  2975. }
  2976. ],
  2977. "usr": "s:Sq"
  2978. },
  2979. {
  2980. "kind": "TypeNominal",
  2981. "name": "ImplicitlyUnwrappedOptional",
  2982. "printedName": "UIKit.UIImageView?",
  2983. "children": [
  2984. {
  2985. "kind": "TypeNominal",
  2986. "name": "UIImageView",
  2987. "printedName": "UIKit.UIImageView",
  2988. "usr": "c:objc(cs)UIImageView"
  2989. }
  2990. ],
  2991. "usr": "s:Sq"
  2992. }
  2993. ],
  2994. "declKind": "Func",
  2995. "usr": "s:12nuSDKService3APIC6joinBC14sBroadcasterID12ivRemoteViewySSSg_So07UIImageJ0CSgtFZ",
  2996. "mangledName": "$s12nuSDKService3APIC6joinBC14sBroadcasterID12ivRemoteViewySSSg_So07UIImageJ0CSgtFZ",
  2997. "moduleName": "nuSDKService",
  2998. "static": true,
  2999. "declAttributes": [
  3000. "Final",
  3001. "AccessControl",
  3002. "RawDocComment"
  3003. ],
  3004. "funcSelfKind": "NonMutating"
  3005. },
  3006. {
  3007. "kind": "Function",
  3008. "name": "terminateBC",
  3009. "printedName": "terminateBC(sBroadcasterID:)",
  3010. "children": [
  3011. {
  3012. "kind": "TypeNominal",
  3013. "name": "Void",
  3014. "printedName": "()"
  3015. },
  3016. {
  3017. "kind": "TypeNominal",
  3018. "name": "Optional",
  3019. "printedName": "Swift.String?",
  3020. "children": [
  3021. {
  3022. "kind": "TypeNominal",
  3023. "name": "String",
  3024. "printedName": "Swift.String",
  3025. "usr": "s:SS"
  3026. }
  3027. ],
  3028. "usr": "s:Sq"
  3029. }
  3030. ],
  3031. "declKind": "Func",
  3032. "usr": "s:12nuSDKService3APIC11terminateBC14sBroadcasterIDySSSg_tFZ",
  3033. "mangledName": "$s12nuSDKService3APIC11terminateBC14sBroadcasterIDySSSg_tFZ",
  3034. "moduleName": "nuSDKService",
  3035. "static": true,
  3036. "declAttributes": [
  3037. "Final",
  3038. "AccessControl"
  3039. ],
  3040. "funcSelfKind": "NonMutating"
  3041. },
  3042. {
  3043. "kind": "Function",
  3044. "name": "ibca",
  3045. "printedName": "ibca(sTitle:nCamIdx:nResIdx:nVQuality:tvCameraPreview:ivRemoteS:)",
  3046. "children": [
  3047. {
  3048. "kind": "TypeNominal",
  3049. "name": "Void",
  3050. "printedName": "()"
  3051. },
  3052. {
  3053. "kind": "TypeNominal",
  3054. "name": "ImplicitlyUnwrappedOptional",
  3055. "printedName": "Swift.String?",
  3056. "children": [
  3057. {
  3058. "kind": "TypeNominal",
  3059. "name": "String",
  3060. "printedName": "Swift.String",
  3061. "usr": "s:SS"
  3062. }
  3063. ],
  3064. "usr": "s:Sq"
  3065. },
  3066. {
  3067. "kind": "TypeNominal",
  3068. "name": "ImplicitlyUnwrappedOptional",
  3069. "printedName": "Swift.Int?",
  3070. "children": [
  3071. {
  3072. "kind": "TypeNominal",
  3073. "name": "Int",
  3074. "printedName": "Swift.Int",
  3075. "usr": "s:Si"
  3076. }
  3077. ],
  3078. "usr": "s:Sq"
  3079. },
  3080. {
  3081. "kind": "TypeNominal",
  3082. "name": "ImplicitlyUnwrappedOptional",
  3083. "printedName": "Swift.UInt8?",
  3084. "children": [
  3085. {
  3086. "kind": "TypeNominal",
  3087. "name": "UInt8",
  3088. "printedName": "Swift.UInt8",
  3089. "usr": "s:s5UInt8V"
  3090. }
  3091. ],
  3092. "usr": "s:Sq"
  3093. },
  3094. {
  3095. "kind": "TypeNominal",
  3096. "name": "ImplicitlyUnwrappedOptional",
  3097. "printedName": "Swift.Int?",
  3098. "children": [
  3099. {
  3100. "kind": "TypeNominal",
  3101. "name": "Int",
  3102. "printedName": "Swift.Int",
  3103. "usr": "s:Si"
  3104. }
  3105. ],
  3106. "usr": "s:Sq"
  3107. },
  3108. {
  3109. "kind": "TypeNominal",
  3110. "name": "ImplicitlyUnwrappedOptional",
  3111. "printedName": "UIKit.UIImageView?",
  3112. "children": [
  3113. {
  3114. "kind": "TypeNominal",
  3115. "name": "UIImageView",
  3116. "printedName": "UIKit.UIImageView",
  3117. "usr": "c:objc(cs)UIImageView"
  3118. }
  3119. ],
  3120. "usr": "s:Sq"
  3121. },
  3122. {
  3123. "kind": "TypeNominal",
  3124. "name": "ImplicitlyUnwrappedOptional",
  3125. "printedName": "UIKit.UIImageView?",
  3126. "children": [
  3127. {
  3128. "kind": "TypeNominal",
  3129. "name": "UIImageView",
  3130. "printedName": "UIKit.UIImageView",
  3131. "usr": "c:objc(cs)UIImageView"
  3132. }
  3133. ],
  3134. "usr": "s:Sq"
  3135. }
  3136. ],
  3137. "declKind": "Func",
  3138. "usr": "s:12nuSDKService3APIC4ibca6sTitle7nCamIdx04nResG09nVQuality15tvCameraPreview9ivRemoteSySSSg_SiSgs5UInt8VSgALSo11UIImageViewCSgARtFZ",
  3139. "mangledName": "$s12nuSDKService3APIC4ibca6sTitle7nCamIdx04nResG09nVQuality15tvCameraPreview9ivRemoteSySSSg_SiSgs5UInt8VSgALSo11UIImageViewCSgARtFZ",
  3140. "moduleName": "nuSDKService",
  3141. "static": true,
  3142. "declAttributes": [
  3143. "Final",
  3144. "AccessControl",
  3145. "RawDocComment"
  3146. ],
  3147. "funcSelfKind": "NonMutating"
  3148. },
  3149. {
  3150. "kind": "Function",
  3151. "name": "iabc",
  3152. "printedName": "iabc(nCamIdx:nResIdx:nVQuality:tvCameraPreview:sBroadcasterID:ivRemoteM:ivRemoteS:)",
  3153. "children": [
  3154. {
  3155. "kind": "TypeNominal",
  3156. "name": "Void",
  3157. "printedName": "()"
  3158. },
  3159. {
  3160. "kind": "TypeNominal",
  3161. "name": "ImplicitlyUnwrappedOptional",
  3162. "printedName": "Swift.Int?",
  3163. "children": [
  3164. {
  3165. "kind": "TypeNominal",
  3166. "name": "Int",
  3167. "printedName": "Swift.Int",
  3168. "usr": "s:Si"
  3169. }
  3170. ],
  3171. "usr": "s:Sq"
  3172. },
  3173. {
  3174. "kind": "TypeNominal",
  3175. "name": "ImplicitlyUnwrappedOptional",
  3176. "printedName": "Swift.UInt8?",
  3177. "children": [
  3178. {
  3179. "kind": "TypeNominal",
  3180. "name": "UInt8",
  3181. "printedName": "Swift.UInt8",
  3182. "usr": "s:s5UInt8V"
  3183. }
  3184. ],
  3185. "usr": "s:Sq"
  3186. },
  3187. {
  3188. "kind": "TypeNominal",
  3189. "name": "ImplicitlyUnwrappedOptional",
  3190. "printedName": "Swift.Int?",
  3191. "children": [
  3192. {
  3193. "kind": "TypeNominal",
  3194. "name": "Int",
  3195. "printedName": "Swift.Int",
  3196. "usr": "s:Si"
  3197. }
  3198. ],
  3199. "usr": "s:Sq"
  3200. },
  3201. {
  3202. "kind": "TypeNominal",
  3203. "name": "ImplicitlyUnwrappedOptional",
  3204. "printedName": "UIKit.UIImageView?",
  3205. "children": [
  3206. {
  3207. "kind": "TypeNominal",
  3208. "name": "UIImageView",
  3209. "printedName": "UIKit.UIImageView",
  3210. "usr": "c:objc(cs)UIImageView"
  3211. }
  3212. ],
  3213. "usr": "s:Sq"
  3214. },
  3215. {
  3216. "kind": "TypeNominal",
  3217. "name": "ImplicitlyUnwrappedOptional",
  3218. "printedName": "Swift.String?",
  3219. "children": [
  3220. {
  3221. "kind": "TypeNominal",
  3222. "name": "String",
  3223. "printedName": "Swift.String",
  3224. "usr": "s:SS"
  3225. }
  3226. ],
  3227. "usr": "s:Sq"
  3228. },
  3229. {
  3230. "kind": "TypeNominal",
  3231. "name": "ImplicitlyUnwrappedOptional",
  3232. "printedName": "UIKit.UIImageView?",
  3233. "children": [
  3234. {
  3235. "kind": "TypeNominal",
  3236. "name": "UIImageView",
  3237. "printedName": "UIKit.UIImageView",
  3238. "usr": "c:objc(cs)UIImageView"
  3239. }
  3240. ],
  3241. "usr": "s:Sq"
  3242. },
  3243. {
  3244. "kind": "TypeNominal",
  3245. "name": "ImplicitlyUnwrappedOptional",
  3246. "printedName": "UIKit.UIImageView?",
  3247. "children": [
  3248. {
  3249. "kind": "TypeNominal",
  3250. "name": "UIImageView",
  3251. "printedName": "UIKit.UIImageView",
  3252. "usr": "c:objc(cs)UIImageView"
  3253. }
  3254. ],
  3255. "usr": "s:Sq"
  3256. }
  3257. ],
  3258. "declKind": "Func",
  3259. "usr": "s:12nuSDKService3APIC4iabc7nCamIdx04nResF09nVQuality15tvCameraPreview14sBroadcasterID9ivRemoteM0nO1SySiSg_s5UInt8VSgALSo11UIImageViewCSgSSSgA2RtFZ",
  3260. "mangledName": "$s12nuSDKService3APIC4iabc7nCamIdx04nResF09nVQuality15tvCameraPreview14sBroadcasterID9ivRemoteM0nO1SySiSg_s5UInt8VSgALSo11UIImageViewCSgSSSgA2RtFZ",
  3261. "moduleName": "nuSDKService",
  3262. "static": true,
  3263. "declAttributes": [
  3264. "Final",
  3265. "AccessControl",
  3266. "RawDocComment"
  3267. ],
  3268. "funcSelfKind": "NonMutating"
  3269. },
  3270. {
  3271. "kind": "Function",
  3272. "name": "sabc",
  3273. "printedName": "sabc(sAudienceID:)",
  3274. "children": [
  3275. {
  3276. "kind": "TypeNominal",
  3277. "name": "Void",
  3278. "printedName": "()"
  3279. },
  3280. {
  3281. "kind": "TypeNominal",
  3282. "name": "ImplicitlyUnwrappedOptional",
  3283. "printedName": "Swift.String?",
  3284. "children": [
  3285. {
  3286. "kind": "TypeNominal",
  3287. "name": "String",
  3288. "printedName": "Swift.String",
  3289. "usr": "s:SS"
  3290. }
  3291. ],
  3292. "usr": "s:Sq"
  3293. }
  3294. ],
  3295. "declKind": "Func",
  3296. "usr": "s:12nuSDKService3APIC4sabc11sAudienceIDySSSg_tFZ",
  3297. "mangledName": "$s12nuSDKService3APIC4sabc11sAudienceIDySSSg_tFZ",
  3298. "moduleName": "nuSDKService",
  3299. "static": true,
  3300. "declAttributes": [
  3301. "Final",
  3302. "AccessControl",
  3303. "RawDocComment"
  3304. ],
  3305. "funcSelfKind": "NonMutating"
  3306. },
  3307. {
  3308. "kind": "Function",
  3309. "name": "eabc",
  3310. "printedName": "eabc(sAudienceID:)",
  3311. "children": [
  3312. {
  3313. "kind": "TypeNominal",
  3314. "name": "Void",
  3315. "printedName": "()"
  3316. },
  3317. {
  3318. "kind": "TypeNominal",
  3319. "name": "ImplicitlyUnwrappedOptional",
  3320. "printedName": "Swift.String?",
  3321. "children": [
  3322. {
  3323. "kind": "TypeNominal",
  3324. "name": "String",
  3325. "printedName": "Swift.String",
  3326. "usr": "s:SS"
  3327. }
  3328. ],
  3329. "usr": "s:Sq"
  3330. }
  3331. ],
  3332. "declKind": "Func",
  3333. "usr": "s:12nuSDKService3APIC4eabc11sAudienceIDySSSg_tFZ",
  3334. "mangledName": "$s12nuSDKService3APIC4eabc11sAudienceIDySSSg_tFZ",
  3335. "moduleName": "nuSDKService",
  3336. "static": true,
  3337. "declAttributes": [
  3338. "Final",
  3339. "AccessControl",
  3340. "RawDocComment"
  3341. ],
  3342. "funcSelfKind": "NonMutating"
  3343. },
  3344. {
  3345. "kind": "Function",
  3346. "name": "initiateSS",
  3347. "printedName": "initiateSS(sTitle:nQuality:)",
  3348. "children": [
  3349. {
  3350. "kind": "TypeNominal",
  3351. "name": "Void",
  3352. "printedName": "()"
  3353. },
  3354. {
  3355. "kind": "TypeNominal",
  3356. "name": "ImplicitlyUnwrappedOptional",
  3357. "printedName": "Swift.String?",
  3358. "children": [
  3359. {
  3360. "kind": "TypeNominal",
  3361. "name": "String",
  3362. "printedName": "Swift.String",
  3363. "usr": "s:SS"
  3364. }
  3365. ],
  3366. "usr": "s:Sq"
  3367. },
  3368. {
  3369. "kind": "TypeNominal",
  3370. "name": "ImplicitlyUnwrappedOptional",
  3371. "printedName": "Swift.Int?",
  3372. "children": [
  3373. {
  3374. "kind": "TypeNominal",
  3375. "name": "Int",
  3376. "printedName": "Swift.Int",
  3377. "usr": "s:Si"
  3378. }
  3379. ],
  3380. "usr": "s:Sq"
  3381. }
  3382. ],
  3383. "declKind": "Func",
  3384. "usr": "s:12nuSDKService3APIC10initiateSS6sTitle8nQualityySSSg_SiSgtFZ",
  3385. "mangledName": "$s12nuSDKService3APIC10initiateSS6sTitle8nQualityySSSg_SiSgtFZ",
  3386. "moduleName": "nuSDKService",
  3387. "static": true,
  3388. "declAttributes": [
  3389. "Final",
  3390. "AccessControl",
  3391. "RawDocComment"
  3392. ],
  3393. "funcSelfKind": "NonMutating"
  3394. },
  3395. {
  3396. "kind": "Function",
  3397. "name": "joinSS",
  3398. "printedName": "joinSS(sBroadcasterID:ivRemoteView:)",
  3399. "children": [
  3400. {
  3401. "kind": "TypeNominal",
  3402. "name": "Void",
  3403. "printedName": "()"
  3404. },
  3405. {
  3406. "kind": "TypeNominal",
  3407. "name": "ImplicitlyUnwrappedOptional",
  3408. "printedName": "Swift.String?",
  3409. "children": [
  3410. {
  3411. "kind": "TypeNominal",
  3412. "name": "String",
  3413. "printedName": "Swift.String",
  3414. "usr": "s:SS"
  3415. }
  3416. ],
  3417. "usr": "s:Sq"
  3418. },
  3419. {
  3420. "kind": "TypeNominal",
  3421. "name": "ImplicitlyUnwrappedOptional",
  3422. "printedName": "UIKit.UIImageView?",
  3423. "children": [
  3424. {
  3425. "kind": "TypeNominal",
  3426. "name": "UIImageView",
  3427. "printedName": "UIKit.UIImageView",
  3428. "usr": "c:objc(cs)UIImageView"
  3429. }
  3430. ],
  3431. "usr": "s:Sq"
  3432. }
  3433. ],
  3434. "declKind": "Func",
  3435. "usr": "s:12nuSDKService3APIC6joinSS14sBroadcasterID12ivRemoteViewySSSg_So07UIImageJ0CSgtFZ",
  3436. "mangledName": "$s12nuSDKService3APIC6joinSS14sBroadcasterID12ivRemoteViewySSSg_So07UIImageJ0CSgtFZ",
  3437. "moduleName": "nuSDKService",
  3438. "static": true,
  3439. "declAttributes": [
  3440. "Final",
  3441. "AccessControl"
  3442. ],
  3443. "funcSelfKind": "NonMutating"
  3444. },
  3445. {
  3446. "kind": "Function",
  3447. "name": "terminateSS",
  3448. "printedName": "terminateSS()",
  3449. "children": [
  3450. {
  3451. "kind": "TypeNominal",
  3452. "name": "Void",
  3453. "printedName": "()"
  3454. }
  3455. ],
  3456. "declKind": "Func",
  3457. "usr": "s:12nuSDKService3APIC11terminateSSyyFZ",
  3458. "mangledName": "$s12nuSDKService3APIC11terminateSSyyFZ",
  3459. "moduleName": "nuSDKService",
  3460. "static": true,
  3461. "declAttributes": [
  3462. "Final",
  3463. "AccessControl"
  3464. ],
  3465. "funcSelfKind": "NonMutating"
  3466. }
  3467. ],
  3468. "declKind": "Class",
  3469. "usr": "s:12nuSDKService3APIC",
  3470. "mangledName": "$s12nuSDKService3APIC",
  3471. "moduleName": "nuSDKService",
  3472. "declAttributes": [
  3473. "Final",
  3474. "AccessControl",
  3475. "RawDocComment"
  3476. ],
  3477. "hasMissingDesignatedInitializers": true
  3478. },
  3479. {
  3480. "kind": "Import",
  3481. "name": "Foundation",
  3482. "printedName": "Foundation",
  3483. "declKind": "Import",
  3484. "moduleName": "nuSDKService",
  3485. "declAttributes": [
  3486. "RawDocComment"
  3487. ]
  3488. },
  3489. {
  3490. "kind": "Import",
  3491. "name": "AVFoundation",
  3492. "printedName": "AVFoundation",
  3493. "declKind": "Import",
  3494. "moduleName": "nuSDKService"
  3495. },
  3496. {
  3497. "kind": "Import",
  3498. "name": "CoreImage",
  3499. "printedName": "CoreImage",
  3500. "declKind": "Import",
  3501. "moduleName": "nuSDKService"
  3502. },
  3503. {
  3504. "kind": "Import",
  3505. "name": "UIKit",
  3506. "printedName": "UIKit",
  3507. "declKind": "Import",
  3508. "moduleName": "nuSDKService"
  3509. },
  3510. {
  3511. "kind": "Import",
  3512. "name": "WebPKit",
  3513. "printedName": "WebPKit",
  3514. "declKind": "Import",
  3515. "moduleName": "nuSDKService",
  3516. "declAttributes": [
  3517. "ImplementationOnly"
  3518. ]
  3519. },
  3520. {
  3521. "kind": "Import",
  3522. "name": "Foundation",
  3523. "printedName": "Foundation",
  3524. "declKind": "Import",
  3525. "moduleName": "nuSDKService",
  3526. "declAttributes": [
  3527. "RawDocComment"
  3528. ]
  3529. },
  3530. {
  3531. "kind": "Import",
  3532. "name": "Foundation",
  3533. "printedName": "Foundation",
  3534. "declKind": "Import",
  3535. "moduleName": "nuSDKService",
  3536. "declAttributes": [
  3537. "RawDocComment"
  3538. ]
  3539. }
  3540. ],
  3541. "json_format_version": 8
  3542. },
  3543. "ConstValues": [
  3544. {
  3545. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/DatagramSocket.swift",
  3546. "kind": "IntegerLiteral",
  3547. "offset": 235,
  3548. "length": 2,
  3549. "value": "16"
  3550. },
  3551. {
  3552. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/DatagramSocket.swift",
  3553. "kind": "IntegerLiteral",
  3554. "offset": 278,
  3555. "length": 6,
  3556. "value": "10000"
  3557. },
  3558. {
  3559. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/DatagramSocket.swift",
  3560. "kind": "IntegerLiteral",
  3561. "offset": 331,
  3562. "length": 1,
  3563. "value": "0"
  3564. },
  3565. {
  3566. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/DatagramSocket.swift",
  3567. "kind": "IntegerLiteral",
  3568. "offset": 484,
  3569. "length": 4,
  3570. "value": "1024"
  3571. },
  3572. {
  3573. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/DatagramSocket.swift",
  3574. "kind": "IntegerLiteral",
  3575. "offset": 521,
  3576. "length": 4,
  3577. "value": "1024"
  3578. },
  3579. {
  3580. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/DatagramSocket.swift",
  3581. "kind": "IntegerLiteral",
  3582. "offset": 553,
  3583. "length": 1,
  3584. "value": "0"
  3585. },
  3586. {
  3587. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/DatagramSocket.swift",
  3588. "kind": "IntegerLiteral",
  3589. "offset": 624,
  3590. "length": 1,
  3591. "value": "0"
  3592. },
  3593. {
  3594. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/DatagramSocket.swift",
  3595. "kind": "IntegerLiteral",
  3596. "offset": 771,
  3597. "length": 1,
  3598. "value": "0"
  3599. },
  3600. {
  3601. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/DatagramSocket.swift",
  3602. "kind": "BooleanLiteral",
  3603. "offset": 945,
  3604. "length": 5,
  3605. "value": "false"
  3606. },
  3607. {
  3608. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3609. "kind": "IntegerLiteral",
  3610. "offset": 242,
  3611. "length": 2,
  3612. "value": "64"
  3613. },
  3614. {
  3615. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3616. "kind": "IntegerLiteral",
  3617. "offset": 247,
  3618. "length": 4,
  3619. "value": "1024"
  3620. },
  3621. {
  3622. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3623. "kind": "IntegerLiteral",
  3624. "offset": 328,
  3625. "length": 1,
  3626. "value": "0"
  3627. },
  3628. {
  3629. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3630. "kind": "IntegerLiteral",
  3631. "offset": 481,
  3632. "length": 1,
  3633. "value": "0"
  3634. },
  3635. {
  3636. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3637. "kind": "BooleanLiteral",
  3638. "offset": 631,
  3639. "length": 5,
  3640. "value": "false"
  3641. },
  3642. {
  3643. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3644. "kind": "IntegerLiteral",
  3645. "offset": 676,
  3646. "length": 1,
  3647. "value": "0"
  3648. },
  3649. {
  3650. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3651. "kind": "IntegerLiteral",
  3652. "offset": 775,
  3653. "length": 1,
  3654. "value": "0"
  3655. },
  3656. {
  3657. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3658. "kind": "IntegerLiteral",
  3659. "offset": 784,
  3660. "length": 2,
  3661. "value": "32"
  3662. },
  3663. {
  3664. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3665. "kind": "IntegerLiteral",
  3666. "offset": 921,
  3667. "length": 1,
  3668. "value": "0"
  3669. },
  3670. {
  3671. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3672. "kind": "IntegerLiteral",
  3673. "offset": 964,
  3674. "length": 1,
  3675. "value": "2"
  3676. },
  3677. {
  3678. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3679. "kind": "IntegerLiteral",
  3680. "offset": 1001,
  3681. "length": 4,
  3682. "value": "1000"
  3683. },
  3684. {
  3685. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3686. "kind": "FloatLiteral",
  3687. "offset": 1066,
  3688. "length": 4,
  3689. "value": "0.30"
  3690. },
  3691. {
  3692. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaSS.swift",
  3693. "kind": "IntegerLiteral",
  3694. "offset": 10254,
  3695. "length": 1,
  3696. "value": "0"
  3697. },
  3698. {
  3699. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3700. "kind": "IntegerLiteral",
  3701. "offset": 423,
  3702. "length": 1,
  3703. "value": "8"
  3704. },
  3705. {
  3706. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3707. "kind": "IntegerLiteral",
  3708. "offset": 474,
  3709. "length": 1,
  3710. "value": "8"
  3711. },
  3712. {
  3713. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3714. "kind": "IntegerLiteral",
  3715. "offset": 525,
  3716. "length": 1,
  3717. "value": "8"
  3718. },
  3719. {
  3720. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3721. "kind": "BooleanLiteral",
  3722. "offset": 576,
  3723. "length": 5,
  3724. "value": "false"
  3725. },
  3726. {
  3727. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3728. "kind": "BooleanLiteral",
  3729. "offset": 636,
  3730. "length": 4,
  3731. "value": "true"
  3732. },
  3733. {
  3734. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3735. "kind": "IntegerLiteral",
  3736. "offset": 693,
  3737. "length": 1,
  3738. "value": "4"
  3739. },
  3740. {
  3741. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3742. "kind": "IntegerLiteral",
  3743. "offset": 747,
  3744. "length": 1,
  3745. "value": "1"
  3746. },
  3747. {
  3748. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3749. "kind": "IntegerLiteral",
  3750. "offset": 801,
  3751. "length": 2,
  3752. "value": "1"
  3753. },
  3754. {
  3755. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3756. "kind": "IntegerLiteral",
  3757. "offset": 840,
  3758. "length": 3,
  3759. "value": "190"
  3760. },
  3761. {
  3762. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3763. "kind": "IntegerLiteral",
  3764. "offset": 881,
  3765. "length": 3,
  3766. "value": "208"
  3767. },
  3768. {
  3769. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3770. "kind": "IntegerLiteral",
  3771. "offset": 919,
  3772. "length": 2,
  3773. "value": "64"
  3774. },
  3775. {
  3776. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3777. "kind": "IntegerLiteral",
  3778. "offset": 924,
  3779. "length": 4,
  3780. "value": "1024"
  3781. },
  3782. {
  3783. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3784. "kind": "IntegerLiteral",
  3785. "offset": 978,
  3786. "length": 4,
  3787. "value": "1024"
  3788. },
  3789. {
  3790. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3791. "kind": "BooleanLiteral",
  3792. "offset": 1048,
  3793. "length": 5,
  3794. "value": "false"
  3795. },
  3796. {
  3797. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3798. "kind": "IntegerLiteral",
  3799. "offset": 1376,
  3800. "length": 1,
  3801. "value": "5"
  3802. },
  3803. {
  3804. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3805. "kind": "IntegerLiteral",
  3806. "offset": 1420,
  3807. "length": 2,
  3808. "value": "38"
  3809. },
  3810. {
  3811. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3812. "kind": "IntegerLiteral",
  3813. "offset": 1586,
  3814. "length": 3,
  3815. "value": "800"
  3816. },
  3817. {
  3818. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3819. "kind": "IntegerLiteral",
  3820. "offset": 1700,
  3821. "length": 2,
  3822. "value": "32"
  3823. },
  3824. {
  3825. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3826. "kind": "IntegerLiteral",
  3827. "offset": 1732,
  3828. "length": 2,
  3829. "value": "32"
  3830. },
  3831. {
  3832. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3833. "kind": "IntegerLiteral",
  3834. "offset": 1791,
  3835. "length": 1,
  3836. "value": "0"
  3837. },
  3838. {
  3839. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3840. "kind": "IntegerLiteral",
  3841. "offset": 1947,
  3842. "length": 1,
  3843. "value": "0"
  3844. },
  3845. {
  3846. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3847. "kind": "IntegerLiteral",
  3848. "offset": 2251,
  3849. "length": 1,
  3850. "value": "0"
  3851. },
  3852. {
  3853. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3854. "kind": "IntegerLiteral",
  3855. "offset": 2328,
  3856. "length": 4,
  3857. "value": "8000"
  3858. },
  3859. {
  3860. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3861. "kind": "IntegerLiteral",
  3862. "offset": 2381,
  3863. "length": 1,
  3864. "value": "0"
  3865. },
  3866. {
  3867. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3868. "kind": "IntegerLiteral",
  3869. "offset": 2403,
  3870. "length": 1,
  3871. "value": "0"
  3872. },
  3873. {
  3874. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3875. "kind": "IntegerLiteral",
  3876. "offset": 2426,
  3877. "length": 1,
  3878. "value": "0"
  3879. },
  3880. {
  3881. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3882. "kind": "IntegerLiteral",
  3883. "offset": 2447,
  3884. "length": 1,
  3885. "value": "0"
  3886. },
  3887. {
  3888. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3889. "kind": "IntegerLiteral",
  3890. "offset": 2471,
  3891. "length": 1,
  3892. "value": "1"
  3893. },
  3894. {
  3895. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3896. "kind": "IntegerLiteral",
  3897. "offset": 2493,
  3898. "length": 1,
  3899. "value": "0"
  3900. },
  3901. {
  3902. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3903. "kind": "IntegerLiteral",
  3904. "offset": 2509,
  3905. "length": 1,
  3906. "value": "0"
  3907. },
  3908. {
  3909. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3910. "kind": "FloatLiteral",
  3911. "offset": 2677,
  3912. "length": 7,
  3913. "value": "10000.0"
  3914. },
  3915. {
  3916. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3917. "kind": "FloatLiteral",
  3918. "offset": 2724,
  3919. "length": 5,
  3920. "value": "300.0"
  3921. },
  3922. {
  3923. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3924. "kind": "IntegerLiteral",
  3925. "offset": 2827,
  3926. "length": 2,
  3927. "value": "1"
  3928. },
  3929. {
  3930. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3931. "kind": "IntegerLiteral",
  3932. "offset": 3005,
  3933. "length": 1,
  3934. "value": "0"
  3935. },
  3936. {
  3937. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3938. "kind": "IntegerLiteral",
  3939. "offset": 3040,
  3940. "length": 2,
  3941. "value": "10"
  3942. },
  3943. {
  3944. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3945. "kind": "IntegerLiteral",
  3946. "offset": 3151,
  3947. "length": 8,
  3948. "value": "86400000"
  3949. },
  3950. {
  3951. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3952. "kind": "BooleanLiteral",
  3953. "offset": 3267,
  3954. "length": 5,
  3955. "value": "false"
  3956. },
  3957. {
  3958. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3959. "kind": "BooleanLiteral",
  3960. "offset": 3299,
  3961. "length": 5,
  3962. "value": "false"
  3963. },
  3964. {
  3965. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3966. "kind": "IntegerLiteral",
  3967. "offset": 3422,
  3968. "length": 1,
  3969. "value": "0"
  3970. },
  3971. {
  3972. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3973. "kind": "IntegerLiteral",
  3974. "offset": 3484,
  3975. "length": 4,
  3976. "value": "666"
  3977. },
  3978. {
  3979. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3980. "kind": "BooleanLiteral",
  3981. "offset": 3520,
  3982. "length": 5,
  3983. "value": "false"
  3984. },
  3985. {
  3986. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3987. "kind": "BooleanLiteral",
  3988. "offset": 3558,
  3989. "length": 5,
  3990. "value": "false"
  3991. },
  3992. {
  3993. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  3994. "kind": "BooleanLiteral",
  3995. "offset": 3602,
  3996. "length": 5,
  3997. "value": "false"
  3998. },
  3999. {
  4000. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4001. "kind": "BooleanLiteral",
  4002. "offset": 3641,
  4003. "length": 5,
  4004. "value": "false"
  4005. },
  4006. {
  4007. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4008. "kind": "IntegerLiteral",
  4009. "offset": 3767,
  4010. "length": 3,
  4011. "value": "640"
  4012. },
  4013. {
  4014. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4015. "kind": "IntegerLiteral",
  4016. "offset": 3811,
  4017. "length": 3,
  4018. "value": "480"
  4019. },
  4020. {
  4021. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4022. "kind": "StringLiteral",
  4023. "offset": 3855,
  4024. "length": 3,
  4025. "value": "\"?\""
  4026. },
  4027. {
  4028. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4029. "kind": "FloatLiteral",
  4030. "offset": 3903,
  4031. "length": 4,
  4032. "value": "0.45"
  4033. },
  4034. {
  4035. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4036. "kind": "IntegerLiteral",
  4037. "offset": 3943,
  4038. "length": 4,
  4039. "value": "1000"
  4040. },
  4041. {
  4042. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4043. "kind": "IntegerLiteral",
  4044. "offset": 4076,
  4045. "length": 1,
  4046. "value": "0"
  4047. },
  4048. {
  4049. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4050. "kind": "StringLiteral",
  4051. "offset": 4154,
  4052. "length": 2,
  4053. "value": "\"\""
  4054. },
  4055. {
  4056. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4057. "kind": "IntegerLiteral",
  4058. "offset": 4336,
  4059. "length": 1,
  4060. "value": "0"
  4061. },
  4062. {
  4063. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4064. "kind": "IntegerLiteral",
  4065. "offset": 4345,
  4066. "length": 2,
  4067. "value": "32"
  4068. },
  4069. {
  4070. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4071. "kind": "IntegerLiteral",
  4072. "offset": 4790,
  4073. "length": 1,
  4074. "value": "0"
  4075. },
  4076. {
  4077. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4078. "kind": "IntegerLiteral",
  4079. "offset": 4853,
  4080. "length": 1,
  4081. "value": "0"
  4082. },
  4083. {
  4084. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4085. "kind": "BooleanLiteral",
  4086. "offset": 4899,
  4087. "length": 5,
  4088. "value": "false"
  4089. },
  4090. {
  4091. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4092. "kind": "BooleanLiteral",
  4093. "offset": 5057,
  4094. "length": 5,
  4095. "value": "false"
  4096. },
  4097. {
  4098. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4099. "kind": "BooleanLiteral",
  4100. "offset": 5105,
  4101. "length": 5,
  4102. "value": "false"
  4103. },
  4104. {
  4105. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4106. "kind": "IntegerLiteral",
  4107. "offset": 6298,
  4108. "length": 1,
  4109. "value": "0"
  4110. },
  4111. {
  4112. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4113. "kind": "BooleanLiteral",
  4114. "offset": 6482,
  4115. "length": 5,
  4116. "value": "false"
  4117. },
  4118. {
  4119. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4120. "kind": "IntegerLiteral",
  4121. "offset": 6519,
  4122. "length": 1,
  4123. "value": "0"
  4124. },
  4125. {
  4126. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaAV.swift",
  4127. "kind": "StringLiteral",
  4128. "offset": 9903,
  4129. "length": 20,
  4130. "value": "\"dqSetZoomedChannel\""
  4131. },
  4132. {
  4133. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionDataPacket.swift",
  4134. "kind": "IntegerLiteral",
  4135. "offset": 259,
  4136. "length": 1,
  4137. "value": "1"
  4138. },
  4139. {
  4140. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionDataPacket.swift",
  4141. "kind": "IntegerLiteral",
  4142. "offset": 263,
  4143. "length": 4,
  4144. "value": "1024"
  4145. },
  4146. {
  4147. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionDataPacket.swift",
  4148. "kind": "IntegerLiteral",
  4149. "offset": 270,
  4150. "length": 4,
  4151. "value": "1024"
  4152. },
  4153. {
  4154. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionDataPacket.swift",
  4155. "kind": "IntegerLiteral",
  4156. "offset": 309,
  4157. "length": 2,
  4158. "value": "12"
  4159. },
  4160. {
  4161. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionDataPacket.swift",
  4162. "kind": "IntegerLiteral",
  4163. "offset": 354,
  4164. "length": 3,
  4165. "value": "164"
  4166. },
  4167. {
  4168. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionDataPacket.swift",
  4169. "kind": "IntegerLiteral",
  4170. "offset": 1176,
  4171. "length": 1,
  4172. "value": "0"
  4173. },
  4174. {
  4175. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/StreamSocket.swift",
  4176. "kind": "IntegerLiteral",
  4177. "offset": 231,
  4178. "length": 2,
  4179. "value": "32"
  4180. },
  4181. {
  4182. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/StreamSocket.swift",
  4183. "kind": "IntegerLiteral",
  4184. "offset": 262,
  4185. "length": 1,
  4186. "value": "0"
  4187. },
  4188. {
  4189. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/StreamSocket.swift",
  4190. "kind": "IntegerLiteral",
  4191. "offset": 340,
  4192. "length": 4,
  4193. "value": "1024"
  4194. },
  4195. {
  4196. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/StreamSocket.swift",
  4197. "kind": "IntegerLiteral",
  4198. "offset": 377,
  4199. "length": 4,
  4200. "value": "1024"
  4201. },
  4202. {
  4203. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/StreamSocket.swift",
  4204. "kind": "IntegerLiteral",
  4205. "offset": 438,
  4206. "length": 1,
  4207. "value": "0"
  4208. },
  4209. {
  4210. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/StreamSocket.swift",
  4211. "kind": "IntegerLiteral",
  4212. "offset": 585,
  4213. "length": 1,
  4214. "value": "0"
  4215. },
  4216. {
  4217. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/StreamSocket.swift",
  4218. "kind": "BooleanLiteral",
  4219. "offset": 759,
  4220. "length": 5,
  4221. "value": "false"
  4222. },
  4223. {
  4224. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/RemoteView.swift",
  4225. "kind": "StringLiteral",
  4226. "offset": 328,
  4227. "length": 15,
  4228. "value": "\"nuSDKService.nuSDKRemoteView\""
  4229. },
  4230. {
  4231. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4232. "kind": "StringLiteral",
  4233. "offset": 562,
  4234. "length": 32,
  4235. "value": "\"nuSDK-S5-221002o-170-14.0-14.0\""
  4236. },
  4237. {
  4238. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4239. "kind": "IntegerLiteral",
  4240. "offset": 728,
  4241. "length": 3,
  4242. "value": "170"
  4243. },
  4244. {
  4245. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4246. "kind": "IntegerLiteral",
  4247. "offset": 765,
  4248. "length": 2,
  4249. "value": "96"
  4250. },
  4251. {
  4252. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4253. "kind": "IntegerLiteral",
  4254. "offset": 770,
  4255. "length": 5,
  4256. "value": "86400"
  4257. },
  4258. {
  4259. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4260. "kind": "IntegerLiteral",
  4261. "offset": 778,
  4262. "length": 4,
  4263. "value": "1000"
  4264. },
  4265. {
  4266. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4267. "kind": "StringLiteral",
  4268. "offset": 859,
  4269. "length": 22,
  4270. "value": "\"@*)&!$)@)@!)!$)*@#)(\""
  4271. },
  4272. {
  4273. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4274. "kind": "StringLiteral",
  4275. "offset": 908,
  4276. "length": 164,
  4277. "value": "\"iOS.\""
  4278. },
  4279. {
  4280. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4281. "kind": "StringLiteral",
  4282. "offset": 965,
  4283. "length": 1,
  4284. "value": "\".\""
  4285. },
  4286. {
  4287. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4288. "kind": "StringLiteral",
  4289. "offset": 1018,
  4290. "length": 1,
  4291. "value": "\".\""
  4292. },
  4293. {
  4294. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4295. "kind": "StringLiteral",
  4296. "offset": 1071,
  4297. "length": 1,
  4298. "value": "\"\""
  4299. },
  4300. {
  4301. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4302. "kind": "BooleanLiteral",
  4303. "offset": 1210,
  4304. "length": 5,
  4305. "value": "false"
  4306. },
  4307. {
  4308. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4309. "kind": "IntegerLiteral",
  4310. "offset": 1304,
  4311. "length": 2,
  4312. "value": "10"
  4313. },
  4314. {
  4315. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4316. "kind": "IntegerLiteral",
  4317. "offset": 1340,
  4318. "length": 5,
  4319. "value": "3000"
  4320. },
  4321. {
  4322. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4323. "kind": "BooleanLiteral",
  4324. "offset": 1380,
  4325. "length": 5,
  4326. "value": "false"
  4327. },
  4328. {
  4329. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4330. "kind": "IntegerLiteral",
  4331. "offset": 1425,
  4332. "length": 5,
  4333. "value": "1000"
  4334. },
  4335. {
  4336. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4337. "kind": "IntegerLiteral",
  4338. "offset": 1461,
  4339. "length": 1,
  4340. "value": "0"
  4341. },
  4342. {
  4343. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4344. "kind": "IntegerLiteral",
  4345. "offset": 1491,
  4346. "length": 1,
  4347. "value": "0"
  4348. },
  4349. {
  4350. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4351. "kind": "IntegerLiteral",
  4352. "offset": 1537,
  4353. "length": 1,
  4354. "value": "0"
  4355. },
  4356. {
  4357. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4358. "kind": "StringLiteral",
  4359. "offset": 1571,
  4360. "length": 65,
  4361. "value": "\"[UNK,0.0,0.0,0.0,0.0m,0.0m\/s∫,0.0,0.0m,0.0m\/s,0.0m,0.0s,0.0s]\""
  4362. },
  4363. {
  4364. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4365. "kind": "BooleanLiteral",
  4366. "offset": 1809,
  4367. "length": 5,
  4368. "value": "false"
  4369. },
  4370. {
  4371. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4372. "kind": "BooleanLiteral",
  4373. "offset": 1945,
  4374. "length": 5,
  4375. "value": "false"
  4376. },
  4377. {
  4378. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4379. "kind": "BooleanLiteral",
  4380. "offset": 2133,
  4381. "length": 4,
  4382. "value": "true"
  4383. },
  4384. {
  4385. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4386. "kind": "IntegerLiteral",
  4387. "offset": 2169,
  4388. "length": 11,
  4389. "value": "1214322513"
  4390. },
  4391. {
  4392. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4393. "kind": "StringLiteral",
  4394. "offset": 2247,
  4395. "length": 19,
  4396. "value": "\"1we2Love3NUs4SDK5\""
  4397. },
  4398. {
  4399. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4400. "kind": "IntegerLiteral",
  4401. "offset": 2301,
  4402. "length": 2,
  4403. "value": "1"
  4404. },
  4405. {
  4406. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4407. "kind": "IntegerLiteral",
  4408. "offset": 2341,
  4409. "length": 2,
  4410. "value": "1"
  4411. },
  4412. {
  4413. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4414. "kind": "StringLiteral",
  4415. "offset": 2381,
  4416. "length": 3,
  4417. "value": "\"?\""
  4418. },
  4419. {
  4420. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4421. "kind": "IntegerLiteral",
  4422. "offset": 2456,
  4423. "length": 1,
  4424. "value": "0"
  4425. },
  4426. {
  4427. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4428. "kind": "IntegerLiteral",
  4429. "offset": 2497,
  4430. "length": 1,
  4431. "value": "0"
  4432. },
  4433. {
  4434. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4435. "kind": "BooleanLiteral",
  4436. "offset": 2581,
  4437. "length": 4,
  4438. "value": "true"
  4439. },
  4440. {
  4441. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4442. "kind": "BooleanLiteral",
  4443. "offset": 2650,
  4444. "length": 4,
  4445. "value": "true"
  4446. },
  4447. {
  4448. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4449. "kind": "BooleanLiteral",
  4450. "offset": 2729,
  4451. "length": 4,
  4452. "value": "true"
  4453. },
  4454. {
  4455. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4456. "kind": "StringLiteral",
  4457. "offset": 2771,
  4458. "length": 5,
  4459. "value": "\"***\""
  4460. },
  4461. {
  4462. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4463. "kind": "StringLiteral",
  4464. "offset": 2841,
  4465. "length": 5,
  4466. "value": "\"***\""
  4467. },
  4468. {
  4469. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4470. "kind": "StringLiteral",
  4471. "offset": 3315,
  4472. "length": 25,
  4473. "value": "\"dqChangeConnectionState\""
  4474. },
  4475. {
  4476. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4477. "kind": "IntegerLiteral",
  4478. "offset": 8575,
  4479. "length": 1,
  4480. "value": "0"
  4481. },
  4482. {
  4483. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4484. "kind": "IntegerLiteral",
  4485. "offset": 9955,
  4486. "length": 1,
  4487. "value": "1"
  4488. },
  4489. {
  4490. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4491. "kind": "IntegerLiteral",
  4492. "offset": 14624,
  4493. "length": 1,
  4494. "value": "0"
  4495. },
  4496. {
  4497. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4498. "kind": "IntegerLiteral",
  4499. "offset": 16452,
  4500. "length": 1,
  4501. "value": "0"
  4502. },
  4503. {
  4504. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4505. "kind": "IntegerLiteral",
  4506. "offset": 17339,
  4507. "length": 1,
  4508. "value": "0"
  4509. },
  4510. {
  4511. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4512. "kind": "IntegerLiteral",
  4513. "offset": 32256,
  4514. "length": 4,
  4515. "value": "999"
  4516. },
  4517. {
  4518. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4519. "kind": "IntegerLiteral",
  4520. "offset": 32267,
  4521. "length": 19,
  4522. "value": "998"
  4523. },
  4524. {
  4525. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4526. "kind": "IntegerLiteral",
  4527. "offset": 32293,
  4528. "length": 10,
  4529. "value": "997"
  4530. },
  4531. {
  4532. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4533. "kind": "IntegerLiteral",
  4534. "offset": 32310,
  4535. "length": 10,
  4536. "value": "996"
  4537. },
  4538. {
  4539. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4540. "kind": "IntegerLiteral",
  4541. "offset": 32327,
  4542. "length": 10,
  4543. "value": "995"
  4544. },
  4545. {
  4546. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4547. "kind": "IntegerLiteral",
  4548. "offset": 32344,
  4549. "length": 17,
  4550. "value": "994"
  4551. },
  4552. {
  4553. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4554. "kind": "IntegerLiteral",
  4555. "offset": 32368,
  4556. "length": 11,
  4557. "value": "993"
  4558. },
  4559. {
  4560. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4561. "kind": "IntegerLiteral",
  4562. "offset": 32386,
  4563. "length": 9,
  4564. "value": "992"
  4565. },
  4566. {
  4567. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4568. "kind": "IntegerLiteral",
  4569. "offset": 32402,
  4570. "length": 10,
  4571. "value": "991"
  4572. },
  4573. {
  4574. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4575. "kind": "IntegerLiteral",
  4576. "offset": 32256,
  4577. "length": 1,
  4578. "value": "999"
  4579. },
  4580. {
  4581. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4582. "kind": "IntegerLiteral",
  4583. "offset": 32267,
  4584. "length": 19,
  4585. "value": "998"
  4586. },
  4587. {
  4588. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4589. "kind": "IntegerLiteral",
  4590. "offset": 32293,
  4591. "length": 10,
  4592. "value": "997"
  4593. },
  4594. {
  4595. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4596. "kind": "IntegerLiteral",
  4597. "offset": 32310,
  4598. "length": 10,
  4599. "value": "996"
  4600. },
  4601. {
  4602. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4603. "kind": "IntegerLiteral",
  4604. "offset": 32327,
  4605. "length": 10,
  4606. "value": "995"
  4607. },
  4608. {
  4609. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4610. "kind": "IntegerLiteral",
  4611. "offset": 32344,
  4612. "length": 17,
  4613. "value": "994"
  4614. },
  4615. {
  4616. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4617. "kind": "IntegerLiteral",
  4618. "offset": 32368,
  4619. "length": 11,
  4620. "value": "993"
  4621. },
  4622. {
  4623. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4624. "kind": "IntegerLiteral",
  4625. "offset": 32386,
  4626. "length": 9,
  4627. "value": "992"
  4628. },
  4629. {
  4630. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4631. "kind": "IntegerLiteral",
  4632. "offset": 32402,
  4633. "length": 10,
  4634. "value": "991"
  4635. },
  4636. {
  4637. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4638. "kind": "IntegerLiteral",
  4639. "offset": 32256,
  4640. "length": 1,
  4641. "value": "999"
  4642. },
  4643. {
  4644. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4645. "kind": "IntegerLiteral",
  4646. "offset": 32267,
  4647. "length": 19,
  4648. "value": "998"
  4649. },
  4650. {
  4651. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4652. "kind": "IntegerLiteral",
  4653. "offset": 32293,
  4654. "length": 10,
  4655. "value": "997"
  4656. },
  4657. {
  4658. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4659. "kind": "IntegerLiteral",
  4660. "offset": 32310,
  4661. "length": 10,
  4662. "value": "996"
  4663. },
  4664. {
  4665. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4666. "kind": "IntegerLiteral",
  4667. "offset": 32327,
  4668. "length": 10,
  4669. "value": "995"
  4670. },
  4671. {
  4672. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4673. "kind": "IntegerLiteral",
  4674. "offset": 32344,
  4675. "length": 17,
  4676. "value": "994"
  4677. },
  4678. {
  4679. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4680. "kind": "IntegerLiteral",
  4681. "offset": 32368,
  4682. "length": 11,
  4683. "value": "993"
  4684. },
  4685. {
  4686. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4687. "kind": "IntegerLiteral",
  4688. "offset": 32386,
  4689. "length": 9,
  4690. "value": "992"
  4691. },
  4692. {
  4693. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4694. "kind": "IntegerLiteral",
  4695. "offset": 32402,
  4696. "length": 10,
  4697. "value": "991"
  4698. },
  4699. {
  4700. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4701. "kind": "IntegerLiteral",
  4702. "offset": 33066,
  4703. "length": 4,
  4704. "value": "999"
  4705. },
  4706. {
  4707. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4708. "kind": "IntegerLiteral",
  4709. "offset": 33077,
  4710. "length": 10,
  4711. "value": "998"
  4712. },
  4713. {
  4714. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4715. "kind": "IntegerLiteral",
  4716. "offset": 33066,
  4717. "length": 1,
  4718. "value": "999"
  4719. },
  4720. {
  4721. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4722. "kind": "IntegerLiteral",
  4723. "offset": 33077,
  4724. "length": 10,
  4725. "value": "998"
  4726. },
  4727. {
  4728. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4729. "kind": "IntegerLiteral",
  4730. "offset": 33066,
  4731. "length": 1,
  4732. "value": "999"
  4733. },
  4734. {
  4735. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/API.swift",
  4736. "kind": "IntegerLiteral",
  4737. "offset": 33077,
  4738. "length": 10,
  4739. "value": "998"
  4740. },
  4741. {
  4742. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4743. "kind": "IntegerLiteral",
  4744. "offset": 366,
  4745. "length": 2,
  4746. "value": "63"
  4747. },
  4748. {
  4749. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4750. "kind": "IntegerLiteral",
  4751. "offset": 407,
  4752. "length": 1,
  4753. "value": "0"
  4754. },
  4755. {
  4756. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4757. "kind": "BooleanLiteral",
  4758. "offset": 568,
  4759. "length": 5,
  4760. "value": "false"
  4761. },
  4762. {
  4763. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4764. "kind": "IntegerLiteral",
  4765. "offset": 946,
  4766. "length": 1,
  4767. "value": "0"
  4768. },
  4769. {
  4770. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4771. "kind": "StringLiteral",
  4772. "offset": 1033,
  4773. "length": 2,
  4774. "value": "\"\""
  4775. },
  4776. {
  4777. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4778. "kind": "IntegerLiteral",
  4779. "offset": 1113,
  4780. "length": 1,
  4781. "value": "0"
  4782. },
  4783. {
  4784. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4785. "kind": "IntegerLiteral",
  4786. "offset": 1122,
  4787. "length": 2,
  4788. "value": "32"
  4789. },
  4790. {
  4791. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4792. "kind": "IntegerLiteral",
  4793. "offset": 1166,
  4794. "length": 1,
  4795. "value": "0"
  4796. },
  4797. {
  4798. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4799. "kind": "BooleanLiteral",
  4800. "offset": 1314,
  4801. "length": 5,
  4802. "value": "false"
  4803. },
  4804. {
  4805. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4806. "kind": "BooleanLiteral",
  4807. "offset": 1362,
  4808. "length": 5,
  4809. "value": "false"
  4810. },
  4811. {
  4812. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4813. "kind": "IntegerLiteral",
  4814. "offset": 1563,
  4815. "length": 1,
  4816. "value": "0"
  4817. },
  4818. {
  4819. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4820. "kind": "BooleanLiteral",
  4821. "offset": 1747,
  4822. "length": 5,
  4823. "value": "false"
  4824. },
  4825. {
  4826. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/MediaBR.swift",
  4827. "kind": "IntegerLiteral",
  4828. "offset": 1784,
  4829. "length": 1,
  4830. "value": "0"
  4831. },
  4832. {
  4833. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4834. "kind": "IntegerLiteral",
  4835. "offset": 303,
  4836. "length": 13,
  4837. "value": "1698711494526"
  4838. },
  4839. {
  4840. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4841. "kind": "IntegerLiteral",
  4842. "offset": 577,
  4843. "length": 4,
  4844. "value": "8192"
  4845. },
  4846. {
  4847. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4848. "kind": "IntegerLiteral",
  4849. "offset": 752,
  4850. "length": 2,
  4851. "value": "32"
  4852. },
  4853. {
  4854. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4855. "kind": "IntegerLiteral",
  4856. "offset": 862,
  4857. "length": 1,
  4858. "value": "0"
  4859. },
  4860. {
  4861. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4862. "kind": "IntegerLiteral",
  4863. "offset": 892,
  4864. "length": 1,
  4865. "value": "1"
  4866. },
  4867. {
  4868. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4869. "kind": "IntegerLiteral",
  4870. "offset": 922,
  4871. "length": 1,
  4872. "value": "2"
  4873. },
  4874. {
  4875. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4876. "kind": "IntegerLiteral",
  4877. "offset": 952,
  4878. "length": 1,
  4879. "value": "3"
  4880. },
  4881. {
  4882. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4883. "kind": "IntegerLiteral",
  4884. "offset": 1007,
  4885. "length": 1,
  4886. "value": "5"
  4887. },
  4888. {
  4889. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4890. "kind": "IntegerLiteral",
  4891. "offset": 1070,
  4892. "length": 1,
  4893. "value": "7"
  4894. },
  4895. {
  4896. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4897. "kind": "IntegerLiteral",
  4898. "offset": 1100,
  4899. "length": 1,
  4900. "value": "8"
  4901. },
  4902. {
  4903. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4904. "kind": "IntegerLiteral",
  4905. "offset": 1130,
  4906. "length": 1,
  4907. "value": "9"
  4908. },
  4909. {
  4910. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4911. "kind": "IntegerLiteral",
  4912. "offset": 1239,
  4913. "length": 2,
  4914. "value": "14"
  4915. },
  4916. {
  4917. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4918. "kind": "IntegerLiteral",
  4919. "offset": 1284,
  4920. "length": 2,
  4921. "value": "15"
  4922. },
  4923. {
  4924. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4925. "kind": "IntegerLiteral",
  4926. "offset": 1328,
  4927. "length": 2,
  4928. "value": "20"
  4929. },
  4930. {
  4931. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4932. "kind": "StringLiteral",
  4933. "offset": 1462,
  4934. "length": 7,
  4935. "value": "\"\t\""
  4936. },
  4937. {
  4938. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4939. "kind": "StringLiteral",
  4940. "offset": 1698,
  4941. "length": 16,
  4942. "value": "\"dqASyncMsgLock\""
  4943. },
  4944. {
  4945. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4946. "kind": "StringLiteral",
  4947. "offset": 1833,
  4948. "length": 9,
  4949. "value": "\"~<UNK>~\""
  4950. },
  4951. {
  4952. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4953. "kind": "IntegerLiteral",
  4954. "offset": 1911,
  4955. "length": 1,
  4956. "value": "0"
  4957. },
  4958. {
  4959. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4960. "kind": "IntegerLiteral",
  4961. "offset": 1959,
  4962. "length": 1,
  4963. "value": "0"
  4964. },
  4965. {
  4966. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4967. "kind": "IntegerLiteral",
  4968. "offset": 1995,
  4969. "length": 1,
  4970. "value": "2"
  4971. },
  4972. {
  4973. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4974. "kind": "IntegerLiteral",
  4975. "offset": 1999,
  4976. "length": 2,
  4977. "value": "60"
  4978. },
  4979. {
  4980. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4981. "kind": "IntegerLiteral",
  4982. "offset": 2004,
  4983. "length": 4,
  4984. "value": "1000"
  4985. },
  4986. {
  4987. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4988. "kind": "StringLiteral",
  4989. "offset": 2196,
  4990. "length": 15,
  4991. "value": "\"dqSyncMsgLock\""
  4992. },
  4993. {
  4994. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  4995. "kind": "IntegerLiteral",
  4996. "offset": 2290,
  4997. "length": 1,
  4998. "value": "0"
  4999. },
  5000. {
  5001. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  5002. "kind": "IntegerLiteral",
  5003. "offset": 2507,
  5004. "length": 4,
  5005. "value": "666"
  5006. },
  5007. {
  5008. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  5009. "kind": "StringLiteral",
  5010. "offset": 3166,
  5011. "length": 12,
  5012. "value": "\"UserIDTest\""
  5013. },
  5014. {
  5015. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  5016. "kind": "BooleanLiteral",
  5017. "offset": 3209,
  5018. "length": 5,
  5019. "value": "false"
  5020. },
  5021. {
  5022. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionNode.swift",
  5023. "kind": "IntegerLiteral",
  5024. "offset": 3489,
  5025. "length": 1,
  5026. "value": "0"
  5027. },
  5028. {
  5029. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5030. "kind": "IntegerLiteral",
  5031. "offset": 238,
  5032. "length": 1,
  5033. "value": "2"
  5034. },
  5035. {
  5036. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5037. "kind": "IntegerLiteral",
  5038. "offset": 275,
  5039. "length": 1,
  5040. "value": "3"
  5041. },
  5042. {
  5043. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5044. "kind": "IntegerLiteral",
  5045. "offset": 279,
  5046. "length": 2,
  5047. "value": "60"
  5048. },
  5049. {
  5050. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5051. "kind": "BooleanLiteral",
  5052. "offset": 527,
  5053. "length": 5,
  5054. "value": "false"
  5055. },
  5056. {
  5057. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5058. "kind": "BooleanLiteral",
  5059. "offset": 566,
  5060. "length": 5,
  5061. "value": "false"
  5062. },
  5063. {
  5064. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5065. "kind": "IntegerLiteral",
  5066. "offset": 604,
  5067. "length": 1,
  5068. "value": "0"
  5069. },
  5070. {
  5071. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5072. "kind": "IntegerLiteral",
  5073. "offset": 637,
  5074. "length": 1,
  5075. "value": "0"
  5076. },
  5077. {
  5078. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5079. "kind": "IntegerLiteral",
  5080. "offset": 823,
  5081. "length": 1,
  5082. "value": "0"
  5083. },
  5084. {
  5085. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5086. "kind": "StringLiteral",
  5087. "offset": 958,
  5088. "length": 13,
  5089. "value": "\"dqQueueLock\""
  5090. },
  5091. {
  5092. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5093. "kind": "IntegerLiteral",
  5094. "offset": 1056,
  5095. "length": 1,
  5096. "value": "0"
  5097. },
  5098. {
  5099. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5100. "kind": "IntegerLiteral",
  5101. "offset": 1237,
  5102. "length": 1,
  5103. "value": "1"
  5104. },
  5105. {
  5106. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5107. "kind": "IntegerLiteral",
  5108. "offset": 1357,
  5109. "length": 1,
  5110. "value": "1"
  5111. },
  5112. {
  5113. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5114. "kind": "BooleanLiteral",
  5115. "offset": 1626,
  5116. "length": 5,
  5117. "value": "false"
  5118. },
  5119. {
  5120. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5121. "kind": "BooleanLiteral",
  5122. "offset": 1674,
  5123. "length": 5,
  5124. "value": "false"
  5125. },
  5126. {
  5127. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5128. "kind": "BooleanLiteral",
  5129. "offset": 5541,
  5130. "length": 5,
  5131. "value": "false"
  5132. },
  5133. {
  5134. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5135. "kind": "BooleanLiteral",
  5136. "offset": 10628,
  5137. "length": 5,
  5138. "value": "false"
  5139. },
  5140. {
  5141. "filePath": "\/Users\/w.yudoaji\/ImagiNation\/XCode\/nuSDKService\/nuSDKService\/ConnectionOIO.swift",
  5142. "kind": "StringLiteral",
  5143. "offset": 13442,
  5144. "length": 15,
  5145. "value": "\"dqRestartLock\""
  5146. }
  5147. ]
  5148. }