@eluvio/elv-client-js 4.0.113 → 4.0.115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/dist/ElvClient-min.js +67 -0
  2. package/dist/ElvClient-node-min.js +66 -0
  3. package/dist/ElvFrameClient-min.js +60 -0
  4. package/dist/ElvPermissionsClient-min.js +60 -0
  5. package/dist/ElvWalletClient-min.js +67 -0
  6. package/dist/ElvWalletClient-node-min.js +66 -0
  7. package/dist/src/AuthorizationClient.js +2169 -0
  8. package/dist/src/ContentObjectAudit.js +175 -0
  9. package/dist/src/ContentObjectVerification.js +281 -0
  10. package/dist/src/Crypto.js +412 -0
  11. package/dist/src/ElvClient.js +2044 -0
  12. package/dist/src/ElvWallet.js +245 -0
  13. package/dist/src/EthClient.js +1154 -0
  14. package/dist/src/FrameClient.js +485 -0
  15. package/dist/src/HttpClient.js +315 -0
  16. package/dist/src/Id.js +21 -0
  17. package/dist/src/LogMessage.js +25 -0
  18. package/dist/src/PermissionsClient.js +1544 -0
  19. package/dist/src/RemoteSigner.js +385 -0
  20. package/dist/src/UserProfileClient.js +1450 -0
  21. package/dist/src/Utils.js +894 -0
  22. package/dist/src/Validation.js +121 -0
  23. package/dist/src/abr_profiles/abr_profile_live_drm.js +1661 -0
  24. package/dist/src/abr_profiles/abr_profile_live_to_vod.js +1606 -0
  25. package/dist/src/client/ABRPublishing.js +1018 -0
  26. package/dist/src/client/AccessGroups.js +1503 -0
  27. package/dist/src/client/ContentAccess.js +5195 -0
  28. package/dist/src/client/ContentManagement.js +2680 -0
  29. package/dist/src/client/Contracts.js +1520 -0
  30. package/dist/src/client/Files.js +2181 -0
  31. package/dist/src/client/LiveConf.js +569 -0
  32. package/dist/src/client/LiveStream.js +2640 -0
  33. package/dist/src/client/NFT.js +162 -0
  34. package/dist/src/client/NTP.js +581 -0
  35. package/dist/src/contracts/v2/AccessIndexor.js +831 -0
  36. package/dist/src/contracts/v2/Accessible.js +31 -0
  37. package/dist/src/contracts/v2/BaseAccessControlGroup.js +1263 -0
  38. package/dist/src/contracts/v2/BaseAccessWallet.js +1609 -0
  39. package/dist/src/contracts/v2/BaseAccessWalletFactory.js +93 -0
  40. package/dist/src/contracts/v2/BaseContent.js +1076 -0
  41. package/dist/src/contracts/v2/BaseContentFactory.js +219 -0
  42. package/dist/src/contracts/v2/BaseContentSpace.js +1352 -0
  43. package/dist/src/contracts/v2/BaseContentType.js +364 -0
  44. package/dist/src/contracts/v2/BaseFactory.js +107 -0
  45. package/dist/src/contracts/v2/BaseGroupFactory.js +93 -0
  46. package/dist/src/contracts/v2/BaseLibrary.js +1041 -0
  47. package/dist/src/contracts/v2/BaseLibraryFactory.js +96 -0
  48. package/dist/src/contracts/v2/Certifyer.js +86 -0
  49. package/dist/src/contracts/v2/Container.js +540 -0
  50. package/dist/src/contracts/v2/Content.js +443 -0
  51. package/dist/src/contracts/v2/Editable.js +306 -0
  52. package/dist/src/contracts/v2/ExternalUserWallet.js +379 -0
  53. package/dist/src/contracts/v2/IFactorySpace.js +57 -0
  54. package/dist/src/contracts/v2/IKmsSpace.js +52 -0
  55. package/dist/src/contracts/v2/INodeSpace.js +18 -0
  56. package/dist/src/contracts/v2/IUserSpace.js +18 -0
  57. package/dist/src/contracts/v2/LvRecordableStream.js +1037 -0
  58. package/dist/src/contracts/v2/LvRecording.js +627 -0
  59. package/dist/src/contracts/v2/LvStreamRightsHolder.js +562 -0
  60. package/dist/src/contracts/v2/MetaObject.js +119 -0
  61. package/dist/src/contracts/v2/Node.js +167 -0
  62. package/dist/src/contracts/v2/NodeSpace.js +273 -0
  63. package/dist/src/contracts/v2/Ownable.js +87 -0
  64. package/dist/src/contracts/v2/PaymentService.js +627 -0
  65. package/dist/src/contracts/v2/Precompile.js +15 -0
  66. package/dist/src/contracts/v2/Transactable.js +82 -0
  67. package/dist/src/contracts/v2/UserSpace.js +29 -0
  68. package/dist/src/contracts/v2/Utils.js +18 -0
  69. package/dist/src/contracts/v2/Verifier.js +53 -0
  70. package/dist/src/contracts/v2/strings.js +4 -0
  71. package/dist/src/contracts/v3/AccessIndexor.js +774 -0
  72. package/dist/src/contracts/v3/Accessible.js +232 -0
  73. package/dist/src/contracts/v3/Adminable.js +107 -0
  74. package/dist/src/contracts/v3/AvailsDelivery.js +586 -0
  75. package/dist/src/contracts/v3/BaseAccessControlGroup.js +1603 -0
  76. package/dist/src/contracts/v3/BaseAccessWallet.js +1628 -0
  77. package/dist/src/contracts/v3/BaseAccessWalletFactory.js +112 -0
  78. package/dist/src/contracts/v3/BaseContent.js +1312 -0
  79. package/dist/src/contracts/v3/BaseContentFactory.js +183 -0
  80. package/dist/src/contracts/v3/BaseContentFactoryExt.js +175 -0
  81. package/dist/src/contracts/v3/BaseContentSpace.js +1515 -0
  82. package/dist/src/contracts/v3/BaseContentType.js +527 -0
  83. package/dist/src/contracts/v3/BaseFactory.js +126 -0
  84. package/dist/src/contracts/v3/BaseGroupFactory.js +112 -0
  85. package/dist/src/contracts/v3/BaseLibrary.js +1204 -0
  86. package/dist/src/contracts/v3/BaseLibraryFactory.js +115 -0
  87. package/dist/src/contracts/v3/BaseTenantSpace.js +1587 -0
  88. package/dist/src/contracts/v3/Certifyer.js +86 -0
  89. package/dist/src/contracts/v3/Container.js +739 -0
  90. package/dist/src/contracts/v3/Content.js +438 -0
  91. package/dist/src/contracts/v3/CounterObject.js +243 -0
  92. package/dist/src/contracts/v3/Editable.js +519 -0
  93. package/dist/src/contracts/v3/EncToken.js +4 -0
  94. package/dist/src/contracts/v3/ExternalUserWallet.js +587 -0
  95. package/dist/src/contracts/v3/IAdmin.js +18 -0
  96. package/dist/src/contracts/v3/IFactorySpace.js +57 -0
  97. package/dist/src/contracts/v3/IKmsSpace.js +52 -0
  98. package/dist/src/contracts/v3/INodeSpace.js +18 -0
  99. package/dist/src/contracts/v3/IUserSpace.js +32 -0
  100. package/dist/src/contracts/v3/LvRecordableStream.js +1032 -0
  101. package/dist/src/contracts/v3/LvRecording.js +650 -0
  102. package/dist/src/contracts/v3/LvStreamRightsHolder.js +557 -0
  103. package/dist/src/contracts/v3/MetaObject.js +144 -0
  104. package/dist/src/contracts/v3/Node.js +178 -0
  105. package/dist/src/contracts/v3/NodeSpace.js +284 -0
  106. package/dist/src/contracts/v3/Ownable.js +98 -0
  107. package/dist/src/contracts/v3/PaymentService.js +622 -0
  108. package/dist/src/contracts/v3/Precompile.js +26 -0
  109. package/dist/src/contracts/v3/TenantFuncsBase.js +351 -0
  110. package/dist/src/contracts/v3/Transactable.js +82 -0
  111. package/dist/src/contracts/v3/UserSpace.js +43 -0
  112. package/dist/src/contracts/v3/Utils.js +18 -0
  113. package/dist/src/contracts/v3/Verifier.js +53 -0
  114. package/dist/src/contracts/v3/strings.js +4 -0
  115. package/dist/src/contracts/v3b/BaseAccessControlGroup.js +1704 -0
  116. package/dist/src/events/Topics.js +1793 -0
  117. package/dist/src/index.js +8 -0
  118. package/dist/src/walletClient/ClientMethods.js +3102 -0
  119. package/dist/src/walletClient/Configuration.js +38 -0
  120. package/dist/src/walletClient/Notifications.js +168 -0
  121. package/dist/src/walletClient/Profile.js +332 -0
  122. package/dist/src/walletClient/Utils.js +281 -0
  123. package/dist/src/walletClient/index.js +2106 -0
  124. package/package.json +1 -1
  125. package/src/AuthorizationClient.js +25 -18
  126. package/src/ElvClient.js +19 -0
  127. package/src/client/ContentAccess.js +10 -1
  128. package/src/client/LiveConf.js +10 -8
  129. package/src/client/LiveStream.js +6 -4
