wasm_globals.excalidraw 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
  1. {
  2. "type": "excalidraw",
  3. "version": 2,
  4. "source": "https://marketplace.visualstudio.com/items?itemName=pomdtr.excalidraw-editor",
  5. "elements": [
  6. {
  7. "type": "rectangle",
  8. "version": 381,
  9. "versionNonce": 2068900405,
  10. "isDeleted": false,
  11. "id": "D5Ay5TxydaAe4f80l_79L",
  12. "fillStyle": "hachure",
  13. "strokeWidth": 1,
  14. "strokeStyle": "solid",
  15. "roughness": 1,
  16. "opacity": 100,
  17. "angle": 0,
  18. "x": 982.833251953125,
  19. "y": 298.00006103515625,
  20. "strokeColor": "#000000",
  21. "backgroundColor": "transparent",
  22. "width": 99.666748046875,
  23. "height": 211.00007629394523,
  24. "seed": 1123866381,
  25. "groupIds": [],
  26. "roundness": null,
  27. "boundElements": [
  28. {
  29. "id": "5S0qe2-BjQRPwuEEQ_UsU",
  30. "type": "arrow"
  31. }
  32. ],
  33. "updated": 1679660991439,
  34. "link": null,
  35. "locked": false
  36. },
  37. {
  38. "type": "text",
  39. "version": 317,
  40. "versionNonce": 1880855285,
  41. "isDeleted": false,
  42. "id": "4JTzPDASWmnx1PVSabO3A",
  43. "fillStyle": "hachure",
  44. "strokeWidth": 1,
  45. "strokeStyle": "solid",
  46. "roughness": 1,
  47. "opacity": 100,
  48. "angle": 0,
  49. "x": 914.833251953125,
  50. "y": 236.3333282470703,
  51. "strokeColor": "#000000",
  52. "backgroundColor": "transparent",
  53. "width": 103,
  54. "height": 20,
  55. "seed": 422161475,
  56. "groupIds": [],
  57. "roundness": null,
  58. "boundElements": [],
  59. "updated": 1679661135316,
  60. "link": null,
  61. "locked": false,
  62. "fontSize": 16,
  63. "fontFamily": 1,
  64. "text": "global_data:",
  65. "baseline": 14,
  66. "textAlign": "left",
  67. "verticalAlign": "top",
  68. "containerId": null,
  69. "originalText": "global_data:"
  70. },
  71. {
  72. "type": "text",
  73. "version": 183,
  74. "versionNonce": 1437992789,
  75. "isDeleted": false,
  76. "id": "HQjUeFzLlihuH1Lf8XZQq",
  77. "fillStyle": "hachure",
  78. "strokeWidth": 1,
  79. "strokeStyle": "solid",
  80. "roughness": 1,
  81. "opacity": 100,
  82. "angle": 0,
  83. "x": 528.1666870117188,
  84. "y": 324.00001525878906,
  85. "strokeColor": "#000000",
  86. "backgroundColor": "transparent",
  87. "width": 274,
  88. "height": 20,
  89. "seed": 2018585571,
  90. "groupIds": [],
  91. "roundness": null,
  92. "boundElements": [],
  93. "updated": 1679661163124,
  94. "link": null,
  95. "locked": false,
  96. "fontSize": 16,
  97. "fontFamily": 1,
  98. "text": "WASMModuleInstanceExtra::globals",
  99. "baseline": 14,
  100. "textAlign": "left",
  101. "verticalAlign": "top",
  102. "containerId": null,
  103. "originalText": "WASMModuleInstanceExtra::globals"
  104. },
  105. {
  106. "type": "arrow",
  107. "version": 453,
  108. "versionNonce": 92905717,
  109. "isDeleted": false,
  110. "id": "I86Qg5wzdmE77J5SbA7HP",
  111. "fillStyle": "hachure",
  112. "strokeWidth": 1,
  113. "strokeStyle": "solid",
  114. "roughness": 1,
  115. "opacity": 100,
  116. "angle": 0,
  117. "x": 759.0470523835444,
  118. "y": 472.4753157819668,
  119. "strokeColor": "#000000",
  120. "backgroundColor": "transparent",
  121. "width": 223.44867715016005,
  122. "height": 152.25013181880155,
  123. "seed": 661894701,
  124. "groupIds": [],
  125. "roundness": null,
  126. "boundElements": [
  127. {
  128. "type": "text",
  129. "id": "Qm7oDN7yJzVFQrCa0EE1G"
  130. }
  131. ],
  132. "updated": 1679660991440,
  133. "link": null,
  134. "locked": false,
  135. "startBinding": null,
  136. "endBinding": {
  137. "elementId": "Sd34CflTFN9Elv1dedCI1",
  138. "focus": 0.9595350520837825,
  139. "gap": 4.004209431139316
  140. },
  141. "lastCommittedPoint": null,
  142. "startArrowhead": null,
  143. "endArrowhead": "arrow",
  144. "points": [
  145. [
  146. 0,
  147. 0
  148. ],
  149. [
  150. 223.44867715016005,
  151. -152.25013181880155
  152. ]
  153. ]
  154. },
  155. {
  156. "type": "text",
  157. "version": 4,
  158. "versionNonce": 2089047221,
  159. "isDeleted": false,
  160. "id": "Qm7oDN7yJzVFQrCa0EE1G",
  161. "fillStyle": "hachure",
  162. "strokeWidth": 1,
  163. "strokeStyle": "solid",
  164. "roughness": 1,
  165. "opacity": 100,
  166. "angle": 0,
  167. "x": 844.2713909586244,
  168. "y": 386.350249872566,
  169. "strokeColor": "#000000",
  170. "backgroundColor": "#15aabf",
  171. "width": 53,
  172. "height": 20,
  173. "seed": 1720249052,
  174. "groupIds": [],
  175. "roundness": null,
  176. "boundElements": [],
  177. "updated": 1679661201718,
  178. "link": null,
  179. "locked": false,
  180. "fontSize": 16,
  181. "fontFamily": 1,
  182. "text": "offset",
  183. "baseline": 14,
  184. "textAlign": "center",
  185. "verticalAlign": "middle",
  186. "containerId": "I86Qg5wzdmE77J5SbA7HP",
  187. "originalText": "offset"
  188. },
  189. {
  190. "type": "rectangle",
  191. "version": 213,
  192. "versionNonce": 1454183483,
  193. "isDeleted": false,
  194. "id": "Sd34CflTFN9Elv1dedCI1",
  195. "fillStyle": "hachure",
  196. "strokeWidth": 1,
  197. "strokeStyle": "solid",
  198. "roughness": 1,
  199. "opacity": 100,
  200. "angle": 0,
  201. "x": 986.4999389648438,
  202. "y": 315.6666564941406,
  203. "strokeColor": "#000000",
  204. "backgroundColor": "#868e96",
  205. "width": 91.66668701171875,
  206. "height": 27.999999999999996,
  207. "seed": 357984397,
  208. "groupIds": [],
  209. "roundness": null,
  210. "boundElements": [
  211. {
  212. "id": "I86Qg5wzdmE77J5SbA7HP",
  213. "type": "arrow"
  214. }
  215. ],
  216. "updated": 1679660991440,
  217. "link": null,
  218. "locked": false
  219. },
  220. {
  221. "type": "rectangle",
  222. "version": 192,
  223. "versionNonce": 706008283,
  224. "isDeleted": false,
  225. "id": "X5nXXDxRcZputNDZp2WfW",
  226. "fillStyle": "hachure",
  227. "strokeWidth": 1,
  228. "strokeStyle": "solid",
  229. "roughness": 1,
  230. "opacity": 100,
  231. "angle": 0,
  232. "x": 984.4998779296875,
  233. "y": 350.83333587646484,
  234. "strokeColor": "#000000",
  235. "backgroundColor": "#868e96",
  236. "width": 94.3333740234375,
  237. "height": 19.333358764648438,
  238. "seed": 1611395779,
  239. "groupIds": [],
  240. "roundness": null,
  241. "boundElements": [
  242. {
  243. "id": "PFkOKGbMOcdhcpcv4DutQ",
  244. "type": "arrow"
  245. }
  246. ],
  247. "updated": 1679660991442,
  248. "link": null,
  249. "locked": false
  250. },
  251. {
  252. "type": "arrow",
  253. "version": 369,
  254. "versionNonce": 1307818581,
  255. "isDeleted": false,
  256. "id": "PFkOKGbMOcdhcpcv4DutQ",
  257. "fillStyle": "hachure",
  258. "strokeWidth": 1,
  259. "strokeStyle": "solid",
  260. "roughness": 1,
  261. "opacity": 100,
  262. "angle": 0,
  263. "x": 753.8716651262948,
  264. "y": 690.3334503173828,
  265. "strokeColor": "#000000",
  266. "backgroundColor": "transparent",
  267. "width": 220.3341412661283,
  268. "height": 341.60985534904495,
  269. "seed": 1747362403,
  270. "groupIds": [],
  271. "roundness": null,
  272. "boundElements": [
  273. {
  274. "type": "text",
  275. "id": "MPb6tVMlSBtnXhUTpZvIC"
  276. }
  277. ],
  278. "updated": 1679660991442,
  279. "link": null,
  280. "locked": false,
  281. "startBinding": null,
  282. "endBinding": {
  283. "elementId": "X5nXXDxRcZputNDZp2WfW",
  284. "gap": 5.794568769140314,
  285. "focus": 1.2182487723741706
  286. },
  287. "lastCommittedPoint": null,
  288. "startArrowhead": null,
  289. "endArrowhead": "arrow",
  290. "points": [
  291. [
  292. 0,
  293. 0
  294. ],
  295. [
  296. 220.3341412661283,
  297. -341.60985534904495
  298. ]
  299. ]
  300. },
  301. {
  302. "type": "text",
  303. "version": 4,
  304. "versionNonce": 1008745755,
  305. "isDeleted": false,
  306. "id": "MPb6tVMlSBtnXhUTpZvIC",
  307. "fillStyle": "hachure",
  308. "strokeWidth": 1,
  309. "strokeStyle": "solid",
  310. "roughness": 1,
  311. "opacity": 100,
  312. "angle": 0,
  313. "x": 837.538735759359,
  314. "y": 509.52852264286037,
  315. "strokeColor": "#000000",
  316. "backgroundColor": "#15aabf",
  317. "width": 53,
  318. "height": 20,
  319. "seed": 1880081892,
  320. "groupIds": [],
  321. "roundness": null,
  322. "boundElements": [],
  323. "updated": 1679661201719,
  324. "link": null,
  325. "locked": false,
  326. "fontSize": 16,
  327. "fontFamily": 1,
  328. "text": "offset",
  329. "baseline": 14,
  330. "textAlign": "center",
  331. "verticalAlign": "middle",
  332. "containerId": "PFkOKGbMOcdhcpcv4DutQ",
  333. "originalText": "offset"
  334. },
  335. {
  336. "type": "text",
  337. "version": 429,
  338. "versionNonce": 147921333,
  339. "isDeleted": false,
  340. "id": "5GnY6Vq9qPDS0ntZW3UOE",
  341. "fillStyle": "hachure",
  342. "strokeWidth": 1,
  343. "strokeStyle": "solid",
  344. "roughness": 1,
  345. "opacity": 100,
  346. "angle": 0,
  347. "x": 917.166748046875,
  348. "y": 259.3333282470703,
  349. "strokeColor": "#000000",
  350. "backgroundColor": "transparent",
  351. "width": 197,
  352. "height": 20,
  353. "seed": 1179957165,
  354. "groupIds": [],
  355. "roundness": null,
  356. "boundElements": [],
  357. "updated": 1679661138960,
  358. "link": null,
  359. "locked": false,
  360. "fontSize": 16,
  361. "fontFamily": 1,
  362. "text": "hold values of GLOBALs",
  363. "baseline": 14,
  364. "textAlign": "left",
  365. "verticalAlign": "top",
  366. "containerId": null,
  367. "originalText": "hold values of GLOBALs"
  368. },
  369. {
  370. "type": "rectangle",
  371. "version": 234,
  372. "versionNonce": 339097851,
  373. "isDeleted": false,
  374. "id": "FcG2LCAdKxw_z2SzLhPPr",
  375. "fillStyle": "hachure",
  376. "strokeWidth": 1,
  377. "strokeStyle": "solid",
  378. "roughness": 1,
  379. "opacity": 100,
  380. "angle": 0,
  381. "x": 548.3333129882812,
  382. "y": 351.666748046875,
  383. "strokeColor": "#000000",
  384. "backgroundColor": "transparent",
  385. "width": 228.66668701171866,
  386. "height": 299.66668701171875,
  387. "seed": 407083364,
  388. "groupIds": [],
  389. "roundness": null,
  390. "boundElements": [
  391. {
  392. "id": "_acaSZ2N5FSiuPGQjH8RA",
  393. "type": "arrow"
  394. }
  395. ],
  396. "updated": 1679660870990,
  397. "link": null,
  398. "locked": false
  399. },
  400. {
  401. "type": "rectangle",
  402. "version": 182,
  403. "versionNonce": 1735336804,
  404. "isDeleted": false,
  405. "id": "OdBdX2K4Kcn9Hq7vInwKA",
  406. "fillStyle": "hachure",
  407. "strokeWidth": 1,
  408. "strokeStyle": "solid",
  409. "roughness": 1,
  410. "opacity": 100,
  411. "angle": 0,
  412. "x": 571,
  413. "y": 387.3333740234375,
  414. "strokeColor": "#000000",
  415. "backgroundColor": "transparent",
  416. "width": 190,
  417. "height": 30,
  418. "seed": 175211612,
  419. "groupIds": [],
  420. "roundness": null,
  421. "boundElements": [
  422. {
  423. "type": "text",
  424. "id": "OZDTfM4SDGXEVbxgCAbsx"
  425. }
  426. ],
  427. "updated": 1679643912221,
  428. "link": null,
  429. "locked": false
  430. },
  431. {
  432. "type": "text",
  433. "version": 135,
  434. "versionNonce": 1695691996,
  435. "isDeleted": false,
  436. "id": "OZDTfM4SDGXEVbxgCAbsx",
  437. "fillStyle": "hachure",
  438. "strokeWidth": 1,
  439. "strokeStyle": "solid",
  440. "roughness": 1,
  441. "opacity": 100,
  442. "angle": 0,
  443. "x": 621.5,
  444. "y": 392.3333740234375,
  445. "strokeColor": "#000000",
  446. "backgroundColor": "transparent",
  447. "width": 89,
  448. "height": 20,
  449. "seed": 1994750564,
  450. "groupIds": [],
  451. "roundness": null,
  452. "boundElements": [],
  453. "updated": 1679643912221,
  454. "link": null,
  455. "locked": false,
  456. "fontSize": 16,
  457. "fontFamily": 1,
  458. "text": "uint8 type;",
  459. "baseline": 14,
  460. "textAlign": "center",
  461. "verticalAlign": "middle",
  462. "containerId": "OdBdX2K4Kcn9Hq7vInwKA",
  463. "originalText": "uint8 type;"
  464. },
  465. {
  466. "type": "text",
  467. "version": 174,
  468. "versionNonce": 2063524661,
  469. "isDeleted": false,
  470. "id": "w5el7zqw5vcK9RGIcDlFZ",
  471. "fillStyle": "hachure",
  472. "strokeWidth": 1,
  473. "strokeStyle": "solid",
  474. "roughness": 1,
  475. "opacity": 100,
  476. "angle": 0,
  477. "x": 580.9999389648438,
  478. "y": 357.8333435058594,
  479. "strokeColor": "#000000",
  480. "backgroundColor": "transparent",
  481. "width": 171,
  482. "height": 19,
  483. "seed": 1831729636,
  484. "groupIds": [],
  485. "roundness": null,
  486. "boundElements": [
  487. {
  488. "id": "_acaSZ2N5FSiuPGQjH8RA",
  489. "type": "arrow"
  490. }
  491. ],
  492. "updated": 1679660882880,
  493. "link": null,
  494. "locked": false,
  495. "fontSize": 16,
  496. "fontFamily": 3,
  497. "text": "WASMGlobalInstance",
  498. "baseline": 15,
  499. "textAlign": "left",
  500. "verticalAlign": "top",
  501. "containerId": null,
  502. "originalText": "WASMGlobalInstance"
  503. },
  504. {
  505. "type": "rectangle",
  506. "version": 147,
  507. "versionNonce": 1194277212,
  508. "isDeleted": false,
  509. "id": "gd9UxDYh5XZYBG_P0f0c2",
  510. "fillStyle": "hachure",
  511. "strokeWidth": 1,
  512. "strokeStyle": "solid",
  513. "roughness": 1,
  514. "opacity": 100,
  515. "angle": 0,
  516. "x": 568.3333129882812,
  517. "y": 424.666748046875,
  518. "strokeColor": "#000000",
  519. "backgroundColor": "transparent",
  520. "width": 195,
  521. "height": 30,
  522. "seed": 1018791012,
  523. "groupIds": [],
  524. "roundness": null,
  525. "boundElements": [
  526. {
  527. "type": "text",
  528. "id": "YeoEjoPWRnxxyB2DjNi3g"
  529. }
  530. ],
  531. "updated": 1679643912221,
  532. "link": null,
  533. "locked": false
  534. },
  535. {
  536. "type": "text",
  537. "version": 104,
  538. "versionNonce": 1904253540,
  539. "isDeleted": false,
  540. "id": "YeoEjoPWRnxxyB2DjNi3g",
  541. "fillStyle": "hachure",
  542. "strokeWidth": 1,
  543. "strokeStyle": "solid",
  544. "roughness": 1,
  545. "opacity": 100,
  546. "angle": 0,
  547. "x": 600.8333129882812,
  548. "y": 429.666748046875,
  549. "strokeColor": "#000000",
  550. "backgroundColor": "transparent",
  551. "width": 130,
  552. "height": 20,
  553. "seed": 839439588,
  554. "groupIds": [],
  555. "roundness": null,
  556. "boundElements": [],
  557. "updated": 1679643912221,
  558. "link": null,
  559. "locked": false,
  560. "fontSize": 16,
  561. "fontFamily": 1,
  562. "text": "bool is_mutable;",
  563. "baseline": 14,
  564. "textAlign": "center",
  565. "verticalAlign": "middle",
  566. "containerId": "gd9UxDYh5XZYBG_P0f0c2",
  567. "originalText": "bool is_mutable;"
  568. },
  569. {
  570. "type": "rectangle",
  571. "version": 91,
  572. "versionNonce": 1480043996,
  573. "isDeleted": false,
  574. "id": "MB23InQWKES3OnYie8bbP",
  575. "fillStyle": "hachure",
  576. "strokeWidth": 1,
  577. "strokeStyle": "solid",
  578. "roughness": 1,
  579. "opacity": 100,
  580. "angle": 0,
  581. "x": 569.6666870117188,
  582. "y": 460.666748046875,
  583. "strokeColor": "#000000",
  584. "backgroundColor": "transparent",
  585. "width": 195,
  586. "height": 30,
  587. "seed": 1468762332,
  588. "groupIds": [],
  589. "roundness": null,
  590. "boundElements": [
  591. {
  592. "type": "text",
  593. "id": "--vP8lM62PEnMBhgFRqTM"
  594. }
  595. ],
  596. "updated": 1679643912221,
  597. "link": null,
  598. "locked": false
  599. },
  600. {
  601. "type": "text",
  602. "version": 63,
  603. "versionNonce": 717729252,
  604. "isDeleted": false,
  605. "id": "--vP8lM62PEnMBhgFRqTM",
  606. "fillStyle": "hachure",
  607. "strokeWidth": 1,
  608. "strokeStyle": "solid",
  609. "roughness": 1,
  610. "opacity": 100,
  611. "angle": 0,
  612. "x": 582.6666870117188,
  613. "y": 465.666748046875,
  614. "strokeColor": "#000000",
  615. "backgroundColor": "transparent",
  616. "width": 169,
  617. "height": 20,
  618. "seed": 695551844,
  619. "groupIds": [],
  620. "roundness": null,
  621. "boundElements": [],
  622. "updated": 1679643912221,
  623. "link": null,
  624. "locked": false,
  625. "fontSize": 16,
  626. "fontFamily": 1,
  627. "text": "uint32 data_offset;",
  628. "baseline": 14,
  629. "textAlign": "center",
  630. "verticalAlign": "middle",
  631. "containerId": "MB23InQWKES3OnYie8bbP",
  632. "originalText": "uint32 data_offset;"
  633. },
  634. {
  635. "type": "rectangle",
  636. "version": 111,
  637. "versionNonce": 155030108,
  638. "isDeleted": false,
  639. "id": "pUUma4amJviNKdfn5otpb",
  640. "fillStyle": "hachure",
  641. "strokeWidth": 1,
  642. "strokeStyle": "solid",
  643. "roughness": 1,
  644. "opacity": 100,
  645. "angle": 0,
  646. "x": 577.6666870117188,
  647. "y": 497.33338928222656,
  648. "strokeColor": "#000000",
  649. "backgroundColor": "transparent",
  650. "width": 180.33331298828125,
  651. "height": 30,
  652. "seed": 1550527844,
  653. "groupIds": [],
  654. "roundness": null,
  655. "boundElements": [
  656. {
  657. "type": "text",
  658. "id": "JybtW1PyDYQa00JaSYsuo"
  659. }
  660. ],
  661. "updated": 1679643912221,
  662. "link": null,
  663. "locked": false
  664. },
  665. {
  666. "type": "text",
  667. "version": 63,
  668. "versionNonce": 1625313636,
  669. "isDeleted": false,
  670. "id": "JybtW1PyDYQa00JaSYsuo",
  671. "fillStyle": "hachure",
  672. "strokeWidth": 1,
  673. "strokeStyle": "solid",
  674. "roughness": 1,
  675. "opacity": 100,
  676. "angle": 0,
  677. "x": 618.8333435058594,
  678. "y": 502.33338928222656,
  679. "strokeColor": "#000000",
  680. "backgroundColor": "transparent",
  681. "width": 98,
  682. "height": 20,
  683. "seed": 1952693084,
  684. "groupIds": [],
  685. "roundness": null,
  686. "boundElements": [],
  687. "updated": 1679643912221,
  688. "link": null,
  689. "locked": false,
  690. "fontSize": 16,
  691. "fontFamily": 1,
  692. "text": "initial_value",
  693. "baseline": 14,
  694. "textAlign": "center",
  695. "verticalAlign": "middle",
  696. "containerId": "pUUma4amJviNKdfn5otpb",
  697. "originalText": "initial_value"
  698. },
  699. {
  700. "type": "rectangle",
  701. "version": 91,
  702. "versionNonce": 1494410972,
  703. "isDeleted": false,
  704. "id": "CewuQtNj0ZC6Ogsq68ite",
  705. "fillStyle": "hachure",
  706. "strokeWidth": 1,
  707. "strokeStyle": "solid",
  708. "roughness": 1,
  709. "opacity": 100,
  710. "angle": 0,
  711. "x": 569.6666870117188,
  712. "y": 546.6667022705078,
  713. "strokeColor": "#000000",
  714. "backgroundColor": "transparent",
  715. "width": 191,
  716. "height": 30,
  717. "seed": 10317668,
  718. "groupIds": [],
  719. "roundness": null,
  720. "boundElements": [
  721. {
  722. "type": "text",
  723. "id": "4xSFF2vFZIoA0G7GTeC8-"
  724. }
  725. ],
  726. "updated": 1679643912221,
  727. "link": null,
  728. "locked": false
  729. },
  730. {
  731. "type": "text",
  732. "version": 63,
  733. "versionNonce": 588809444,
  734. "isDeleted": false,
  735. "id": "4xSFF2vFZIoA0G7GTeC8-",
  736. "fillStyle": "hachure",
  737. "strokeWidth": 1,
  738. "strokeStyle": "solid",
  739. "roughness": 1,
  740. "opacity": 100,
  741. "angle": 0,
  742. "x": 588.1666870117188,
  743. "y": 551.6667022705078,
  744. "strokeColor": "#000000",
  745. "backgroundColor": "transparent",
  746. "width": 154,
  747. "height": 20,
  748. "seed": 1109403492,
  749. "groupIds": [],
  750. "roundness": null,
  751. "boundElements": [],
  752. "updated": 1679643912221,
  753. "link": null,
  754. "locked": false,
  755. "fontSize": 16,
  756. "fontFamily": 1,
  757. "text": "import_module_inst",
  758. "baseline": 14,
  759. "textAlign": "center",
  760. "verticalAlign": "middle",
  761. "containerId": "CewuQtNj0ZC6Ogsq68ite",
  762. "originalText": "import_module_inst"
  763. },
  764. {
  765. "type": "rectangle",
  766. "version": 123,
  767. "versionNonce": 474590044,
  768. "isDeleted": false,
  769. "id": "AuHfz77U4KxNTCmKvW6bJ",
  770. "fillStyle": "hachure",
  771. "strokeWidth": 1,
  772. "strokeStyle": "solid",
  773. "roughness": 1,
  774. "opacity": 100,
  775. "angle": 0,
  776. "x": 573,
  777. "y": 589.3333892822266,
  778. "strokeColor": "#000000",
  779. "backgroundColor": "transparent",
  780. "width": 184,
  781. "height": 30,
  782. "seed": 2058570588,
  783. "groupIds": [],
  784. "roundness": null,
  785. "boundElements": [
  786. {
  787. "type": "text",
  788. "id": "h7MfnIO2f08rV_U7840Zp"
  789. }
  790. ],
  791. "updated": 1679643912221,
  792. "link": null,
  793. "locked": false
  794. },
  795. {
  796. "type": "text",
  797. "version": 75,
  798. "versionNonce": 1727940708,
  799. "isDeleted": false,
  800. "id": "h7MfnIO2f08rV_U7840Zp",
  801. "fillStyle": "hachure",
  802. "strokeWidth": 1,
  803. "strokeStyle": "solid",
  804. "roughness": 1,
  805. "opacity": 100,
  806. "angle": 0,
  807. "x": 591,
  808. "y": 594.3333892822266,
  809. "strokeColor": "#000000",
  810. "backgroundColor": "transparent",
  811. "width": 148,
  812. "height": 20,
  813. "seed": 1917882340,
  814. "groupIds": [],
  815. "roundness": null,
  816. "boundElements": [],
  817. "updated": 1679643912221,
  818. "link": null,
  819. "locked": false,
  820. "fontSize": 16,
  821. "fontFamily": 1,
  822. "text": "import_global_inst",
  823. "baseline": 14,
  824. "textAlign": "center",
  825. "verticalAlign": "middle",
  826. "containerId": "AuHfz77U4KxNTCmKvW6bJ",
  827. "originalText": "import_global_inst"
  828. },
  829. {
  830. "type": "text",
  831. "version": 134,
  832. "versionNonce": 1361481211,
  833. "isDeleted": false,
  834. "id": "Clf1NqZqRXJuRl-CQgx_u",
  835. "fillStyle": "hachure",
  836. "strokeWidth": 1,
  837. "strokeStyle": "solid",
  838. "roughness": 1,
  839. "opacity": 100,
  840. "angle": 0,
  841. "x": 232.6667175292969,
  842. "y": 454.6668395996094,
  843. "strokeColor": "#000000",
  844. "backgroundColor": "transparent",
  845. "width": 237,
  846. "height": 20,
  847. "seed": 1711793252,
  848. "groupIds": [],
  849. "roundness": null,
  850. "boundElements": [
  851. {
  852. "id": "_acaSZ2N5FSiuPGQjH8RA",
  853. "type": "arrow"
  854. }
  855. ],
  856. "updated": 1679661000688,
  857. "link": null,
  858. "locked": false,
  859. "fontSize": 16,
  860. "fontFamily": 1,
  861. "text": "WASMGlobalInstance *globals;",
  862. "baseline": 14,
  863. "textAlign": "left",
  864. "verticalAlign": "top",
  865. "containerId": null,
  866. "originalText": "WASMGlobalInstance *globals;"
  867. },
  868. {
  869. "type": "text",
  870. "version": 30,
  871. "versionNonce": 1504826724,
  872. "isDeleted": false,
  873. "id": "Mj7l2FOHQ7NNAkTiGq7T_",
  874. "fillStyle": "hachure",
  875. "strokeWidth": 1,
  876. "strokeStyle": "solid",
  877. "roughness": 1,
  878. "opacity": 100,
  879. "angle": 0,
  880. "x": 641,
  881. "y": 631.0001373291016,
  882. "strokeColor": "#000000",
  883. "backgroundColor": "transparent",
  884. "width": 29,
  885. "height": 20,
  886. "seed": 1401608924,
  887. "groupIds": [],
  888. "roundness": null,
  889. "boundElements": [],
  890. "updated": 1679643959727,
  891. "link": null,
  892. "locked": false,
  893. "fontSize": 16,
  894. "fontFamily": 1,
  895. "text": "[0]",
  896. "baseline": 14,
  897. "textAlign": "left",
  898. "verticalAlign": "top",
  899. "containerId": null,
  900. "originalText": "[0]"
  901. },
  902. {
  903. "type": "rectangle",
  904. "version": 52,
  905. "versionNonce": 894397020,
  906. "isDeleted": false,
  907. "id": "CGwcN3BpsJaehLlHjEn6l",
  908. "fillStyle": "hachure",
  909. "strokeWidth": 1,
  910. "strokeStyle": "solid",
  911. "roughness": 1,
  912. "opacity": 100,
  913. "angle": 0,
  914. "x": 548.6666259765625,
  915. "y": 653.0000457763672,
  916. "strokeColor": "#000000",
  917. "backgroundColor": "#15aabf",
  918. "width": 227,
  919. "height": 87,
  920. "seed": 253331684,
  921. "groupIds": [],
  922. "roundness": null,
  923. "boundElements": [],
  924. "updated": 1679644065258,
  925. "link": null,
  926. "locked": false
  927. },
  928. {
  929. "type": "rectangle",
  930. "version": 107,
  931. "versionNonce": 1424372828,
  932. "isDeleted": false,
  933. "id": "YjTAPKLSA0k-ml5j0Ho59",
  934. "fillStyle": "hachure",
  935. "strokeWidth": 1,
  936. "strokeStyle": "solid",
  937. "roughness": 1,
  938. "opacity": 100,
  939. "angle": 0,
  940. "x": 565.1666259765625,
  941. "y": 671.6667327880859,
  942. "strokeColor": "#000000",
  943. "backgroundColor": "transparent",
  944. "width": 195,
  945. "height": 30,
  946. "seed": 192441436,
  947. "groupIds": [],
  948. "roundness": null,
  949. "boundElements": [
  950. {
  951. "type": "text",
  952. "id": "jmlAM3nHo1CJVxGKppt1O"
  953. }
  954. ],
  955. "updated": 1679643968867,
  956. "link": null,
  957. "locked": false
  958. },
  959. {
  960. "type": "text",
  961. "version": 78,
  962. "versionNonce": 2064306020,
  963. "isDeleted": false,
  964. "id": "jmlAM3nHo1CJVxGKppt1O",
  965. "fillStyle": "hachure",
  966. "strokeWidth": 1,
  967. "strokeStyle": "solid",
  968. "roughness": 1,
  969. "opacity": 100,
  970. "angle": 0,
  971. "x": 578.1666259765625,
  972. "y": 676.6667327880859,
  973. "strokeColor": "#000000",
  974. "backgroundColor": "transparent",
  975. "width": 169,
  976. "height": 20,
  977. "seed": 1473779556,
  978. "groupIds": [],
  979. "roundness": null,
  980. "boundElements": [],
  981. "updated": 1679643968868,
  982. "link": null,
  983. "locked": false,
  984. "fontSize": 16,
  985. "fontFamily": 1,
  986. "text": "uint32 data_offset;",
  987. "baseline": 14,
  988. "textAlign": "center",
  989. "verticalAlign": "middle",
  990. "containerId": "YjTAPKLSA0k-ml5j0Ho59",
  991. "originalText": "uint32 data_offset;"
  992. },
  993. {
  994. "type": "text",
  995. "version": 32,
  996. "versionNonce": 1512962780,
  997. "isDeleted": false,
  998. "id": "QnLh-KZNv_MoD4Ak5RsLk",
  999. "fillStyle": "hachure",
  1000. "strokeWidth": 1,
  1001. "strokeStyle": "solid",
  1002. "roughness": 1,
  1003. "opacity": 100,
  1004. "angle": 0,
  1005. "x": 636.1666259765625,
  1006. "y": 719.0000457763672,
  1007. "strokeColor": "#000000",
  1008. "backgroundColor": "transparent",
  1009. "width": 22,
  1010. "height": 20,
  1011. "seed": 927449564,
  1012. "groupIds": [],
  1013. "roundness": null,
  1014. "boundElements": [],
  1015. "updated": 1679643979051,
  1016. "link": null,
  1017. "locked": false,
  1018. "fontSize": 16,
  1019. "fontFamily": 1,
  1020. "text": "[1]",
  1021. "baseline": 14,
  1022. "textAlign": "left",
  1023. "verticalAlign": "top",
  1024. "containerId": null,
  1025. "originalText": "[1]"
  1026. },
  1027. {
  1028. "type": "rectangle",
  1029. "version": 62,
  1030. "versionNonce": 626330844,
  1031. "isDeleted": false,
  1032. "id": "F26JZDrwDBDSk5o5kcV_E",
  1033. "fillStyle": "hachure",
  1034. "strokeWidth": 1,
  1035. "strokeStyle": "solid",
  1036. "roughness": 1,
  1037. "opacity": 100,
  1038. "angle": 0,
  1039. "x": 547.3333129882812,
  1040. "y": 739.6667327880859,
  1041. "strokeColor": "#000000",
  1042. "backgroundColor": "#15aabf",
  1043. "width": 227.666748046875,
  1044. "height": 60.666656494140625,
  1045. "seed": 725179740,
  1046. "groupIds": [],
  1047. "roundness": null,
  1048. "boundElements": [],
  1049. "updated": 1679644057644,
  1050. "link": null,
  1051. "locked": false
  1052. },
  1053. {
  1054. "type": "text",
  1055. "version": 71,
  1056. "versionNonce": 1658992100,
  1057. "isDeleted": false,
  1058. "id": "H6cL4L0PUBLB5An3KDf-i",
  1059. "fillStyle": "hachure",
  1060. "strokeWidth": 1,
  1061. "strokeStyle": "solid",
  1062. "roughness": 1,
  1063. "opacity": 100,
  1064. "angle": 0,
  1065. "x": 636.6666259765625,
  1066. "y": 784.0003204345703,
  1067. "strokeColor": "#000000",
  1068. "backgroundColor": "transparent",
  1069. "width": 31,
  1070. "height": 20,
  1071. "seed": 83711068,
  1072. "groupIds": [],
  1073. "roundness": null,
  1074. "boundElements": [],
  1075. "updated": 1679644496025,
  1076. "link": null,
  1077. "locked": false,
  1078. "fontSize": 16,
  1079. "fontFamily": 1,
  1080. "text": "[...]",
  1081. "baseline": 14,
  1082. "textAlign": "left",
  1083. "verticalAlign": "top",
  1084. "containerId": null,
  1085. "originalText": "[...]"
  1086. },
  1087. {
  1088. "type": "rectangle",
  1089. "version": 158,
  1090. "versionNonce": 208125412,
  1091. "isDeleted": false,
  1092. "id": "M6cl8S-GRJkkRSQrUxzJV",
  1093. "fillStyle": "hachure",
  1094. "strokeWidth": 1,
  1095. "strokeStyle": "solid",
  1096. "roughness": 1,
  1097. "opacity": 100,
  1098. "angle": 0,
  1099. "x": 566.833251953125,
  1100. "y": 747.6667327880859,
  1101. "strokeColor": "#000000",
  1102. "backgroundColor": "transparent",
  1103. "width": 195,
  1104. "height": 30,
  1105. "seed": 997959652,
  1106. "groupIds": [],
  1107. "roundness": null,
  1108. "boundElements": [
  1109. {
  1110. "type": "text",
  1111. "id": "DrpXGgZIT2RAhz4L6EM2n"
  1112. }
  1113. ],
  1114. "updated": 1679644019993,
  1115. "link": null,
  1116. "locked": false
  1117. },
  1118. {
  1119. "type": "text",
  1120. "version": 128,
  1121. "versionNonce": 493257308,
  1122. "isDeleted": false,
  1123. "id": "DrpXGgZIT2RAhz4L6EM2n",
  1124. "fillStyle": "hachure",
  1125. "strokeWidth": 1,
  1126. "strokeStyle": "solid",
  1127. "roughness": 1,
  1128. "opacity": 100,
  1129. "angle": 0,
  1130. "x": 579.833251953125,
  1131. "y": 752.6667327880859,
  1132. "strokeColor": "#000000",
  1133. "backgroundColor": "transparent",
  1134. "width": 169,
  1135. "height": 20,
  1136. "seed": 157169756,
  1137. "groupIds": [],
  1138. "roundness": null,
  1139. "boundElements": [],
  1140. "updated": 1679644019993,
  1141. "link": null,
  1142. "locked": false,
  1143. "fontSize": 16,
  1144. "fontFamily": 1,
  1145. "text": "uint32 data_offset;",
  1146. "baseline": 14,
  1147. "textAlign": "center",
  1148. "verticalAlign": "middle",
  1149. "containerId": "M6cl8S-GRJkkRSQrUxzJV",
  1150. "originalText": "uint32 data_offset;"
  1151. },
  1152. {
  1153. "type": "rectangle",
  1154. "version": 223,
  1155. "versionNonce": 680765365,
  1156. "isDeleted": false,
  1157. "id": "nPxM8HePICecTvRXbdEeU",
  1158. "fillStyle": "hachure",
  1159. "strokeWidth": 1,
  1160. "strokeStyle": "solid",
  1161. "roughness": 1,
  1162. "opacity": 100,
  1163. "angle": 0,
  1164. "x": 983.333251953125,
  1165. "y": 378.1666793823242,
  1166. "strokeColor": "#000000",
  1167. "backgroundColor": "#868e96",
  1168. "width": 97.66668701171875,
  1169. "height": 30.000015258789062,
  1170. "seed": 1516156124,
  1171. "groupIds": [],
  1172. "roundness": null,
  1173. "boundElements": [
  1174. {
  1175. "id": "Y_Dw9hCEvutA3MjjHfyJK",
  1176. "type": "arrow"
  1177. }
  1178. ],
  1179. "updated": 1679660991443,
  1180. "link": null,
  1181. "locked": false
  1182. },
  1183. {
  1184. "type": "arrow",
  1185. "version": 165,
  1186. "versionNonce": 430152219,
  1187. "isDeleted": false,
  1188. "id": "Y_Dw9hCEvutA3MjjHfyJK",
  1189. "fillStyle": "hachure",
  1190. "strokeWidth": 1,
  1191. "strokeStyle": "solid",
  1192. "roughness": 1,
  1193. "opacity": 100,
  1194. "angle": 0,
  1195. "x": 756.6666259765625,
  1196. "y": 766.3333892822266,
  1197. "strokeColor": "#000000",
  1198. "backgroundColor": "transparent",
  1199. "width": 217.14296385054604,
  1200. "height": 385.92617569738337,
  1201. "seed": 703298780,
  1202. "groupIds": [],
  1203. "roundness": null,
  1204. "boundElements": [
  1205. {
  1206. "type": "text",
  1207. "id": "MraNxq38RWxCBOb3EhIue"
  1208. }
  1209. ],
  1210. "updated": 1679660991443,
  1211. "link": null,
  1212. "locked": false,
  1213. "startBinding": null,
  1214. "endBinding": {
  1215. "elementId": "nPxM8HePICecTvRXbdEeU",
  1216. "gap": 9.523662126016394,
  1217. "focus": 1.1442737969660202
  1218. },
  1219. "lastCommittedPoint": null,
  1220. "startArrowhead": null,
  1221. "endArrowhead": "arrow",
  1222. "points": [
  1223. [
  1224. 0,
  1225. 0
  1226. ],
  1227. [
  1228. 217.14296385054604,
  1229. -385.92617569738337
  1230. ]
  1231. ]
  1232. },
  1233. {
  1234. "type": "text",
  1235. "version": 4,
  1236. "versionNonce": 1122104853,
  1237. "isDeleted": false,
  1238. "id": "MraNxq38RWxCBOb3EhIue",
  1239. "fillStyle": "hachure",
  1240. "strokeWidth": 1,
  1241. "strokeStyle": "solid",
  1242. "roughness": 1,
  1243. "opacity": 100,
  1244. "angle": 0,
  1245. "x": 838.7381079018355,
  1246. "y": 563.3703014335349,
  1247. "strokeColor": "#000000",
  1248. "backgroundColor": "#15aabf",
  1249. "width": 53,
  1250. "height": 20,
  1251. "seed": 1058889828,
  1252. "groupIds": [],
  1253. "roundness": null,
  1254. "boundElements": [],
  1255. "updated": 1679661201730,
  1256. "link": null,
  1257. "locked": false,
  1258. "fontSize": 16,
  1259. "fontFamily": 1,
  1260. "text": "offset",
  1261. "baseline": 14,
  1262. "textAlign": "center",
  1263. "verticalAlign": "middle",
  1264. "containerId": "Y_Dw9hCEvutA3MjjHfyJK",
  1265. "originalText": "offset"
  1266. },
  1267. {
  1268. "type": "text",
  1269. "version": 239,
  1270. "versionNonce": 551950564,
  1271. "isDeleted": false,
  1272. "id": "O5mHltv55Fs4-vM6wNcf-",
  1273. "fillStyle": "hachure",
  1274. "strokeWidth": 1,
  1275. "strokeStyle": "solid",
  1276. "roughness": 1,
  1277. "opacity": 100,
  1278. "angle": 0,
  1279. "x": 226.99996948242188,
  1280. "y": 655.0000457763672,
  1281. "strokeColor": "#000000",
  1282. "backgroundColor": "transparent",
  1283. "width": 164,
  1284. "height": 20,
  1285. "seed": 352849508,
  1286. "groupIds": [],
  1287. "roundness": null,
  1288. "boundElements": [
  1289. {
  1290. "id": "1QAmzR8Zkk8scUA3tqI0k",
  1291. "type": "arrow"
  1292. }
  1293. ],
  1294. "updated": 1679644753215,
  1295. "link": null,
  1296. "locked": false,
  1297. "fontSize": 16,
  1298. "fontFamily": 1,
  1299. "text": "WASMGlobalInstance",
  1300. "baseline": 14,
  1301. "textAlign": "left",
  1302. "verticalAlign": "top",
  1303. "containerId": null,
  1304. "originalText": "WASMGlobalInstance"
  1305. },
  1306. {
  1307. "type": "rectangle",
  1308. "version": 104,
  1309. "versionNonce": 219644132,
  1310. "isDeleted": false,
  1311. "id": "CpOJESdMD1E9wBe2Gkkvf",
  1312. "fillStyle": "hachure",
  1313. "strokeWidth": 1,
  1314. "strokeStyle": "dashed",
  1315. "roughness": 1,
  1316. "opacity": 100,
  1317. "angle": 0,
  1318. "x": 216.66665649414062,
  1319. "y": 681.6666412353516,
  1320. "strokeColor": "#000000",
  1321. "backgroundColor": "transparent",
  1322. "width": 180.33331298828125,
  1323. "height": 46.666778564453125,
  1324. "seed": 705788380,
  1325. "groupIds": [],
  1326. "roundness": null,
  1327. "boundElements": [],
  1328. "updated": 1679644728661,
  1329. "link": null,
  1330. "locked": false
  1331. },
  1332. {
  1333. "type": "arrow",
  1334. "version": 153,
  1335. "versionNonce": 296383867,
  1336. "isDeleted": false,
  1337. "id": "1QAmzR8Zkk8scUA3tqI0k",
  1338. "fillStyle": "hachure",
  1339. "strokeWidth": 1,
  1340. "strokeStyle": "solid",
  1341. "roughness": 1,
  1342. "opacity": 100,
  1343. "angle": 0,
  1344. "x": 583.9999694824219,
  1345. "y": 602.3333587646484,
  1346. "strokeColor": "#000000",
  1347. "backgroundColor": "#15aabf",
  1348. "width": 179.2173434297432,
  1349. "height": 75.12469349055664,
  1350. "seed": 869061340,
  1351. "groupIds": [],
  1352. "roundness": null,
  1353. "boundElements": [
  1354. {
  1355. "type": "text",
  1356. "id": "N9fS0DKeDh1d_Ueyopb9v"
  1357. }
  1358. ],
  1359. "updated": 1679661068533,
  1360. "link": null,
  1361. "locked": false,
  1362. "startBinding": null,
  1363. "endBinding": {
  1364. "elementId": "O5mHltv55Fs4-vM6wNcf-",
  1365. "focus": 1.1855962422681312,
  1366. "gap": 14.0001220703125
  1367. },
  1368. "lastCommittedPoint": null,
  1369. "startArrowhead": null,
  1370. "endArrowhead": "arrow",
  1371. "points": [
  1372. [
  1373. 0,
  1374. 0
  1375. ],
  1376. [
  1377. -179.2173434297432,
  1378. 75.12469349055664
  1379. ]
  1380. ]
  1381. },
  1382. {
  1383. "id": "N9fS0DKeDh1d_Ueyopb9v",
  1384. "type": "text",
  1385. "x": 449.39129776755027,
  1386. "y": 629.8957055099268,
  1387. "width": 90,
  1388. "height": 20,
  1389. "angle": 0,
  1390. "strokeColor": "#000000",
  1391. "backgroundColor": "transparent",
  1392. "fillStyle": "hachure",
  1393. "strokeWidth": 1,
  1394. "strokeStyle": "solid",
  1395. "roughness": 1,
  1396. "opacity": 100,
  1397. "groupIds": [],
  1398. "roundness": null,
  1399. "seed": 339183189,
  1400. "version": 24,
  1401. "versionNonce": 270159573,
  1402. "isDeleted": false,
  1403. "boundElements": null,
  1404. "updated": 1679661092509,
  1405. "link": null,
  1406. "locked": false,
  1407. "text": "when import",
  1408. "fontSize": 16,
  1409. "fontFamily": 1,
  1410. "textAlign": "center",
  1411. "verticalAlign": "middle",
  1412. "baseline": 14,
  1413. "containerId": "1QAmzR8Zkk8scUA3tqI0k",
  1414. "originalText": "when import"
  1415. },
  1416. {
  1417. "type": "rectangle",
  1418. "version": 59,
  1419. "versionNonce": 96174172,
  1420. "isDeleted": false,
  1421. "id": "oDs6sXYd2cCCUTlDuFyfK",
  1422. "fillStyle": "hachure",
  1423. "strokeWidth": 1,
  1424. "strokeStyle": "dashed",
  1425. "roughness": 1,
  1426. "opacity": 100,
  1427. "angle": 0,
  1428. "x": 199.66659545898438,
  1429. "y": 599.9999847412109,
  1430. "strokeColor": "#000000",
  1431. "backgroundColor": "transparent",
  1432. "width": 236.33343505859375,
  1433. "height": 196.3333740234375,
  1434. "seed": 1531972708,
  1435. "groupIds": [],
  1436. "roundness": null,
  1437. "boundElements": [],
  1438. "updated": 1679644717838,
  1439. "link": null,
  1440. "locked": false
  1441. },
  1442. {
  1443. "type": "text",
  1444. "version": 72,
  1445. "versionNonce": 1711293284,
  1446. "isDeleted": false,
  1447. "id": "Gyz12ttmraGX-CaCTWl3h",
  1448. "fillStyle": "hachure",
  1449. "strokeWidth": 1,
  1450. "strokeStyle": "solid",
  1451. "roughness": 1,
  1452. "opacity": 100,
  1453. "angle": 0,
  1454. "x": 191.99990844726562,
  1455. "y": 576.3333892822266,
  1456. "strokeColor": "#000000",
  1457. "backgroundColor": "transparent",
  1458. "width": 239,
  1459. "height": 20,
  1460. "seed": 683171044,
  1461. "groupIds": [],
  1462. "roundness": null,
  1463. "boundElements": [
  1464. {
  1465. "id": "957MNrV_zCOsf-ssBBkla",
  1466. "type": "arrow"
  1467. }
  1468. ],
  1469. "updated": 1679644717838,
  1470. "link": null,
  1471. "locked": false,
  1472. "fontSize": 16,
  1473. "fontFamily": 1,
  1474. "text": "WASMModuleInstance (second)",
  1475. "baseline": 14,
  1476. "textAlign": "left",
  1477. "verticalAlign": "top",
  1478. "containerId": null,
  1479. "originalText": "WASMModuleInstance (second)"
  1480. },
  1481. {
  1482. "type": "text",
  1483. "version": 185,
  1484. "versionNonce": 1644000405,
  1485. "isDeleted": false,
  1486. "id": "7TYuQ_yCiwRN4oz8zkdGb",
  1487. "fillStyle": "hachure",
  1488. "strokeWidth": 1,
  1489. "strokeStyle": "solid",
  1490. "roughness": 1,
  1491. "opacity": 100,
  1492. "angle": 0,
  1493. "x": 38.33337402343753,
  1494. "y": 248.66676330566406,
  1495. "strokeColor": "#d9480f",
  1496. "backgroundColor": "transparent",
  1497. "width": 171,
  1498. "height": 19,
  1499. "seed": 1694546652,
  1500. "groupIds": [],
  1501. "roundness": null,
  1502. "boundElements": [],
  1503. "updated": 1679661000688,
  1504. "link": null,
  1505. "locked": false,
  1506. "fontSize": 16,
  1507. "fontFamily": 3,
  1508. "text": "WASMModuleInstance",
  1509. "baseline": 15,
  1510. "textAlign": "left",
  1511. "verticalAlign": "top",
  1512. "containerId": null,
  1513. "originalText": "WASMModuleInstance"
  1514. },
  1515. {
  1516. "type": "rectangle",
  1517. "version": 151,
  1518. "versionNonce": 1152705621,
  1519. "isDeleted": false,
  1520. "id": "DN3tWnhyoeDPQR_-BYeYI",
  1521. "fillStyle": "hachure",
  1522. "strokeWidth": 1,
  1523. "strokeStyle": "solid",
  1524. "roughness": 1,
  1525. "opacity": 100,
  1526. "angle": 0,
  1527. "x": 36.666656494140625,
  1528. "y": 269.00010681152344,
  1529. "strokeColor": "#000000",
  1530. "backgroundColor": "transparent",
  1531. "width": 202.00003051757815,
  1532. "height": 124.66665649414062,
  1533. "seed": 693300324,
  1534. "groupIds": [],
  1535. "roundness": null,
  1536. "boundElements": [
  1537. {
  1538. "id": "-n6vwSfIOzGpAxjpRyuNZ",
  1539. "type": "arrow"
  1540. }
  1541. ],
  1542. "updated": 1679661004485,
  1543. "link": null,
  1544. "locked": false
  1545. },
  1546. {
  1547. "type": "text",
  1548. "version": 150,
  1549. "versionNonce": 458299605,
  1550. "isDeleted": false,
  1551. "id": "K0JMv-qZGU4i9Or0Xz4Gg",
  1552. "fillStyle": "hachure",
  1553. "strokeWidth": 1,
  1554. "strokeStyle": "solid",
  1555. "roughness": 1,
  1556. "opacity": 100,
  1557. "angle": 0,
  1558. "x": 246.33328247070315,
  1559. "y": 399.33343505859375,
  1560. "strokeColor": "#000000",
  1561. "backgroundColor": "transparent",
  1562. "width": 218,
  1563. "height": 19,
  1564. "seed": 881476572,
  1565. "groupIds": [],
  1566. "roundness": null,
  1567. "boundElements": [],
  1568. "updated": 1679661029361,
  1569. "link": null,
  1570. "locked": false,
  1571. "fontSize": 16,
  1572. "fontFamily": 3,
  1573. "text": "WASMModuleInstanceExtra",
  1574. "baseline": 15,
  1575. "textAlign": "left",
  1576. "verticalAlign": "top",
  1577. "containerId": null,
  1578. "originalText": "WASMModuleInstanceExtra"
  1579. },
  1580. {
  1581. "type": "rectangle",
  1582. "version": 169,
  1583. "versionNonce": 769392085,
  1584. "isDeleted": false,
  1585. "id": "CERoUCjzlaXjrdr4PSxtB",
  1586. "fillStyle": "hachure",
  1587. "strokeWidth": 1,
  1588. "strokeStyle": "solid",
  1589. "roughness": 1,
  1590. "opacity": 100,
  1591. "angle": 0,
  1592. "x": 225.33328247070312,
  1593. "y": 428.00010681152344,
  1594. "strokeColor": "#000000",
  1595. "backgroundColor": "transparent",
  1596. "width": 256.3333740234375,
  1597. "height": 91.33331298828128,
  1598. "seed": 1750838620,
  1599. "groupIds": [],
  1600. "roundness": null,
  1601. "boundElements": [
  1602. {
  1603. "id": "-n6vwSfIOzGpAxjpRyuNZ",
  1604. "type": "arrow"
  1605. }
  1606. ],
  1607. "updated": 1679661027326,
  1608. "link": null,
  1609. "locked": false
  1610. },
  1611. {
  1612. "type": "rectangle",
  1613. "version": 88,
  1614. "versionNonce": 1947089019,
  1615. "isDeleted": false,
  1616. "id": "H3BkjBVeDYM2F429PxOI9",
  1617. "fillStyle": "hachure",
  1618. "strokeWidth": 1,
  1619. "strokeStyle": "solid",
  1620. "roughness": 1,
  1621. "opacity": 100,
  1622. "angle": 0,
  1623. "x": 233.0000915527344,
  1624. "y": 447.00010681152344,
  1625. "strokeColor": "#000000",
  1626. "backgroundColor": "transparent",
  1627. "width": 243.00006103515625,
  1628. "height": 31,
  1629. "seed": 258806116,
  1630. "groupIds": [],
  1631. "roundness": null,
  1632. "boundElements": [
  1633. {
  1634. "id": "-n6vwSfIOzGpAxjpRyuNZ",
  1635. "type": "arrow"
  1636. }
  1637. ],
  1638. "updated": 1679661000688,
  1639. "link": null,
  1640. "locked": false
  1641. },
  1642. {
  1643. "type": "arrow",
  1644. "version": 257,
  1645. "versionNonce": 314119835,
  1646. "isDeleted": false,
  1647. "id": "_acaSZ2N5FSiuPGQjH8RA",
  1648. "fillStyle": "hachure",
  1649. "strokeWidth": 1,
  1650. "strokeStyle": "solid",
  1651. "roughness": 1,
  1652. "opacity": 100,
  1653. "angle": 0,
  1654. "x": 463.97668298272777,
  1655. "y": 453.66683959960943,
  1656. "strokeColor": "#000000",
  1657. "backgroundColor": "transparent",
  1658. "width": 80.59006409386518,
  1659. "height": 100.23285752369344,
  1660. "seed": 1866235612,
  1661. "groupIds": [],
  1662. "roundness": null,
  1663. "boundElements": [],
  1664. "updated": 1679661000688,
  1665. "link": null,
  1666. "locked": false,
  1667. "startBinding": {
  1668. "elementId": "Clf1NqZqRXJuRl-CQgx_u",
  1669. "focus": 0.8216444271084713,
  1670. "gap": 1
  1671. },
  1672. "endBinding": {
  1673. "elementId": "FcG2LCAdKxw_z2SzLhPPr",
  1674. "focus": 1.009989878742988,
  1675. "gap": 3.7665659116883603
  1676. },
  1677. "lastCommittedPoint": null,
  1678. "startArrowhead": null,
  1679. "endArrowhead": "arrow",
  1680. "points": [
  1681. [
  1682. 0,
  1683. 0
  1684. ],
  1685. [
  1686. 80.59006409386518,
  1687. -100.23285752369344
  1688. ]
  1689. ]
  1690. },
  1691. {
  1692. "type": "rectangle",
  1693. "version": 63,
  1694. "versionNonce": 1164697781,
  1695. "isDeleted": false,
  1696. "id": "NIObCr2apYl6JLLzA37G2",
  1697. "fillStyle": "hachure",
  1698. "strokeWidth": 1,
  1699. "strokeStyle": "solid",
  1700. "roughness": 1,
  1701. "opacity": 100,
  1702. "angle": 0,
  1703. "x": 232.66665649414065,
  1704. "y": 486.66676330566406,
  1705. "strokeColor": "#000000",
  1706. "backgroundColor": "transparent",
  1707. "width": 244.33331298828125,
  1708. "height": 30,
  1709. "seed": 1813909212,
  1710. "groupIds": [],
  1711. "roundness": null,
  1712. "boundElements": [
  1713. {
  1714. "type": "text",
  1715. "id": "sYEF77zbpRw-pcdX1ass6"
  1716. }
  1717. ],
  1718. "updated": 1679661000688,
  1719. "link": null,
  1720. "locked": false
  1721. },
  1722. {
  1723. "type": "text",
  1724. "version": 24,
  1725. "versionNonce": 4682011,
  1726. "isDeleted": false,
  1727. "id": "sYEF77zbpRw-pcdX1ass6",
  1728. "fillStyle": "hachure",
  1729. "strokeWidth": 1,
  1730. "strokeStyle": "solid",
  1731. "roughness": 1,
  1732. "opacity": 100,
  1733. "angle": 0,
  1734. "x": 272.33331298828125,
  1735. "y": 491.66676330566406,
  1736. "strokeColor": "#000000",
  1737. "backgroundColor": "transparent",
  1738. "width": 165,
  1739. "height": 20,
  1740. "seed": 382274908,
  1741. "groupIds": [],
  1742. "roundness": null,
  1743. "boundElements": [],
  1744. "updated": 1679661000688,
  1745. "link": null,
  1746. "locked": false,
  1747. "fontSize": 16,
  1748. "fontFamily": 1,
  1749. "text": "uint32 global_count;",
  1750. "baseline": 14,
  1751. "textAlign": "center",
  1752. "verticalAlign": "middle",
  1753. "containerId": "NIObCr2apYl6JLLzA37G2",
  1754. "originalText": "uint32 global_count;"
  1755. },
  1756. {
  1757. "type": "rectangle",
  1758. "version": 142,
  1759. "versionNonce": 519569941,
  1760. "isDeleted": false,
  1761. "id": "7jX0wgP7v4HHkuITKOf89",
  1762. "fillStyle": "hachure",
  1763. "strokeWidth": 1,
  1764. "strokeStyle": "solid",
  1765. "roughness": 1,
  1766. "opacity": 100,
  1767. "angle": 0,
  1768. "x": 94.3333435058594,
  1769. "y": 344.33351135253906,
  1770. "strokeColor": "#000000",
  1771. "backgroundColor": "transparent",
  1772. "width": 115,
  1773. "height": 30.333358764648438,
  1774. "seed": 1226666212,
  1775. "groupIds": [],
  1776. "roundness": null,
  1777. "boundElements": [
  1778. {
  1779. "type": "text",
  1780. "id": "sK7ecOoz_3QIduVF0nHd7"
  1781. }
  1782. ],
  1783. "updated": 1679661000688,
  1784. "link": null,
  1785. "locked": false
  1786. },
  1787. {
  1788. "type": "text",
  1789. "version": 116,
  1790. "versionNonce": 1846580667,
  1791. "isDeleted": false,
  1792. "id": "sK7ecOoz_3QIduVF0nHd7",
  1793. "fillStyle": "hachure",
  1794. "strokeWidth": 1,
  1795. "strokeStyle": "solid",
  1796. "roughness": 1,
  1797. "opacity": 100,
  1798. "angle": 0,
  1799. "x": 146.3333435058594,
  1800. "y": 349.5001907348633,
  1801. "strokeColor": "#000000",
  1802. "backgroundColor": "transparent",
  1803. "width": 11,
  1804. "height": 20,
  1805. "seed": 1178170724,
  1806. "groupIds": [],
  1807. "roundness": null,
  1808. "boundElements": [],
  1809. "updated": 1679661000688,
  1810. "link": null,
  1811. "locked": false,
  1812. "fontSize": 16,
  1813. "fontFamily": 1,
  1814. "text": "e",
  1815. "baseline": 14,
  1816. "textAlign": "center",
  1817. "verticalAlign": "middle",
  1818. "containerId": "7jX0wgP7v4HHkuITKOf89",
  1819. "originalText": "e"
  1820. },
  1821. {
  1822. "type": "diamond",
  1823. "version": 135,
  1824. "versionNonce": 691599221,
  1825. "isDeleted": false,
  1826. "id": "yTfoj623sdm1eh4Eusmvt",
  1827. "fillStyle": "hachure",
  1828. "strokeWidth": 1,
  1829. "strokeStyle": "solid",
  1830. "roughness": 1,
  1831. "opacity": 100,
  1832. "angle": 0,
  1833. "x": 174.66665649414065,
  1834. "y": 352.0001983642578,
  1835. "strokeColor": "#000000",
  1836. "backgroundColor": "#be4bdb",
  1837. "width": 13.66668701171875,
  1838. "height": 12.333328247070312,
  1839. "seed": 559414236,
  1840. "groupIds": [],
  1841. "roundness": null,
  1842. "boundElements": [],
  1843. "updated": 1679661000688,
  1844. "link": null,
  1845. "locked": false
  1846. },
  1847. {
  1848. "type": "arrow",
  1849. "version": 324,
  1850. "versionNonce": 1197545819,
  1851. "isDeleted": false,
  1852. "id": "-n6vwSfIOzGpAxjpRyuNZ",
  1853. "fillStyle": "hachure",
  1854. "strokeWidth": 1,
  1855. "strokeStyle": "solid",
  1856. "roughness": 1,
  1857. "opacity": 100,
  1858. "angle": 0,
  1859. "x": 182.00003051757815,
  1860. "y": 356.66676330566406,
  1861. "strokeColor": "#000000",
  1862. "backgroundColor": "transparent",
  1863. "width": 45.12566323463764,
  1864. "height": 69.66665649414062,
  1865. "seed": 1850539876,
  1866. "groupIds": [],
  1867. "roundness": null,
  1868. "boundElements": [],
  1869. "updated": 1679661027326,
  1870. "link": null,
  1871. "locked": false,
  1872. "startBinding": null,
  1873. "endBinding": {
  1874. "elementId": "CERoUCjzlaXjrdr4PSxtB",
  1875. "gap": 1,
  1876. "focus": -0.6072997775389923
  1877. },
  1878. "lastCommittedPoint": null,
  1879. "startArrowhead": null,
  1880. "endArrowhead": "arrow",
  1881. "points": [
  1882. [
  1883. 0,
  1884. 0
  1885. ],
  1886. [
  1887. 45.12566323463764,
  1888. 69.66665649414062
  1889. ]
  1890. ]
  1891. },
  1892. {
  1893. "type": "arrow",
  1894. "version": 68,
  1895. "versionNonce": 732107996,
  1896. "isDeleted": false,
  1897. "id": "957MNrV_zCOsf-ssBBkla",
  1898. "fillStyle": "hachure",
  1899. "strokeWidth": 1,
  1900. "strokeStyle": "solid",
  1901. "roughness": 1,
  1902. "opacity": 100,
  1903. "angle": 0,
  1904. "x": 578.0000305175781,
  1905. "y": 557.6666717529297,
  1906. "strokeColor": "#000000",
  1907. "backgroundColor": "transparent",
  1908. "width": 144.0692777412945,
  1909. "height": 39.30743410761045,
  1910. "seed": 1605267676,
  1911. "groupIds": [],
  1912. "roundness": null,
  1913. "boundElements": [],
  1914. "updated": 1679644717838,
  1915. "link": null,
  1916. "locked": false,
  1917. "startBinding": null,
  1918. "endBinding": {
  1919. "elementId": "Gyz12ttmraGX-CaCTWl3h",
  1920. "focus": 1.0338080600507247,
  1921. "gap": 3.00006103515625
  1922. },
  1923. "lastCommittedPoint": null,
  1924. "startArrowhead": null,
  1925. "endArrowhead": "arrow",
  1926. "points": [
  1927. [
  1928. 0,
  1929. 0
  1930. ],
  1931. [
  1932. -144.0692777412945,
  1933. 39.30743410761045
  1934. ]
  1935. ]
  1936. },
  1937. {
  1938. "type": "diamond",
  1939. "version": 20,
  1940. "versionNonce": 825681252,
  1941. "isDeleted": false,
  1942. "id": "pKw8fr7S6f80J93nrJtkQ",
  1943. "fillStyle": "hachure",
  1944. "strokeWidth": 1,
  1945. "strokeStyle": "solid",
  1946. "roughness": 1,
  1947. "opacity": 100,
  1948. "angle": 0,
  1949. "x": 575.8333129882812,
  1950. "y": 553.5000076293945,
  1951. "strokeColor": "#000000",
  1952. "backgroundColor": "#be4bdb",
  1953. "width": 13.66668701171875,
  1954. "height": 12.333328247070312,
  1955. "seed": 222063588,
  1956. "groupIds": [],
  1957. "roundness": null,
  1958. "boundElements": [],
  1959. "updated": 1679644481683,
  1960. "link": null,
  1961. "locked": false
  1962. },
  1963. {
  1964. "type": "diamond",
  1965. "version": 20,
  1966. "versionNonce": 825681252,
  1967. "isDeleted": false,
  1968. "id": "XKwLDKrjsXcSogvJHSY-e",
  1969. "fillStyle": "hachure",
  1970. "strokeWidth": 1,
  1971. "strokeStyle": "solid",
  1972. "roughness": 1,
  1973. "opacity": 100,
  1974. "angle": 0,
  1975. "x": 573.8333129882812,
  1976. "y": 597.5000076293945,
  1977. "strokeColor": "#000000",
  1978. "backgroundColor": "#be4bdb",
  1979. "width": 13.66668701171875,
  1980. "height": 12.333328247070312,
  1981. "seed": 1140569180,
  1982. "groupIds": [],
  1983. "roundness": null,
  1984. "boundElements": [],
  1985. "updated": 1679644483164,
  1986. "link": null,
  1987. "locked": false
  1988. },
  1989. {
  1990. "type": "rectangle",
  1991. "version": 215,
  1992. "versionNonce": 510935253,
  1993. "isDeleted": false,
  1994. "id": "oPjebDyI5NP26BNK4PLtX",
  1995. "fillStyle": "hachure",
  1996. "strokeWidth": 1,
  1997. "strokeStyle": "solid",
  1998. "roughness": 1,
  1999. "opacity": 100,
  2000. "angle": 0,
  2001. "x": 50.33343505859378,
  2002. "y": 290.33338928222656,
  2003. "strokeColor": "#000000",
  2004. "backgroundColor": "transparent",
  2005. "width": 180,
  2006. "height": 31,
  2007. "seed": 727213156,
  2008. "groupIds": [],
  2009. "roundness": null,
  2010. "boundElements": [
  2011. {
  2012. "type": "text",
  2013. "id": "ZK3cjtpUxVpruHBkbgevo"
  2014. }
  2015. ],
  2016. "updated": 1679661000688,
  2017. "link": null,
  2018. "locked": false
  2019. },
  2020. {
  2021. "type": "text",
  2022. "version": 175,
  2023. "versionNonce": 1653383931,
  2024. "isDeleted": false,
  2025. "id": "ZK3cjtpUxVpruHBkbgevo",
  2026. "fillStyle": "hachure",
  2027. "strokeWidth": 1,
  2028. "strokeStyle": "solid",
  2029. "roughness": 1,
  2030. "opacity": 100,
  2031. "angle": 0,
  2032. "x": 58.33343505859378,
  2033. "y": 295.83338928222656,
  2034. "strokeColor": "#000000",
  2035. "backgroundColor": "transparent",
  2036. "width": 164,
  2037. "height": 20,
  2038. "seed": 1130592356,
  2039. "groupIds": [],
  2040. "roundness": null,
  2041. "boundElements": [],
  2042. "updated": 1679661000688,
  2043. "link": null,
  2044. "locked": false,
  2045. "fontSize": 16,
  2046. "fontFamily": 1,
  2047. "text": "uint8 * global_data",
  2048. "baseline": 14,
  2049. "textAlign": "center",
  2050. "verticalAlign": "middle",
  2051. "containerId": "oPjebDyI5NP26BNK4PLtX",
  2052. "originalText": "uint8 * global_data"
  2053. },
  2054. {
  2055. "type": "arrow",
  2056. "version": 159,
  2057. "versionNonce": 345149237,
  2058. "isDeleted": false,
  2059. "id": "5S0qe2-BjQRPwuEEQ_UsU",
  2060. "fillStyle": "hachure",
  2061. "strokeWidth": 1,
  2062. "strokeStyle": "solid",
  2063. "roughness": 1,
  2064. "opacity": 100,
  2065. "angle": 0,
  2066. "x": 228.00003051757812,
  2067. "y": 299.9999694824219,
  2068. "strokeColor": "#000000",
  2069. "backgroundColor": "transparent",
  2070. "width": 754.7517447227082,
  2071. "height": 17.8331298828125,
  2072. "seed": 1256331620,
  2073. "groupIds": [],
  2074. "roundness": {
  2075. "type": 2
  2076. },
  2077. "boundElements": [],
  2078. "updated": 1679661008047,
  2079. "link": null,
  2080. "locked": false,
  2081. "startBinding": null,
  2082. "endBinding": {
  2083. "elementId": "D5Ay5TxydaAe4f80l_79L",
  2084. "focus": 0.9720307648275319,
  2085. "gap": 1
  2086. },
  2087. "lastCommittedPoint": null,
  2088. "startArrowhead": null,
  2089. "endArrowhead": "arrow",
  2090. "points": [
  2091. [
  2092. 0,
  2093. 0
  2094. ],
  2095. [
  2096. 385.0834503173828,
  2097. -17.8331298828125
  2098. ],
  2099. [
  2100. 754.7517447227082,
  2101. -2.996583692902334
  2102. ]
  2103. ]
  2104. },
  2105. {
  2106. "type": "diamond",
  2107. "version": 89,
  2108. "versionNonce": 1413439029,
  2109. "isDeleted": false,
  2110. "id": "szV9RT3yAJ51dUnP5JYMS",
  2111. "fillStyle": "hachure",
  2112. "strokeWidth": 1,
  2113. "strokeStyle": "solid",
  2114. "roughness": 1,
  2115. "opacity": 100,
  2116. "angle": 0,
  2117. "x": 220.1667175292969,
  2118. "y": 294.50000762939453,
  2119. "strokeColor": "#000000",
  2120. "backgroundColor": "#be4bdb",
  2121. "width": 13.66668701171875,
  2122. "height": 12.333328247070312,
  2123. "seed": 1642184284,
  2124. "groupIds": [],
  2125. "roundness": null,
  2126. "boundElements": [],
  2127. "updated": 1679661000688,
  2128. "link": null,
  2129. "locked": false
  2130. },
  2131. {
  2132. "type": "text",
  2133. "version": 160,
  2134. "versionNonce": 715957468,
  2135. "isDeleted": false,
  2136. "id": "DuwilIDd-fhNUxybFRKva",
  2137. "fillStyle": "hachure",
  2138. "strokeWidth": 1,
  2139. "strokeStyle": "solid",
  2140. "roughness": 1,
  2141. "opacity": 100,
  2142. "angle": 0,
  2143. "x": 255.16659545898438,
  2144. "y": 750.6665496826172,
  2145. "strokeColor": "#000000",
  2146. "backgroundColor": "transparent",
  2147. "width": 99,
  2148. "height": 20,
  2149. "seed": 121250780,
  2150. "groupIds": [],
  2151. "roundness": null,
  2152. "boundElements": [],
  2153. "updated": 1679644739787,
  2154. "link": null,
  2155. "locked": false,
  2156. "fontSize": 16,
  2157. "fontFamily": 1,
  2158. "text": "global_data",
  2159. "baseline": 14,
  2160. "textAlign": "left",
  2161. "verticalAlign": "top",
  2162. "containerId": null,
  2163. "originalText": "global_data"
  2164. },
  2165. {
  2166. "type": "rectangle",
  2167. "version": 143,
  2168. "versionNonce": 2046173532,
  2169. "isDeleted": false,
  2170. "id": "6CMun9I8IOX876t85IJ2X",
  2171. "fillStyle": "hachure",
  2172. "strokeWidth": 1,
  2173. "strokeStyle": "dashed",
  2174. "roughness": 1,
  2175. "opacity": 100,
  2176. "angle": 0,
  2177. "x": 215.83328247070312,
  2178. "y": 738.6664733886719,
  2179. "strokeColor": "#000000",
  2180. "backgroundColor": "transparent",
  2181. "width": 180.33331298828125,
  2182. "height": 46.666778564453125,
  2183. "seed": 2113088100,
  2184. "groupIds": [],
  2185. "roundness": null,
  2186. "boundElements": [
  2187. {
  2188. "id": "igqxFPh3AgDb1kYMsORSZ",
  2189. "type": "arrow"
  2190. }
  2191. ],
  2192. "updated": 1679644784578,
  2193. "link": null,
  2194. "locked": false
  2195. },
  2196. {
  2197. "type": "text",
  2198. "version": 34,
  2199. "versionNonce": 1198703204,
  2200. "isDeleted": false,
  2201. "id": "cbSo4pUG_J3a4Pnk3ODCA",
  2202. "fillStyle": "hachure",
  2203. "strokeWidth": 1,
  2204. "strokeStyle": "solid",
  2205. "roughness": 1,
  2206. "opacity": 100,
  2207. "angle": 0,
  2208. "x": 276.6665954589844,
  2209. "y": 693.3332366943359,
  2210. "strokeColor": "#000000",
  2211. "backgroundColor": "transparent",
  2212. "width": 55,
  2213. "height": 20,
  2214. "seed": 328242020,
  2215. "groupIds": [],
  2216. "roundness": null,
  2217. "boundElements": [],
  2218. "updated": 1679644771096,
  2219. "link": null,
  2220. "locked": false,
  2221. "fontSize": 16,
  2222. "fontFamily": 1,
  2223. "text": "globals",
  2224. "baseline": 14,
  2225. "textAlign": "left",
  2226. "verticalAlign": "top",
  2227. "containerId": null,
  2228. "originalText": "globals"
  2229. },
  2230. {
  2231. "type": "arrow",
  2232. "version": 81,
  2233. "versionNonce": 311117156,
  2234. "isDeleted": false,
  2235. "id": "igqxFPh3AgDb1kYMsORSZ",
  2236. "fillStyle": "hachure",
  2237. "strokeWidth": 1,
  2238. "strokeStyle": "solid",
  2239. "roughness": 1,
  2240. "opacity": 100,
  2241. "angle": 0,
  2242. "x": 247.33328247070312,
  2243. "y": 706.3332366943359,
  2244. "strokeColor": "#000000",
  2245. "backgroundColor": "transparent",
  2246. "width": 71.66665649414062,
  2247. "height": 58.33343505859375,
  2248. "seed": 1345639908,
  2249. "groupIds": [],
  2250. "roundness": {
  2251. "type": 2
  2252. },
  2253. "boundElements": [],
  2254. "updated": 1679644787747,
  2255. "link": null,
  2256. "locked": false,
  2257. "startBinding": null,
  2258. "endBinding": {
  2259. "elementId": "6CMun9I8IOX876t85IJ2X",
  2260. "focus": -0.8452179527426857,
  2261. "gap": 1.499908447265625
  2262. },
  2263. "lastCommittedPoint": null,
  2264. "startArrowhead": null,
  2265. "endArrowhead": "arrow",
  2266. "points": [
  2267. [
  2268. 0,
  2269. 0
  2270. ],
  2271. [
  2272. -71.66665649414062,
  2273. 15.66668701171875
  2274. ],
  2275. [
  2276. -32.999908447265625,
  2277. 58.33343505859375
  2278. ]
  2279. ]
  2280. },
  2281. {
  2282. "type": "diamond",
  2283. "version": 135,
  2284. "versionNonce": 691599221,
  2285. "isDeleted": false,
  2286. "id": "koTtnTl85TIGelUbfKlR9",
  2287. "fillStyle": "hachure",
  2288. "strokeWidth": 1,
  2289. "strokeStyle": "solid",
  2290. "roughness": 1,
  2291. "opacity": 100,
  2292. "angle": 0,
  2293. "x": 459.58338928222656,
  2294. "y": 446.0001754760742,
  2295. "strokeColor": "#000000",
  2296. "backgroundColor": "#be4bdb",
  2297. "width": 13.66668701171875,
  2298. "height": 12.333328247070312,
  2299. "seed": 626707637,
  2300. "groupIds": [],
  2301. "roundness": null,
  2302. "boundElements": null,
  2303. "updated": 1679661018823,
  2304. "link": null,
  2305. "locked": false
  2306. }
  2307. ],
  2308. "appState": {
  2309. "gridSize": null,
  2310. "viewBackgroundColor": "#ffffff"
  2311. },
  2312. "files": {}
  2313. }