@4everland/land-v6 1.0.1

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 (171) hide show
  1. package/.gitattributes +1 -0
  2. package/.gitmodules +3 -0
  3. package/README.md +9 -0
  4. package/package.json +96 -0
  5. package/tsconfig.json +11 -0
  6. package/types/BasicToken.d.ts +300 -0
  7. package/types/BlackList.d.ts +512 -0
  8. package/types/BlastOracleLand.d.ts +933 -0
  9. package/types/ChainlinkPriceFeed.d.ts +427 -0
  10. package/types/Console.d.ts +101 -0
  11. package/types/CustomPriceFeed.d.ts +214 -0
  12. package/types/ERC1967Proxy.d.ts +126 -0
  13. package/types/ERC1967Upgrade.d.ts +126 -0
  14. package/types/ERC20.d.ts +343 -0
  15. package/types/ERC20Basic.d.ts +199 -0
  16. package/types/ETHOracleLand.d.ts +901 -0
  17. package/types/FixedPriceFeed.d.ts +212 -0
  18. package/types/IAggregatorV3Interface.d.ts +234 -0
  19. package/types/IBeacon.d.ts +101 -0
  20. package/types/IBlast.d.ts +919 -0
  21. package/types/ICoin.d.ts +95 -0
  22. package/types/IERC1822Proxiable.d.ts +101 -0
  23. package/types/IERC1967.d.ts +126 -0
  24. package/types/IERC20.d.ts +324 -0
  25. package/types/IERC20Metadata.d.ts +363 -0
  26. package/types/IERC20Rebasing.d.ts +184 -0
  27. package/types/ILand.d.ts +386 -0
  28. package/types/ILandCore.d.ts +255 -0
  29. package/types/IPriceFeed.d.ts +108 -0
  30. package/types/IPyth.d.ts +194 -0
  31. package/types/IQuoter.d.ts +269 -0
  32. package/types/ITransparentUpgradeableProxy.d.ts +256 -0
  33. package/types/IUniswapV3Pool.d.ts +203 -0
  34. package/types/IUniswapV3PoolActions.d.ts +396 -0
  35. package/types/IUniswapV3PoolDerivedState.d.ts +185 -0
  36. package/types/IUniswapV3PoolEvents.d.ts +482 -0
  37. package/types/IUniswapV3PoolImmutables.d.ts +174 -0
  38. package/types/IUniswapV3PoolOwnerActions.d.ts +168 -0
  39. package/types/IUniswapV3PoolState.d.ts +438 -0
  40. package/types/IWETH.d.ts +374 -0
  41. package/types/Initializable.d.ts +92 -0
  42. package/types/Land.d.ts +586 -0
  43. package/types/LandCore.d.ts +255 -0
  44. package/types/LandMath.d.ts +101 -0
  45. package/types/LandOwnable.d.ts +134 -0
  46. package/types/LandOwnableUpgradeable.d.ts +148 -0
  47. package/types/MockDAI.d.ts +441 -0
  48. package/types/MockUSDC.d.ts +441 -0
  49. package/types/MockUSDT.d.ts +441 -0
  50. package/types/OracleLand.d.ts +724 -0
  51. package/types/Ownable.d.ts +130 -0
  52. package/types/Pausable.d.ts +203 -0
  53. package/types/Proxy.d.ts +78 -0
  54. package/types/ProxyAdmin.d.ts +357 -0
  55. package/types/PythPriceFeed.d.ts +423 -0
  56. package/types/StandardToken.d.ts +493 -0
  57. package/types/TetherToken.d.ts +1018 -0
  58. package/types/TransparentUpgradeableProxy.d.ts +126 -0
  59. package/types/UpgradedStandardToken.d.ts +630 -0
  60. package/types/common.d.ts +35 -0
  61. package/types/factories/BasicToken__factory.js +183 -0
  62. package/types/factories/BasicToken__factory.ts +185 -0
  63. package/types/factories/BlackList__factory.js +318 -0
  64. package/types/factories/BlackList__factory.ts +320 -0
  65. package/types/factories/BlastOracleLand__factory.js +656 -0
  66. package/types/factories/BlastOracleLand__factory.ts +649 -0
  67. package/types/factories/ChainlinkPriceFeed__factory.js +378 -0
  68. package/types/factories/ChainlinkPriceFeed__factory.ts +398 -0
  69. package/types/factories/Console__factory.js +76 -0
  70. package/types/factories/Console__factory.ts +66 -0
  71. package/types/factories/CustomPriceFeed__factory.js +207 -0
  72. package/types/factories/CustomPriceFeed__factory.ts +211 -0
  73. package/types/factories/ERC1967Proxy__factory.js +132 -0
  74. package/types/factories/ERC1967Proxy__factory.ts +137 -0
  75. package/types/factories/ERC1967Upgrade__factory.js +66 -0
  76. package/types/factories/ERC1967Upgrade__factory.ts +71 -0
  77. package/types/factories/ERC20Basic__factory.js +108 -0
  78. package/types/factories/ERC20Basic__factory.ts +110 -0
  79. package/types/factories/ERC20__factory.js +193 -0
  80. package/types/factories/ERC20__factory.ts +192 -0
  81. package/types/factories/ETHOracleLand__factory.js +625 -0
  82. package/types/factories/ETHOracleLand__factory.ts +615 -0
  83. package/types/factories/FixedPriceFeed__factory.js +192 -0
  84. package/types/factories/FixedPriceFeed__factory.ts +203 -0
  85. package/types/factories/IAggregatorV3Interface__factory.js +132 -0
  86. package/types/factories/IAggregatorV3Interface__factory.ts +141 -0
  87. package/types/factories/IBeacon__factory.js +34 -0
  88. package/types/factories/IBeacon__factory.ts +36 -0
  89. package/types/factories/IBlast__factory.js +439 -0
  90. package/types/factories/IBlast__factory.ts +438 -0
  91. package/types/factories/ICoin__factory.js +34 -0
  92. package/types/factories/ICoin__factory.ts +33 -0
  93. package/types/factories/IERC1822Proxiable__factory.js +34 -0
  94. package/types/factories/IERC1822Proxiable__factory.ts +39 -0
  95. package/types/factories/IERC1967__factory.js +66 -0
  96. package/types/factories/IERC1967__factory.ts +68 -0
  97. package/types/factories/IERC20Metadata__factory.js +243 -0
  98. package/types/factories/IERC20Metadata__factory.ts +248 -0
  99. package/types/factories/IERC20Rebasing__factory.js +83 -0
  100. package/types/factories/IERC20Rebasing__factory.ts +88 -0
  101. package/types/factories/IERC20__factory.js +204 -0
  102. package/types/factories/IERC20__factory.ts +203 -0
  103. package/types/factories/ILandCore__factory.js +143 -0
  104. package/types/factories/ILandCore__factory.ts +145 -0
  105. package/types/factories/ILand__factory.js +255 -0
  106. package/types/factories/ILand__factory.ts +254 -0
  107. package/types/factories/IPriceFeed__factory.js +40 -0
  108. package/types/factories/IPriceFeed__factory.ts +42 -0
  109. package/types/factories/IPyth__factory.js +103 -0
  110. package/types/factories/IPyth__factory.ts +102 -0
  111. package/types/factories/IQuoter__factory.js +147 -0
  112. package/types/factories/IQuoter__factory.ts +149 -0
  113. package/types/factories/ITransparentUpgradeableProxy__factory.js +136 -0
  114. package/types/factories/ITransparentUpgradeableProxy__factory.ts +145 -0
  115. package/types/factories/IUniswapV3PoolActions__factory.js +241 -0
  116. package/types/factories/IUniswapV3PoolActions__factory.ts +250 -0
  117. package/types/factories/IUniswapV3PoolDerivedState__factory.js +79 -0
  118. package/types/factories/IUniswapV3PoolDerivedState__factory.ts +88 -0
  119. package/types/factories/IUniswapV3PoolEvents__factory.js +348 -0
  120. package/types/factories/IUniswapV3PoolEvents__factory.ts +357 -0
  121. package/types/factories/IUniswapV3PoolImmutables__factory.js +99 -0
  122. package/types/factories/IUniswapV3PoolImmutables__factory.ts +108 -0
  123. package/types/factories/IUniswapV3PoolOwnerActions__factory.js +73 -0
  124. package/types/factories/IUniswapV3PoolOwnerActions__factory.ts +82 -0
  125. package/types/factories/IUniswapV3PoolState__factory.js +267 -0
  126. package/types/factories/IUniswapV3PoolState__factory.ts +272 -0
  127. package/types/factories/IUniswapV3Pool__factory.js +114 -0
  128. package/types/factories/IUniswapV3Pool__factory.ts +119 -0
  129. package/types/factories/IWETH__factory.js +224 -0
  130. package/types/factories/IWETH__factory.ts +223 -0
  131. package/types/factories/Initializable__factory.js +34 -0
  132. package/types/factories/Initializable__factory.ts +36 -0
  133. package/types/factories/LandCore__factory.js +201 -0
  134. package/types/factories/LandCore__factory.ts +199 -0
  135. package/types/factories/LandMath__factory.js +76 -0
  136. package/types/factories/LandMath__factory.ts +66 -0
  137. package/types/factories/LandOwnableUpgradeable__factory.js +128 -0
  138. package/types/factories/LandOwnableUpgradeable__factory.ts +125 -0
  139. package/types/factories/LandOwnable__factory.js +126 -0
  140. package/types/factories/LandOwnable__factory.ts +118 -0
  141. package/types/factories/Land__factory.js +462 -0
  142. package/types/factories/Land__factory.ts +449 -0
  143. package/types/factories/MockDAI__factory.js +338 -0
  144. package/types/factories/MockDAI__factory.ts +328 -0
  145. package/types/factories/MockUSDC__factory.js +338 -0
  146. package/types/factories/MockUSDC__factory.ts +328 -0
  147. package/types/factories/MockUSDT__factory.js +338 -0
  148. package/types/factories/MockUSDT__factory.ts +328 -0
  149. package/types/factories/OracleLand__factory.js +537 -0
  150. package/types/factories/OracleLand__factory.ts +527 -0
  151. package/types/factories/Ownable__factory.js +73 -0
  152. package/types/factories/Ownable__factory.ts +75 -0
  153. package/types/factories/Pausable__factory.js +135 -0
  154. package/types/factories/Pausable__factory.ts +125 -0
  155. package/types/factories/ProxyAdmin__factory.js +212 -0
  156. package/types/factories/ProxyAdmin__factory.ts +202 -0
  157. package/types/factories/Proxy__factory.js +29 -0
  158. package/types/factories/Proxy__factory.ts +28 -0
  159. package/types/factories/PythPriceFeed__factory.js +378 -0
  160. package/types/factories/PythPriceFeed__factory.ts +400 -0
  161. package/types/factories/StandardToken__factory.js +305 -0
  162. package/types/factories/StandardToken__factory.ts +307 -0
  163. package/types/factories/TetherToken__factory.js +732 -0
  164. package/types/factories/TetherToken__factory.ts +749 -0
  165. package/types/factories/TransparentUpgradeableProxy__factory.js +137 -0
  166. package/types/factories/TransparentUpgradeableProxy__factory.ts +152 -0
  167. package/types/factories/UpgradedStandardToken__factory.js +375 -0
  168. package/types/factories/UpgradedStandardToken__factory.ts +384 -0
  169. package/types/hardhat.d.ts +573 -0
  170. package/types/index.js +112 -0
  171. package/types/index.ts +112 -0