@@ -0,0 +1,178 @@
1
+ var contract = {
2
+ "abi": [{
3
+ "constant": true,
4
+ "inputs": [],
5
+ "name": "creator",
6
+ "outputs": [{
7
+ "name": "",
8
+ "type": "address"
9
+ }],
10
+ "payable": false,
11
+ "stateMutability": "view",
12
+ "type": "function"
13
+ }, {
14
+ "constant": false,
15
+ "inputs": [{
16
+ "name": "label",
17
+ "type": "string"
18
+ }],
19
+ "name": "log",
20
+ "outputs": [],
21
+ "payable": false,
22
+ "stateMutability": "nonpayable",
23
+ "type": "function"
24
+ }, {
25
+ "constant": false,
26
+ "inputs": [],
27
+ "name": "kill",
28
+ "outputs": [],
29
+ "payable": false,
30
+ "stateMutability": "nonpayable",
31
+ "type": "function"
32
+ }, {
33
+ "constant": true,
34
+ "inputs": [],
35
+ "name": "version",
36
+ "outputs": [{
37
+ "name": "",
38
+ "type": "bytes32"
39
+ }],
40
+ "payable": false,
41
+ "stateMutability": "view",
42
+ "type": "function"
43
+ }, {
44
+ "constant": true,
45
+ "inputs": [],
46
+ "name": "versionAPI",
47
+ "outputs": [{
48
+ "name": "",
49
+ "type": "bytes32"
50
+ }],
51
+ "payable": false,
52
+ "stateMutability": "view",
53
+ "type": "function"
54
+ }, {
55
+ "constant": false,
56
+ "inputs": [{
57
+ "name": "newCreator",
58
+ "type": "address"
59
+ }],
60
+ "name": "transferCreatorship",
61
+ "outputs": [],
62
+ "payable": false,
63
+ "stateMutability": "nonpayable",
64
+ "type": "function"
65
+ }, {
66
+ "constant": true,
67
+ "inputs": [],
68
+ "name": "owner",
69
+ "outputs": [{
70
+ "name": "",
71
+ "type": "address"
72
+ }],
73
+ "payable": false,
74
+ "stateMutability": "view",
75
+ "type": "function"
76
+ }, {
77
+ "constant": true,
78
+ "inputs": [],
79
+ "name": "contentSpace",
80
+ "outputs": [{
81
+ "name": "",
82
+ "type": "address"
83
+ }],
84
+ "payable": false,
85
+ "stateMutability": "view",
86
+ "type": "function"
87
+ }, {
88
+ "constant": false,
89
+ "inputs": [{
90
+ "name": "newOwner",
91
+ "type": "address"
92
+ }],
93
+ "name": "transferOwnership",
94
+ "outputs": [],
95
+ "payable": false,
96
+ "stateMutability": "nonpayable",
97
+ "type": "function"
98
+ }, {
99
+ "payable": true,
100
+ "stateMutability": "payable",
101
+ "type": "fallback"
102
+ }, {
103
+ "anonymous": false,
104
+ "inputs": [{
105
+ "indexed": false,
106
+ "name": "label",
107
+ "type": "string"
108
+ }],
109
+ "name": "Log",
110
+ "type": "event"
111
+ }, {
112
+ "anonymous": false,
113
+ "inputs": [{
114
+ "indexed": false,
115
+ "name": "label",
116
+ "type": "string"
117
+ }, {
118
+ "indexed": false,
119
+ "name": "b",
120
+ "type": "bool"
121
+ }],
122
+ "name": "LogBool",
123
+ "type": "event"
124
+ }, {
125
+ "anonymous": false,
126
+ "inputs": [{
127
+ "indexed": false,
128
+ "name": "label",
129
+ "type": "string"
130
+ }, {
131
+ "indexed": false,
132
+ "name": "a",
133
+ "type": "address"
134
+ }],
135
+ "name": "LogAddress",
136
+ "type": "event"
137
+ }, {
138
+ "anonymous": false,
139
+ "inputs": [{
140
+ "indexed": false,
141
+ "name": "label",
142
+ "type": "string"
143
+ }, {
144
+ "indexed": false,
145
+ "name": "u",
146
+ "type": "uint256"
147
+ }],
148
+ "name": "LogUint256",
149
+ "type": "event"
150
+ }, {
151
+ "anonymous": false,
152
+ "inputs": [{
153
+ "indexed": false,
154
+ "name": "label",
155
+ "type": "string"
156
+ }, {
157
+ "indexed": false,
158
+ "name": "u",
159
+ "type": "int256"
160
+ }],
161
+ "name": "LogInt256",
162
+ "type": "event"
163
+ }, {
164
+ "anonymous": false,
165
+ "inputs": [{
166
+ "indexed": false,
167
+ "name": "label",
168
+ "type": "string"
169
+ }, {
170
+ "indexed": false,
171
+ "name": "b",
172
+ "type": "bytes32"
173
+ }],
174
+ "name": "LogBytes32",
175
+ "type": "event"
176
+ }]
177
+ };
178
+ module.exports = contract;
@@ -0,0 +1,284 @@
1
+ var contract = {
2
+ "abi": [{
3
+ "constant": true,
4
+ "inputs": [],
5
+ "name": "creator",
6
+ "outputs": [{
7
+ "name": "",
8
+ "type": "address"
9
+ }],
10
+ "payable": false,
11
+ "stateMutability": "view",
12
+ "type": "function"
13
+ }, {
14
+ "constant": false,
15
+ "inputs": [{
16
+ "name": "_locator",
17
+ "type": "bytes"
18
+ }],
19
+ "name": "submitNode",
20
+ "outputs": [],
21
+ "payable": false,
22
+ "stateMutability": "nonpayable",
23
+ "type": "function"
24
+ }, {
25
+ "constant": true,
26
+ "inputs": [{
27
+ "name": "candidate",
28
+ "type": "address"
29
+ }],
30
+ "name": "canNodePublish",
31
+ "outputs": [{
32
+ "name": "",
33
+ "type": "bool"
34
+ }],
35
+ "payable": false,
36
+ "stateMutability": "view",
37
+ "type": "function"
38
+ }, {
39
+ "constant": false,
40
+ "inputs": [],
41
+ "name": "kill",
42
+ "outputs": [],
43
+ "payable": false,
44
+ "stateMutability": "nonpayable",
45
+ "type": "function"
46
+ }, {
47
+ "constant": true,
48
+ "inputs": [],
49
+ "name": "numActiveNodes",
50
+ "outputs": [{
51
+ "name": "",
52
+ "type": "uint256"
53
+ }],
54
+ "payable": false,
55
+ "stateMutability": "view",
56
+ "type": "function"
57
+ }, {
58
+ "constant": true,
59
+ "inputs": [{
60
+ "name": "",
61
+ "type": "uint256"
62
+ }],
63
+ "name": "activeNodeLocators",
64
+ "outputs": [{
65
+ "name": "",
66
+ "type": "bytes"
67
+ }],
68
+ "payable": false,
69
+ "stateMutability": "view",
70
+ "type": "function"
71
+ }, {
72
+ "constant": true,
73
+ "inputs": [{
74
+ "name": "",
75
+ "type": "uint256"
76
+ }],
77
+ "name": "activeNodeAddresses",
78
+ "outputs": [{
79
+ "name": "",
80
+ "type": "address"
81
+ }],
82
+ "payable": false,
83
+ "stateMutability": "view",
84
+ "type": "function"
85
+ }, {
86
+ "constant": true,
87
+ "inputs": [],
88
+ "name": "version",
89
+ "outputs": [{
90
+ "name": "",
91
+ "type": "bytes32"
92
+ }],
93
+ "payable": false,
94
+ "stateMutability": "view",
95
+ "type": "function"
96
+ }, {
97
+ "constant": true,
98
+ "inputs": [],
99
+ "name": "versionAPI",
100
+ "outputs": [{
101
+ "name": "",
102
+ "type": "bytes32"
103
+ }],
104
+ "payable": false,
105
+ "stateMutability": "view",
106
+ "type": "function"
107
+ }, {
108
+ "constant": false,
109
+ "inputs": [{
110
+ "name": "_nodeAddr",
111
+ "type": "address"
112
+ }, {
113
+ "name": "_locator",
114
+ "type": "bytes"
115
+ }],
116
+ "name": "addNode",
117
+ "outputs": [],
118
+ "payable": false,
119
+ "stateMutability": "nonpayable",
120
+ "type": "function"
121
+ }, {
122
+ "constant": true,
123
+ "inputs": [{
124
+ "name": "",
125
+ "type": "uint256"
126
+ }],
127
+ "name": "pendingNodeLocators",
128
+ "outputs": [{
129
+ "name": "",
130
+ "type": "bytes"
131
+ }],
132
+ "payable": false,
133
+ "stateMutability": "view",
134
+ "type": "function"
135
+ }, {
136
+ "constant": true,
137
+ "inputs": [{
138
+ "name": "",
139
+ "type": "uint256"
140
+ }],
141
+ "name": "pendingNodeAddresses",
142
+ "outputs": [{
143
+ "name": "",
144
+ "type": "address"
145
+ }],
146
+ "payable": false,
147
+ "stateMutability": "view",
148
+ "type": "function"
149
+ }, {
150
+ "constant": false,
151
+ "inputs": [{
152
+ "name": "newCreator",
153
+ "type": "address"
154
+ }],
155
+ "name": "transferCreatorship",
156
+ "outputs": [],
157
+ "payable": false,
158
+ "stateMutability": "nonpayable",
159
+ "type": "function"
160
+ }, {
161
+ "constant": true,
162
+ "inputs": [],
163
+ "name": "owner",
164
+ "outputs": [{
165
+ "name": "",
166
+ "type": "address"
167
+ }],
168
+ "payable": false,
169
+ "stateMutability": "view",
170
+ "type": "function"
171
+ }, {
172
+ "constant": true,
173
+ "inputs": [],
174
+ "name": "contentSpace",
175
+ "outputs": [{
176
+ "name": "",
177
+ "type": "address"
178
+ }],
179
+ "payable": false,
180
+ "stateMutability": "view",
181
+ "type": "function"
182
+ }, {
183
+ "constant": false,
184
+ "inputs": [{
185
+ "name": "_nodeAddr",
186
+ "type": "address"
187
+ }],
188
+ "name": "removeNode",
189
+ "outputs": [],
190
+ "payable": false,
191
+ "stateMutability": "nonpayable",
192
+ "type": "function"
193
+ }, {
194
+ "constant": false,
195
+ "inputs": [{
196
+ "name": "_nodeAddr",
197
+ "type": "address"
198
+ }],
199
+ "name": "approveNode",
200
+ "outputs": [],
201
+ "payable": false,
202
+ "stateMutability": "nonpayable",
203
+ "type": "function"
204
+ }, {
205
+ "constant": false,
206
+ "inputs": [{
207
+ "name": "newOwner",
208
+ "type": "address"
209
+ }],
210
+ "name": "transferOwnership",
211
+ "outputs": [],
212
+ "payable": false,
213
+ "stateMutability": "nonpayable",
214
+ "type": "function"
215
+ }, {
216
+ "constant": true,
217
+ "inputs": [],
218
+ "name": "numPendingNodes",
219
+ "outputs": [{
220
+ "name": "",
221
+ "type": "uint256"
222
+ }],
223
+ "payable": false,
224
+ "stateMutability": "view",
225
+ "type": "function"
226
+ }, {
227
+ "payable": true,
228
+ "stateMutability": "payable",
229
+ "type": "fallback"
230
+ }, {
231
+ "anonymous": false,
232
+ "inputs": [{
233
+ "indexed": false,
234
+ "name": "addr",
235
+ "type": "address"
236
+ }, {
237
+ "indexed": false,
238
+ "name": "locator",
239
+ "type": "bytes"
240
+ }],
241
+ "name": "NodeSubmitted",
242
+ "type": "event"
243
+ }, {
244
+ "anonymous": false,
245
+ "inputs": [{
246
+ "indexed": false,
247
+ "name": "addr",
248
+ "type": "address"
249
+ }, {
250
+ "indexed": false,
251
+ "name": "locator",
252
+ "type": "bytes"
253
+ }],
254
+ "name": "NodeApproved",
255
+ "type": "event"
256
+ }, {
257
+ "anonymous": false,
258
+ "inputs": [{
259
+ "indexed": false,
260
+ "name": "ownerAddr",
261
+ "type": "address"
262
+ }, {
263
+ "indexed": false,
264
+ "name": "nodeAddr",
265
+ "type": "address"
266
+ }],
267
+ "name": "AddNode",
268
+ "type": "event"
269
+ }, {
270
+ "anonymous": false,
271
+ "inputs": [{
272
+ "indexed": false,
273
+ "name": "ownerAddr",
274
+ "type": "address"
275
+ }, {
276
+ "indexed": false,
277
+ "name": "nodeAddr",
278
+ "type": "address"
279
+ }],
280
+ "name": "RemoveNode",
281
+ "type": "event"
282
+ }]
283
+ };
284
+ module.exports = contract;
@@ -0,0 +1,98 @@
1
+ var contract = {
2
+ "abi": [{
3
+ "constant": true,
4
+ "inputs": [],
5
+ "name": "creator",
6
+ "outputs": [{
7
+ "name": "",
8
+ "type": "address"
9
+ }],
10
+ "payable": false,
11
+ "stateMutability": "view",
12
+ "type": "function"
13
+ }, {
14
+ "constant": false,
15
+ "inputs": [],
16
+ "name": "kill",
17
+ "outputs": [],
18
+ "payable": false,
19
+ "stateMutability": "nonpayable",
20
+ "type": "function"
21
+ }, {
22
+ "constant": true,
23
+ "inputs": [],
24
+ "name": "version",
25
+ "outputs": [{
26
+ "name": "",
27
+ "type": "bytes32"
28
+ }],
29
+ "payable": false,
30
+ "stateMutability": "view",
31
+ "type": "function"
32
+ }, {
33
+ "constant": true,
34
+ "inputs": [],
35
+ "name": "versionAPI",
36
+ "outputs": [{
37
+ "name": "",
38
+ "type": "bytes32"
39
+ }],
40
+ "payable": false,
41
+ "stateMutability": "view",
42
+ "type": "function"
43
+ }, {
44
+ "constant": false,
45
+ "inputs": [{
46
+ "name": "newCreator",
47
+ "type": "address"
48
+ }],
49
+ "name": "transferCreatorship",
50
+ "outputs": [],
51
+ "payable": false,
52
+ "stateMutability": "nonpayable",
53
+ "type": "function"
54
+ }, {
55
+ "constant": true,
56
+ "inputs": [],
57
+ "name": "owner",
58
+ "outputs": [{
59
+ "name": "",
60
+ "type": "address"
61
+ }],
62
+ "payable": false,
63
+ "stateMutability": "view",
64
+ "type": "function"
65
+ }, {
66
+ "constant": true,
67
+ "inputs": [],
68
+ "name": "contentSpace",
69
+ "outputs": [{
70
+ "name": "",
71
+ "type": "address"
72
+ }],
73
+ "payable": false,
74
+ "stateMutability": "view",
75
+ "type": "function"
76
+ }, {
77
+ "constant": false,
78
+ "inputs": [{
79
+ "name": "newOwner",
80
+ "type": "address"
81
+ }],
82
+ "name": "transferOwnership",
83
+ "outputs": [],
84
+ "payable": false,
85
+ "stateMutability": "nonpayable",
86
+ "type": "function"
87
+ }, {
88
+ "inputs": [],
89
+ "payable": true,
90
+ "stateMutability": "payable",
91
+ "type": "constructor"
92
+ }, {
93
+ "payable": true,
94
+ "stateMutability": "payable",
95
+ "type": "fallback"
96
+ }]
97
+ };
98
+ module.exports = contract;