@@ -0,0 +1,449 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
6
+ import { Provider, TransactionRequest } from "@ethersproject/providers";
7
+ import type { Land, LandInterface } from "../Land";
8
+
9
+ const _abi = [
10
+ {
11
+ anonymous: false,
12
+ inputs: [
13
+ {
14
+ indexed: false,
15
+ internalType: "contract ICoin",
16
+ name: "coin",
17
+ type: "address",
18
+ },
19
+ ],
20
+ name: "AddCoin",
21
+ type: "event",
22
+ },
23
+ {
24
+ anonymous: false,
25
+ inputs: [
26
+ {
27
+ indexed: false,
28
+ internalType: "uint8",
29
+ name: "version",
30
+ type: "uint8",
31
+ },
32
+ ],
33
+ name: "Initialized",
34
+ type: "event",
35
+ },
36
+ {
37
+ anonymous: false,
38
+ inputs: [
39
+ {
40
+ indexed: false,
41
+ internalType: "bytes32",
42
+ name: "account",
43
+ type: "bytes32",
44
+ },
45
+ {
46
+ indexed: false,
47
+ internalType: "contract ICoin",
48
+ name: "coin",
49
+ type: "address",
50
+ },
51
+ {
52
+ indexed: false,
53
+ internalType: "uint256",
54
+ name: "value",
55
+ type: "uint256",
56
+ },
57
+ {
58
+ indexed: false,
59
+ internalType: "uint256",
60
+ name: "coinAmount",
61
+ type: "uint256",
62
+ },
63
+ {
64
+ indexed: false,
65
+ internalType: "uint256",
66
+ name: "landAmount",
67
+ type: "uint256",
68
+ },
69
+ {
70
+ indexed: false,
71
+ internalType: "uint256",
72
+ name: "totalLandAmount",
73
+ type: "uint256",
74
+ },
75
+ ],
76
+ name: "Mint",
77
+ type: "event",
78
+ },
79
+ {
80
+ anonymous: false,
81
+ inputs: [
82
+ {
83
+ indexed: false,
84
+ internalType: "contract ICoin",
85
+ name: "coin",
86
+ type: "address",
87
+ },
88
+ ],
89
+ name: "RemoveCoin",
90
+ type: "event",
91
+ },
92
+ {
93
+ anonymous: false,
94
+ inputs: [
95
+ {
96
+ indexed: false,
97
+ internalType: "contract ICoin",
98
+ name: "coin",
99
+ type: "address",
100
+ },
101
+ {
102
+ indexed: false,
103
+ internalType: "address",
104
+ name: "to",
105
+ type: "address",
106
+ },
107
+ {
108
+ indexed: false,
109
+ internalType: "uint256",
110
+ name: "amount",
111
+ type: "uint256",
112
+ },
113
+ ],
114
+ name: "WithdrawnCoin",
115
+ type: "event",
116
+ },
117
+ {
118
+ inputs: [],
119
+ name: "LandCore",
120
+ outputs: [
121
+ {
122
+ internalType: "contract ILandCore",
123
+ name: "",
124
+ type: "address",
125
+ },
126
+ ],
127
+ stateMutability: "view",
128
+ type: "function",
129
+ },
130
+ {
131
+ inputs: [
132
+ {
133
+ internalType: "contract ICoin",
134
+ name: "coin",
135
+ type: "address",
136
+ },
137
+ ],
138
+ name: "addCoin",
139
+ outputs: [],
140
+ stateMutability: "nonpayable",
141
+ type: "function",
142
+ },
143
+ {
144
+ inputs: [
145
+ {
146
+ internalType: "bytes32",
147
+ name: "to",
148
+ type: "bytes32",
149
+ },
150
+ ],
151
+ name: "balanceOf",
152
+ outputs: [
153
+ {
154
+ internalType: "uint256",
155
+ name: "",
156
+ type: "uint256",
157
+ },
158
+ ],
159
+ stateMutability: "view",
160
+ type: "function",
161
+ },
162
+ {
163
+ inputs: [
164
+ {
165
+ internalType: "uint256",
166
+ name: "i",
167
+ type: "uint256",
168
+ },
169
+ ],
170
+ name: "coinAt",
171
+ outputs: [
172
+ {
173
+ internalType: "address",
174
+ name: "",
175
+ type: "address",
176
+ },
177
+ {
178
+ internalType: "uint256",
179
+ name: "",
180
+ type: "uint256",
181
+ },
182
+ ],
183
+ stateMutability: "view",
184
+ type: "function",
185
+ },
186
+ {
187
+ inputs: [
188
+ {
189
+ internalType: "contract ICoin",
190
+ name: "coin",
191
+ type: "address",
192
+ },
193
+ ],
194
+ name: "coinExists",
195
+ outputs: [
196
+ {
197
+ internalType: "bool",
198
+ name: "",
199
+ type: "bool",
200
+ },
201
+ ],
202
+ stateMutability: "view",
203
+ type: "function",
204
+ },
205
+ {
206
+ inputs: [],
207
+ name: "coinLength",
208
+ outputs: [
209
+ {
210
+ internalType: "uint256",
211
+ name: "",
212
+ type: "uint256",
213
+ },
214
+ ],
215
+ stateMutability: "view",
216
+ type: "function",
217
+ },
218
+ {
219
+ inputs: [
220
+ {
221
+ internalType: "contract ICoin",
222
+ name: "coin",
223
+ type: "address",
224
+ },
225
+ ],
226
+ name: "decimalsOf",
227
+ outputs: [
228
+ {
229
+ internalType: "uint8",
230
+ name: "",
231
+ type: "uint8",
232
+ },
233
+ ],
234
+ stateMutability: "view",
235
+ type: "function",
236
+ },
237
+ {
238
+ inputs: [
239
+ {
240
+ internalType: "bytes32",
241
+ name: "",
242
+ type: "bytes32",
243
+ },
244
+ {
245
+ internalType: "contract ICoin",
246
+ name: "",
247
+ type: "address",
248
+ },
249
+ ],
250
+ name: "deposits",
251
+ outputs: [
252
+ {
253
+ internalType: "uint256",
254
+ name: "",
255
+ type: "uint256",
256
+ },
257
+ ],
258
+ stateMutability: "view",
259
+ type: "function",
260
+ },
261
+ {
262
+ inputs: [
263
+ {
264
+ internalType: "contract ICoin",
265
+ name: "coin",
266
+ type: "address",
267
+ },
268
+ {
269
+ internalType: "uint256",
270
+ name: "amount",
271
+ type: "uint256",
272
+ },
273
+ ],
274
+ name: "formatValue",
275
+ outputs: [
276
+ {
277
+ internalType: "uint256",
278
+ name: "",
279
+ type: "uint256",
280
+ },
281
+ ],
282
+ stateMutability: "view",
283
+ type: "function",
284
+ },
285
+ {
286
+ inputs: [],
287
+ name: "guardian",
288
+ outputs: [
289
+ {
290
+ internalType: "address",
291
+ name: "",
292
+ type: "address",
293
+ },
294
+ ],
295
+ stateMutability: "view",
296
+ type: "function",
297
+ },
298
+ {
299
+ inputs: [],
300
+ name: "landPerCoin",
301
+ outputs: [
302
+ {
303
+ internalType: "uint64",
304
+ name: "",
305
+ type: "uint64",
306
+ },
307
+ ],
308
+ stateMutability: "view",
309
+ type: "function",
310
+ },
311
+ {
312
+ inputs: [
313
+ {
314
+ internalType: "contract ICoin",
315
+ name: "coin",
316
+ type: "address",
317
+ },
318
+ {
319
+ internalType: "bytes32",
320
+ name: "account",
321
+ type: "bytes32",
322
+ },
323
+ {
324
+ internalType: "uint256",
325
+ name: "amount",
326
+ type: "uint256",
327
+ },
328
+ ],
329
+ name: "mint",
330
+ outputs: [],
331
+ stateMutability: "nonpayable",
332
+ type: "function",
333
+ },
334
+ {
335
+ inputs: [],
336
+ name: "owner",
337
+ outputs: [
338
+ {
339
+ internalType: "address",
340
+ name: "",
341
+ type: "address",
342
+ },
343
+ ],
344
+ stateMutability: "view",
345
+ type: "function",
346
+ },
347
+ {
348
+ inputs: [],
349
+ name: "paused",
350
+ outputs: [
351
+ {
352
+ internalType: "bool",
353
+ name: "",
354
+ type: "bool",
355
+ },
356
+ ],
357
+ stateMutability: "view",
358
+ type: "function",
359
+ },
360
+ {
361
+ inputs: [
362
+ {
363
+ internalType: "contract ICoin",
364
+ name: "coin",
365
+ type: "address",
366
+ },
367
+ ],
368
+ name: "removeCoin",
369
+ outputs: [],
370
+ stateMutability: "nonpayable",
371
+ type: "function",
372
+ },
373
+ {
374
+ inputs: [],
375
+ name: "targetPriceDecimals",
376
+ outputs: [
377
+ {
378
+ internalType: "uint8",
379
+ name: "",
380
+ type: "uint8",
381
+ },
382
+ ],
383
+ stateMutability: "view",
384
+ type: "function",
385
+ },
386
+ {
387
+ inputs: [
388
+ {
389
+ internalType: "contract ICoin",
390
+ name: "coin",
391
+ type: "address",
392
+ },
393
+ {
394
+ internalType: "address",
395
+ name: "to",
396
+ type: "address",
397
+ },
398
+ {
399
+ internalType: "uint256",
400
+ name: "amount",
401
+ type: "uint256",
402
+ },
403
+ ],
404
+ name: "withdraw",
405
+ outputs: [],
406
+ stateMutability: "nonpayable",
407
+ type: "function",
408
+ },
409
+ ];
410
+
411
+ const _bytecode =
412
+ "0x608060405234801561001057600080fd5b50611581806100206000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80637f64cc25116100a2578063908d51f511610071578063908d51f51461023e578063c89dcfce14610246578063cbbcb64714610259578063ce6d603f1461026c578063d9caed121461029257600080fd5b80637f64cc25146101eb57806382f3ff821461020c57806388363bf6146102235780638da5cb5b1461023657600080fd5b80634f1c2c31116100de5780634f1c2c31146101785780635c975abb146101b05780635e2d7433146101b85780636c7f1542146101cb57600080fd5b806316da86321461011057806332bc30f614610125578063452a9320146101435780634df9ca1614610158575b600080fd5b61012361011e366004610dc8565b6102a5565b005b61012d601281565b60405161013a9190610df4565b60405180910390f35b61014b6102f2565b60405161013a9190610e0b565b61016b610166366004610dc8565b61036f565b60405161013a9190610e21565b6101a3610186366004610e40565b600560209081526000928352604080842090915290825290205481565b60405161013a9190610e83565b61016b610382565b61012d6101c6366004610dc8565b6103fa565b6101a36101d9366004610e91565b60009081526004602052604090205490565b6101fe6101f9366004610e91565b610407565b60405161013a929190610eb2565b610216620f424081565b60405161013a9190610edd565b610123610231366004610dc8565b61041e565b61014b61045f565b6101a36104b3565b610123610254366004610eeb565b6104bf565b6101a3610267366004610f3b565b610759565b600054610285906201000090046001600160a01b031681565b60405161013a9190610f82565b6101236102a0366004610fa4565b6107cf565b6102ad6102f2565b6001600160a01b0316336001600160a01b0316146102e65760405162461bcd60e51b81526004016102dd90611000565b60405180910390fd5b6102ef8161094b565b50565b60008060029054906101000a90046001600160a01b03166001600160a01b031663452a93206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610346573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036a919061101b565b905090565b600061037c600183610a22565b92915050565b60008060029054906101000a90046001600160a01b03166001600160a01b0316635c975abb6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103d6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036a919061104f565b600061037c600183610a3e565b600080610415600184610a53565b91509150915091565b6104266102f2565b6001600160a01b0316336001600160a01b0316146104565760405162461bcd60e51b81526004016102dd90611000565b6102ef81610a6f565b60008060029054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610346573d6000803e3d6000fd5b600061036a6001610ada565b6104c7610382565b156104e45760405162461bcd60e51b81526004016102dd9061108d565b6104ed8361036f565b6105095760405162461bcd60e51b81526004016102dd906110ca565b6000836001600160a01b031633308460405160240161052a939291906110da565b60408051601f198184030181529181526020820180516001600160e01b03166323b872dd60e01b1790525161055f9190611148565b6000604051808303816000865af19150503d806000811461059c576040519150601f19603f3d011682016040523d82523d6000602084013e6105a1565b606091505b50509050806105c25760405162461bcd60e51b81526004016102dd90611188565b60006105ce8584610759565b905060006105df620f4240836111ae565b90508060046000878152602001908152602001600020600082825461060491906111c6565b909155505060008581526005602090815260408083206001600160a01b038a1684529091528120805486929061063b9084906111c6565b90915550600090506001600160a01b03871661065561045f565b86604051602401610667929190610eb2565b60408051601f198184030181529181526020820180516001600160e01b031663a9059cbb60e01b1790525161069c9190611148565b6000604051808303816000865af19150503d80600081146106d9576040519150601f19603f3d011682016040523d82523d6000602084013e6106de565b606091505b50509050806106ff5760405162461bcd60e51b81526004016102dd90611205565b600086815260046020526040908190205490517f6c25b193a57bcfde4968cefddf7b4de59a5058812b4da55cb997fafd9e93fdc2916107489189918b918a918991899190611215565b60405180910390a150505050505050565b600080610765846103fa565b9050601260ff8216101561079b5761077e81601261126f565b61078990600a61139a565b61079390846111ae565b91505061037c565b601260ff821611156107c7576107b281601261126f565b6107bd90600a61139a565b61079390846113c5565b509092915050565b6107d761045f565b6001600160a01b0316336001600160a01b0316146108075760405162461bcd60e51b81526004016102dd906113fa565b6001600160a01b0383161561088d5760405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906108449085908590600401610eb2565b6020604051808303816000875af1158015610863573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610887919061104f565b5061090b565b6000826001600160a01b0316826040516108a69061140a565b60006040518083038185875af1925050503d80600081146108e3576040519150601f19603f3d011682016040523d82523d6000602084013e6108e8565b606091505b50509050806109095760405162461bcd60e51b81526004016102dd9061143d565b505b7f0ab59fee85bfb311ebc31e0ec8447cb4be3efc3381ec18bfdbea0fda61f9058183838360405161093e9392919061144d565b60405180910390a1505050565b6109548161036f565b156109715760405162461bcd60e51b81526004016102dd90611483565b6000816001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d591906114a7565b90506109e660018360ff8416610ae5565b507f2ab2c06fd2d8302b1e22cbd5f1e649cac91185838abf693cce465aa2c7ac48c182604051610a169190610f82565b60405180910390a15050565b6000610a37836001600160a01b038416610b03565b9392505050565b6000610a37836001600160a01b038416610b0f565b6000808080610a628686610b4f565b9097909650945050505050565b610a788161036f565b610a945760405162461bcd60e51b81526004016102dd906110ca565b610a9f600182610b7a565b507facfb0f9f01902d0db1b0291da3b60229e2f15b74d078f3fcc726331181c5a77781604051610acf9190610f82565b60405180910390a150565b600061037c82610b8f565b6000610afb846001600160a01b03851684610b9a565b949350505050565b6000610a378383610bb7565b600081815260028301602052604081205480151580610b335750610b338484610b03565b610a375760405162461bcd60e51b81526004016102dd906114fc565b60008080610b5d8585610bcf565b600081815260029690960160205260409095205494959350505050565b6000610a37836001600160a01b038416610bdb565b600061037c82610bf8565b60008281526002840160205260408120829055610afb8484610c02565b60008181526001830160205260408120541515610a37565b6000610a378383610c0e565b60008181526002830160205260408120819055610a378383610c38565b600061037c825490565b6000610a378383610c44565b6000826000018281548110610c2557610c2561150c565b9060005260206000200154905092915050565b6000610a378383610c93565b6000818152600183016020526040812054610c8b5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561037c565b50600061037c565b60008181526001830160205260408120548015610d7c576000610cb7600183611522565b8554909150600090610ccb90600190611522565b9050818114610d30576000866000018281548110610ceb57610ceb61150c565b9060005260206000200154905080876000018481548110610d0e57610d0e61150c565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610d4157610d41611535565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061037c565b600091505061037c565b5092915050565b60006001600160a01b03821661037c565b600061037c82610d8d565b610db281610d9e565b81146102ef57600080fd5b803561037c81610da9565b600060208284031215610ddd57610ddd600080fd5b6000610afb8484610dbd565b60ff81165b82525050565b6020810161037c8284610de9565b610dee81610d8d565b6020810161037c8284610e02565b801515610dee565b6020810161037c8284610e19565b80610db2565b803561037c81610e2f565b60008060408385031215610e5657610e56600080fd5b6000610e628585610e35565b9250506020610e7385828601610dbd565b9150509250929050565b80610dee565b6020810161037c8284610e7d565b600060208284031215610ea657610ea6600080fd5b6000610afb8484610e35565b60408101610ec08285610e02565b610a376020830184610e7d565b67ffffffffffffffff8116610dee565b6020810161037c8284610ecd565b600080600060608486031215610f0357610f03600080fd5b6000610f0f8686610dbd565b9350506020610f2086828701610e35565b9250506040610f3186828701610e35565b9150509250925092565b60008060408385031215610f5157610f51600080fd5b6000610f5d8585610dbd565b9250506020610e7385828601610e35565b600061037c82610d9e565b610dee81610f6e565b6020810161037c8284610f79565b610db281610d8d565b803561037c81610f90565b600080600060608486031215610fbc57610fbc600080fd5b6000610fc88686610dbd565b9350506020610f2086828701610f99565b600d81526000602082016c27b7363c9033bab0b93234b0b760991b815291505b5060200190565b6020808252810161037c81610fd9565b805161037c81610f90565b60006020828403121561103057611030600080fd5b6000610afb8484611010565b801515610db2565b805161037c8161103c565b60006020828403121561106457611064600080fd5b6000610afb8484611044565b60068152600060208201651c185d5cd95960d21b81529150610ff9565b6020808252810161037c81611070565b60168152600060208201752630b7321d103737b732bc34b9ba32b73a1031b7b4b760511b81529150610ff9565b6020808252810161037c8161109d565b606081016110e88286610e02565b6110f56020830185610e02565b610afb6040830184610e7d565b60005b8381101561111d578181015183820152602001611105565b50506000910152565b6000611130825190565b61113e818560208601611102565b9290920192915050565b6000610a378284611126565b601a81526000602082017f4c616e643a207472616e736665722066726f6d206661696c656400000000000081529150610ff9565b6020808252810161037c81611154565b634e487b7160e01b600052601160045260246000fd5b818102808215838204851417610d8657610d86611198565b8082018082111561037c5761037c611198565b601581526000602082017413185b990e881d1c985b9cd9995c8819985a5b1959605a1b81529150610ff9565b6020808252810161037c816111d9565b60c081016112238289610e7d565b6112306020830188610f79565b61123d6040830187610e7d565b61124a6060830186610e7d565b6112576080830185610e7d565b61126460a0830184610e7d565b979650505050505050565b60ff91821691908116908282039081111561037c5761037c611198565b80825b60018511156112cb578086048111156112aa576112aa611198565b60018516156112b857908102905b80026112c48560011c90565b945061128f565b94509492505050565b6000826112e357506001610a37565b816112f057506000610a37565b816001811461130657600281146113105761133d565b6001915050610a37565b60ff84111561132157611321611198565b8360020a91508482111561133757611337611198565b50610a37565b5060208310610133831016604e8410600b8410161715611370575081810a8381111561136b5761136b611198565b610a37565b61137d848484600161128c565b9250905081840481111561139357611393611198565b0292915050565b600060ff83169250610a3760001984846112d4565b634e487b7160e01b600052601260045260246000fd5b6000826113d4576113d46113af565b500490565b600a81526000602082016927b7363c9037bbb732b960b11b81529150610ff9565b6020808252810161037c816113d9565b60008161037c565b601481526000602082017313185b990e881d1c985b99995c8819985a5b195960621b81529150610ff9565b6020808252810161037c81611412565b606081016110e88286610f79565b60118152600060208201704c616e643a20636f696e2065786973747360781b81529150610ff9565b6020808252810161037c8161145b565b60ff8116610db2565b805161037c81611493565b6000602082840312156114bc576114bc600080fd5b6000610afb848461149c565b601e81526000602082017f456e756d657261626c654d61703a206e6f6e6578697374656e74206b6579000081529150610ff9565b6020808252810161037c816114c8565b634e487b7160e01b600052603260045260246000fd5b8181038181111561037c5761037c611198565b634e487b7160e01b600052603160045260246000fdfea264697066735822122005c01063d2cf10477fc33774e8ca7c9fa1db17aceb0b562c601a1511e3a457c864736f6c63430008130033";
413
+
414
+ export class Land__factory extends ContractFactory {
415
+ constructor(
416
+ ...args: [signer: Signer] | ConstructorParameters<typeof ContractFactory>
417
+ ) {
418
+ if (args.length === 1) {
419
+ super(_abi, _bytecode, args[0]);
420
+ } else {
421
+ super(...args);
422
+ }
423
+ }
424
+
425
+ deploy(
426
+ overrides?: Overrides & { from?: string | Promise<string> }
427
+ ): Promise<Land> {
428
+ return super.deploy(overrides || {}) as Promise<Land>;
429
+ }
430
+ getDeployTransaction(
431
+ overrides?: Overrides & { from?: string | Promise<string> }
432
+ ): TransactionRequest {
433
+ return super.getDeployTransaction(overrides || {});
434
+ }
435
+ attach(address: string): Land {
436
+ return super.attach(address) as Land;
437
+ }
438
+ connect(signer: Signer): Land__factory {
439
+ return super.connect(signer) as Land__factory;
440
+ }
441
+ static readonly bytecode = _bytecode;
442
+ static readonly abi = _abi;
443
+ static createInterface(): LandInterface {
444
+ return new utils.Interface(_abi) as LandInterface;
445
+ }
446
+ static connect(address: string, signerOrProvider: Signer | Provider): Land {
447
+ return new Contract(address, _abi, signerOrProvider) as Land;
448
+ }
449
+ }