@ton-agent-kit/plugin-identity 1.3.0 → 1.5.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton-agent-kit/plugin-identity",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "Identity plugin for TON Agent Kit — agent registry, discovery, and reputation",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -1850,6 +1850,69 @@ export function dictValueParserOfferData(): DictionaryValue<OfferData> {
1850
1850
  }
1851
1851
  }
1852
1852
 
1853
+ export type StorageInfo = {
1854
+ $$type: 'StorageInfo';
1855
+ storageFund: bigint;
1856
+ totalCells: bigint;
1857
+ annualCost: bigint;
1858
+ yearsCovered: bigint;
1859
+ }
1860
+
1861
+ export function storeStorageInfo(src: StorageInfo) {
1862
+ return (builder: Builder) => {
1863
+ const b_0 = builder;
1864
+ b_0.storeCoins(src.storageFund);
1865
+ b_0.storeUint(src.totalCells, 32);
1866
+ b_0.storeCoins(src.annualCost);
1867
+ b_0.storeUint(src.yearsCovered, 32);
1868
+ };
1869
+ }
1870
+
1871
+ export function loadStorageInfo(slice: Slice) {
1872
+ const sc_0 = slice;
1873
+ const _storageFund = sc_0.loadCoins();
1874
+ const _totalCells = sc_0.loadUintBig(32);
1875
+ const _annualCost = sc_0.loadCoins();
1876
+ const _yearsCovered = sc_0.loadUintBig(32);
1877
+ return { $$type: 'StorageInfo' as const, storageFund: _storageFund, totalCells: _totalCells, annualCost: _annualCost, yearsCovered: _yearsCovered };
1878
+ }
1879
+
1880
+ export function loadTupleStorageInfo(source: TupleReader) {
1881
+ const _storageFund = source.readBigNumber();
1882
+ const _totalCells = source.readBigNumber();
1883
+ const _annualCost = source.readBigNumber();
1884
+ const _yearsCovered = source.readBigNumber();
1885
+ return { $$type: 'StorageInfo' as const, storageFund: _storageFund, totalCells: _totalCells, annualCost: _annualCost, yearsCovered: _yearsCovered };
1886
+ }
1887
+
1888
+ export function loadGetterTupleStorageInfo(source: TupleReader) {
1889
+ const _storageFund = source.readBigNumber();
1890
+ const _totalCells = source.readBigNumber();
1891
+ const _annualCost = source.readBigNumber();
1892
+ const _yearsCovered = source.readBigNumber();
1893
+ return { $$type: 'StorageInfo' as const, storageFund: _storageFund, totalCells: _totalCells, annualCost: _annualCost, yearsCovered: _yearsCovered };
1894
+ }
1895
+
1896
+ export function storeTupleStorageInfo(source: StorageInfo) {
1897
+ const builder = new TupleBuilder();
1898
+ builder.writeNumber(source.storageFund);
1899
+ builder.writeNumber(source.totalCells);
1900
+ builder.writeNumber(source.annualCost);
1901
+ builder.writeNumber(source.yearsCovered);
1902
+ return builder.build();
1903
+ }
1904
+
1905
+ export function dictValueParserStorageInfo(): DictionaryValue<StorageInfo> {
1906
+ return {
1907
+ serialize: (src, builder) => {
1908
+ builder.storeRef(beginCell().store(storeStorageInfo(src)).endCell());
1909
+ },
1910
+ parse: (src) => {
1911
+ return loadStorageInfo(src.loadRef().beginParse());
1912
+ }
1913
+ }
1914
+ }
1915
+
1853
1916
  export type Reputation$Data = {
1854
1917
  $$type: 'Reputation$Data';
1855
1918
  owner: Address;
@@ -1888,6 +1951,8 @@ export type Reputation$Data = {
1888
1951
  intentCleanupCursor: bigint;
1889
1952
  agentActiveIntents: Dictionary<Address, bigint>;
1890
1953
  maxIntentsPerAgent: bigint;
1954
+ storageFund: bigint;
1955
+ accumulatedFees: bigint;
1891
1956
  }
1892
1957
 
1893
1958
  export function storeReputation$Data(src: Reputation$Data) {
@@ -1937,6 +2002,8 @@ export function storeReputation$Data(src: Reputation$Data) {
1937
2002
  b_8.storeUint(src.intentCleanupCursor, 32);
1938
2003
  b_8.storeDict(src.agentActiveIntents, Dictionary.Keys.Address(), Dictionary.Values.BigInt(257));
1939
2004
  b_8.storeUint(src.maxIntentsPerAgent, 8);
2005
+ b_8.storeCoins(src.storageFund);
2006
+ b_8.storeCoins(src.accumulatedFees);
1940
2007
  b_7.storeRef(b_8.endCell());
1941
2008
  b_6.storeRef(b_7.endCell());
1942
2009
  b_5.storeRef(b_6.endCell());
@@ -1994,7 +2061,9 @@ export function loadReputation$Data(slice: Slice) {
1994
2061
  const _intentCleanupCursor = sc_8.loadUintBig(32);
1995
2062
  const _agentActiveIntents = Dictionary.load(Dictionary.Keys.Address(), Dictionary.Values.BigInt(257), sc_8);
1996
2063
  const _maxIntentsPerAgent = sc_8.loadUintBig(8);
1997
- return { $$type: 'Reputation$Data' as const, owner: _owner, fee: _fee, agentCount: _agentCount, agentOwners: _agentOwners, agentAvailable: _agentAvailable, agentTotalTasks: _agentTotalTasks, agentSuccesses: _agentSuccesses, agentRegisteredAt: _agentRegisteredAt, agentLastActive: _agentLastActive, nameToIndex: _nameToIndex, capabilityIndex: _capabilityIndex, openDisputes: _openDisputes, disputeDepositors: _disputeDepositors, disputeBeneficiaries: _disputeBeneficiaries, disputeAmounts: _disputeAmounts, disputeDeadlines: _disputeDeadlines, disputeSettled: _disputeSettled, disputeCount: _disputeCount, cleanupCursor: _cleanupCursor, intents: _intents, intentServiceHashes: _intentServiceHashes, intentBudgets: _intentBudgets, intentDeadlines: _intentDeadlines, intentStatuses: _intentStatuses, intentAcceptedOffer: _intentAcceptedOffer, intentCount: _intentCount, intentsByService: _intentsByService, offers: _offers, offerIntents: _offerIntents, offerPrices: _offerPrices, offerDeliveryTimes: _offerDeliveryTimes, offerStatuses: _offerStatuses, offerCount: _offerCount, intentCleanupCursor: _intentCleanupCursor, agentActiveIntents: _agentActiveIntents, maxIntentsPerAgent: _maxIntentsPerAgent };
2064
+ const _storageFund = sc_8.loadCoins();
2065
+ const _accumulatedFees = sc_8.loadCoins();
2066
+ return { $$type: 'Reputation$Data' as const, owner: _owner, fee: _fee, agentCount: _agentCount, agentOwners: _agentOwners, agentAvailable: _agentAvailable, agentTotalTasks: _agentTotalTasks, agentSuccesses: _agentSuccesses, agentRegisteredAt: _agentRegisteredAt, agentLastActive: _agentLastActive, nameToIndex: _nameToIndex, capabilityIndex: _capabilityIndex, openDisputes: _openDisputes, disputeDepositors: _disputeDepositors, disputeBeneficiaries: _disputeBeneficiaries, disputeAmounts: _disputeAmounts, disputeDeadlines: _disputeDeadlines, disputeSettled: _disputeSettled, disputeCount: _disputeCount, cleanupCursor: _cleanupCursor, intents: _intents, intentServiceHashes: _intentServiceHashes, intentBudgets: _intentBudgets, intentDeadlines: _intentDeadlines, intentStatuses: _intentStatuses, intentAcceptedOffer: _intentAcceptedOffer, intentCount: _intentCount, intentsByService: _intentsByService, offers: _offers, offerIntents: _offerIntents, offerPrices: _offerPrices, offerDeliveryTimes: _offerDeliveryTimes, offerStatuses: _offerStatuses, offerCount: _offerCount, intentCleanupCursor: _intentCleanupCursor, agentActiveIntents: _agentActiveIntents, maxIntentsPerAgent: _maxIntentsPerAgent, storageFund: _storageFund, accumulatedFees: _accumulatedFees };
1998
2067
  }
1999
2068
 
2000
2069
  export function loadTupleReputation$Data(source: TupleReader) {
@@ -2036,7 +2105,9 @@ export function loadTupleReputation$Data(source: TupleReader) {
2036
2105
  const _intentCleanupCursor = source.readBigNumber();
2037
2106
  const _agentActiveIntents = Dictionary.loadDirect(Dictionary.Keys.Address(), Dictionary.Values.BigInt(257), source.readCellOpt());
2038
2107
  const _maxIntentsPerAgent = source.readBigNumber();
2039
- return { $$type: 'Reputation$Data' as const, owner: _owner, fee: _fee, agentCount: _agentCount, agentOwners: _agentOwners, agentAvailable: _agentAvailable, agentTotalTasks: _agentTotalTasks, agentSuccesses: _agentSuccesses, agentRegisteredAt: _agentRegisteredAt, agentLastActive: _agentLastActive, nameToIndex: _nameToIndex, capabilityIndex: _capabilityIndex, openDisputes: _openDisputes, disputeDepositors: _disputeDepositors, disputeBeneficiaries: _disputeBeneficiaries, disputeAmounts: _disputeAmounts, disputeDeadlines: _disputeDeadlines, disputeSettled: _disputeSettled, disputeCount: _disputeCount, cleanupCursor: _cleanupCursor, intents: _intents, intentServiceHashes: _intentServiceHashes, intentBudgets: _intentBudgets, intentDeadlines: _intentDeadlines, intentStatuses: _intentStatuses, intentAcceptedOffer: _intentAcceptedOffer, intentCount: _intentCount, intentsByService: _intentsByService, offers: _offers, offerIntents: _offerIntents, offerPrices: _offerPrices, offerDeliveryTimes: _offerDeliveryTimes, offerStatuses: _offerStatuses, offerCount: _offerCount, intentCleanupCursor: _intentCleanupCursor, agentActiveIntents: _agentActiveIntents, maxIntentsPerAgent: _maxIntentsPerAgent };
2108
+ const _storageFund = source.readBigNumber();
2109
+ const _accumulatedFees = source.readBigNumber();
2110
+ return { $$type: 'Reputation$Data' as const, owner: _owner, fee: _fee, agentCount: _agentCount, agentOwners: _agentOwners, agentAvailable: _agentAvailable, agentTotalTasks: _agentTotalTasks, agentSuccesses: _agentSuccesses, agentRegisteredAt: _agentRegisteredAt, agentLastActive: _agentLastActive, nameToIndex: _nameToIndex, capabilityIndex: _capabilityIndex, openDisputes: _openDisputes, disputeDepositors: _disputeDepositors, disputeBeneficiaries: _disputeBeneficiaries, disputeAmounts: _disputeAmounts, disputeDeadlines: _disputeDeadlines, disputeSettled: _disputeSettled, disputeCount: _disputeCount, cleanupCursor: _cleanupCursor, intents: _intents, intentServiceHashes: _intentServiceHashes, intentBudgets: _intentBudgets, intentDeadlines: _intentDeadlines, intentStatuses: _intentStatuses, intentAcceptedOffer: _intentAcceptedOffer, intentCount: _intentCount, intentsByService: _intentsByService, offers: _offers, offerIntents: _offerIntents, offerPrices: _offerPrices, offerDeliveryTimes: _offerDeliveryTimes, offerStatuses: _offerStatuses, offerCount: _offerCount, intentCleanupCursor: _intentCleanupCursor, agentActiveIntents: _agentActiveIntents, maxIntentsPerAgent: _maxIntentsPerAgent, storageFund: _storageFund, accumulatedFees: _accumulatedFees };
2040
2111
  }
2041
2112
 
2042
2113
  export function loadGetterTupleReputation$Data(source: TupleReader) {
@@ -2076,7 +2147,9 @@ export function loadGetterTupleReputation$Data(source: TupleReader) {
2076
2147
  const _intentCleanupCursor = source.readBigNumber();
2077
2148
  const _agentActiveIntents = Dictionary.loadDirect(Dictionary.Keys.Address(), Dictionary.Values.BigInt(257), source.readCellOpt());
2078
2149
  const _maxIntentsPerAgent = source.readBigNumber();
2079
- return { $$type: 'Reputation$Data' as const, owner: _owner, fee: _fee, agentCount: _agentCount, agentOwners: _agentOwners, agentAvailable: _agentAvailable, agentTotalTasks: _agentTotalTasks, agentSuccesses: _agentSuccesses, agentRegisteredAt: _agentRegisteredAt, agentLastActive: _agentLastActive, nameToIndex: _nameToIndex, capabilityIndex: _capabilityIndex, openDisputes: _openDisputes, disputeDepositors: _disputeDepositors, disputeBeneficiaries: _disputeBeneficiaries, disputeAmounts: _disputeAmounts, disputeDeadlines: _disputeDeadlines, disputeSettled: _disputeSettled, disputeCount: _disputeCount, cleanupCursor: _cleanupCursor, intents: _intents, intentServiceHashes: _intentServiceHashes, intentBudgets: _intentBudgets, intentDeadlines: _intentDeadlines, intentStatuses: _intentStatuses, intentAcceptedOffer: _intentAcceptedOffer, intentCount: _intentCount, intentsByService: _intentsByService, offers: _offers, offerIntents: _offerIntents, offerPrices: _offerPrices, offerDeliveryTimes: _offerDeliveryTimes, offerStatuses: _offerStatuses, offerCount: _offerCount, intentCleanupCursor: _intentCleanupCursor, agentActiveIntents: _agentActiveIntents, maxIntentsPerAgent: _maxIntentsPerAgent };
2150
+ const _storageFund = source.readBigNumber();
2151
+ const _accumulatedFees = source.readBigNumber();
2152
+ return { $$type: 'Reputation$Data' as const, owner: _owner, fee: _fee, agentCount: _agentCount, agentOwners: _agentOwners, agentAvailable: _agentAvailable, agentTotalTasks: _agentTotalTasks, agentSuccesses: _agentSuccesses, agentRegisteredAt: _agentRegisteredAt, agentLastActive: _agentLastActive, nameToIndex: _nameToIndex, capabilityIndex: _capabilityIndex, openDisputes: _openDisputes, disputeDepositors: _disputeDepositors, disputeBeneficiaries: _disputeBeneficiaries, disputeAmounts: _disputeAmounts, disputeDeadlines: _disputeDeadlines, disputeSettled: _disputeSettled, disputeCount: _disputeCount, cleanupCursor: _cleanupCursor, intents: _intents, intentServiceHashes: _intentServiceHashes, intentBudgets: _intentBudgets, intentDeadlines: _intentDeadlines, intentStatuses: _intentStatuses, intentAcceptedOffer: _intentAcceptedOffer, intentCount: _intentCount, intentsByService: _intentsByService, offers: _offers, offerIntents: _offerIntents, offerPrices: _offerPrices, offerDeliveryTimes: _offerDeliveryTimes, offerStatuses: _offerStatuses, offerCount: _offerCount, intentCleanupCursor: _intentCleanupCursor, agentActiveIntents: _agentActiveIntents, maxIntentsPerAgent: _maxIntentsPerAgent, storageFund: _storageFund, accumulatedFees: _accumulatedFees };
2080
2153
  }
2081
2154
 
2082
2155
  export function storeTupleReputation$Data(source: Reputation$Data) {
@@ -2117,6 +2190,8 @@ export function storeTupleReputation$Data(source: Reputation$Data) {
2117
2190
  builder.writeNumber(source.intentCleanupCursor);
2118
2191
  builder.writeCell(source.agentActiveIntents.size > 0 ? beginCell().storeDictDirect(source.agentActiveIntents, Dictionary.Keys.Address(), Dictionary.Values.BigInt(257)).endCell() : null);
2119
2192
  builder.writeNumber(source.maxIntentsPerAgent);
2193
+ builder.writeNumber(source.storageFund);
2194
+ builder.writeNumber(source.accumulatedFees);
2120
2195
  return builder.build();
2121
2196
  }
2122
2197
 
@@ -2144,7 +2219,7 @@ function initReputation_init_args(src: Reputation_init_args) {
2144
2219
  }
2145
2220
 
2146
2221
  async function Reputation_init(owner: Address) {
2147
- const __code = Cell.fromHex('b5ee9c724102a1010034a100022cff008e88f4a413f4bcf2c80bed53208e8130e1ed43d9013d020271021902012003080201200406033fb731bda89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed88303e400500045612033fb7a7bda89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed88303e400700045621020120090c03f3b7431da89a1a400031d0ff4800203a3b679c61a224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222a2228222a222822262228222703e400a01481112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c410b002c8307561c0280204133f40e6fa19401d70130925b6de20201480d1003f3ad98f6a268690000c743fd200080e8ed9e7186889188920891889108918891089088910890889008908890088f8890088f888f088f888f088e888f088e888e088e888e088d888e088d888d088d888d088c888d088c888c088c888c088b888c088b888b088b888b088a888b088a888a088a888a0889888a0889c03e400e01481112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c410f001c8307561b0259f40f6fa192306ddf020148111503f1a419da89a1a400031d0ff4800203a3b679c61a224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222a2228222a22282226222822273e401201741112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c41206e92306d99206ef2d0806f256f05e2206e92306dde1301de20c100917f94205623bee292306de0562180202259f40e6fa192306ddf206e925b6de080202056225422434133f40e6fa19401d70130925b6de280202056225422534133f40e6fa19401d70130925b6de280202056225422634133f40e6fa19401d70130925b6de2802056254016711400a64133f40e6fa19401d70030925b6de203206ef2d080236eb39603206ef2d080923370e2226eb39602206ef2d080923270e2216eb39601206ef2d080923170e2246eb39604206ef2d080923470e2103441306f0503f1a701da89a1a400031d0ff4800203a3b679c61a224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222a2228222a22282226222822273e401601401112111311121111111211111110111111100f11100f550edb3c6ce76ce76c871701e8561180202259f40e6fa192306ddf206ef2d0802e802023784133f40e6fa19401d70130925b6de2206ef2d08080202056125422534133f40e6fa19401d70130925b6de2206ef2d0807080202056125422734133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e2561480202683071800804133f40e6fa19401d70130925b6de2206ef2d0808020561540178101014133f40e6fa19401d70030925b6de2206ef2d08023c00094f82323be9170e2105644400201201a320201201b2c0201201c290201201d1f033facaf76a268690000c743fd200080e8ed9e7186ed9e2b882f87ab882f87b620c03e401e00022a020148202503f1a785da89a1a400031d0ff4800203a3b679c61a224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222a2228222a22282226222822273e402101441112111311121111111211111110111111100f11100f550edb3c6caa6caa6caa6c6a2201f6562180202259f40e6fa192306ddf6e99707054700053007021e07080202056225422434133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27080202056225422534133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27022c2009630a76421a9049131e27080202056225422632301f84133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27080202056225422734133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27021c2009b30f82321a182015180a904de7023c2009b30f82323a182015180a904de7026c2639325c1149170e2923071de20c0009323c2009170e22400809af82324a18208278d00bc9170e2923072de20c0009326c0009170e29324c2009170e29af82325a18208093a80bc9170e2923073de7f21c2001850060504431303f1a41bda89a1a400031d0ff4800203a3b679c61a224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222a2228222a22282226222822273e402601401112111311121111111211111110111111100f11100f550edb3c6cf56cf56c652701f02980202259f40e6fa192306ddf206ef2d0808020545a0052404133f40e6fa19401d70130925b6de2206ef2d080298020248101014133f40e6fa19401d70030925b6de2206ef2d0808020545a0052604133f40e6fa19401d70130925b6de2206ef2d0808020544a16784133f40e6fa19401d70130925b6de2280012206ef2d0801034413003f3b30dbb513434800063a1fe9000407476cf38c34448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c4458445444584454445044544450444c4450444e03e402a01481112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c412b001a83072b0259f40f6fa192306ddf0201202d2f033fb3a37b513434800063a1fe9000407476cf38c376cf15c417c3d5c417c3db10603e402e0008f8276f1003f3b0357b513434800063a1fe9000407476cf38c34448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c4458445444584454445044544450444c4450444e03e403001481112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c413100c820c100917f94205623bee2923070e080202056215422334133f40e6fa19401d70130925b6de2206e917f9820206ef2d080c000e2925b70e080202056210350444133f40e6fa19401d70130925b6de2206e925b70e0206ef2d080a76401206ef2d080a904020120333b02016a343803f2ab3eed44d0d200018e87fa400101d1db3ce30d112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411133e403501741112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c41206e92306d99206ef2d0806f266f06e2206e92306dde3601f620c100917f94205614bee292306de0561980202259f40e6fa192306ddf206e925b6de05615802023714133f40e6fa19401d70030925b6de201206ef2d080561a80202459f40e6fa192306ddf206ef2d080561a80202559f40e6fa192306ddf206ef2d080561a8020268101014133f40e6fa19401d70030925b6de237006c206ef2d080802020561c0350884133f40e6fa19401d70130925b6de2206ef2d080246eb39604206ef2d080923470e210354430126f0603f2a9b4ed44d0d200018e87fa400101d1db3ce30d112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411133e403901481112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c413a004681010b23028101014133f40a6fa19401d70030925b6de2206eb395206ef2d080e03070033fb42a3da89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed88303e403c000223049801d072d721d200d200fa4021103450666f04f86102f862ed44d0d200018e87fa400101d1db3ce30d1125965f0f5f0f5f07e01123d70d1ff2e08221821038a0a307bae302218210a7262e8eba3e40434901f46d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d8208989680705470005300061121060511200506111f0605111e0506111d0605111c0506111b0605111a0506111906051118050611170605111605061115060511140506111306051112050411110403111003106f105e104d103c106b105a3f00141029104810374104037a01f8db3c5724112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f550e4101ecfa40fa00d31ff404d401d0f404f404f404d430d0f404f404f404d430d0f404f404f404d430d0f404f404f404d430d0f404d31fd31ff404f404d430d0f404f404f404d430d0f404d31ff404f404d430d0f404f404f404d430d0f404d31fd31ff404d3073011201124112011201123112011201122112042000c11201121112003f631d401d001d431d200308160adf8416f24135f035624bef2f4019b9320d74a91d5e868f90400da11561a83072280204133f40e6fa19401d70130925b6de2206eb3e30f112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a111b1118111a111844454700d431206ef2d080562080202259f40e6fa192306ddf817b16216eb39bf84202206ef2d08012c705923170e2f2f401111f0180205110112171216e955b59f45b3098c801cf004133f443e28020f8232104111d04102302112102216e955b59f45b3098c801cf014133f443e201fe3056218020f84202112302562301206e953059f45b30944133f416e2011120018020015622500471216e955b59f45b3098c801cf004133f443e28020702103112103562359216e955b59f45b3098c801cf014133f443e28020702103112003562359216e955b59f45b3098c801cf014133f443e28020f8232103111f0356234600e659216e955b59f45b3098c801cf014133f443e28020f8232103111e03562359216e955b59f45b3098c801cf014133f443e202111a028307020111200111218020216e955b59f45b3098c801cf014133f443e2111fa4111f111c111d111c111b111c111b111a111b111a1119111a11191118111903fe1117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a1079106810571046103544301272db3c56228208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf4070994801aa025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00c87f01ca0011241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed549e02fc8efa31d401d001d200308160adf8416f24135f035624bef2f4019b9320d74a91d5e868f90400da118307561b0280204133f40e6fa19401d70130925b6de2816cce216eb3f2f4206ef2d08080202056205422334133f40e6fa19401d70130925b6de2206e95816ccef2f0de802001206ef2d080a42103112103562159e0214a4d01fc216e955b59f45b3098c801cf014133f443e2018e3b80205300561f595621014133f40e6fa19401d70130925b6de2206ef2d080a42103111f03562059216e955b59f45b3098c801cf014133f443e2111cde8020f8232104111d04102302112002216e955b59f45b3098c801cf014133f443e21121112311211120112211204b01fc111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a111b1118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443012714c0398db3c56228208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb0070999d044a821054e26a4bbae302218210148534b8bae3022182108711bf6fbae3022182102f7e5059ba4e51545601fc31d401d001d20030019b9320d74a91d5e868f90400da118307561b0280204133f40e6fa19401d70130925b6de2816cce216eb3f2f4206ef2d080562080202259f40e6fa192306ddf820097a4216eb39bf84202206ef2d08012c705923170e2f2f401111f0180205110112171216e955b59f45b3098c801cf004133f443e24f02fa8020f8232104111d04102302112102216e955b59f45b3098c801cf014133f443e256208208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112111231121112011221120111f1121111f995001ee111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a111b1118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910681057104610354430129d01f831d31fd3ff30562080202359f40e6fa192306ddf816cce216eb3f2f4811bd6f84202206ef2d08012c705f2f48020f8232103111e032459216e955b59f45b3098c801cf014133f443e256198307561d59f40f6fa192306ddfc813cb1f226eb39c7101cb0002206ef2d08058cc95327058cb00e2830701c903111a03125202f401111c01206e953059f45b30944133f417e256208208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112111231121112011221120111f1121111f111e1120111e111d111f111d995301d6111c111e111c111b111d111b111a111c111a1119111b11191118111a111811191116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910681057104610354430129d01fe31d3073020c23293308032de20c101923071de112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311115503e61110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443012db3c56228208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb0070999d02fe8efc31fa40fa40fa40fa00d31f3001111b0180200156165006206e953059f45b30944133f416e20111190180200156155004206e953059f45b30944133f416e201111701802001561401111a206e953059f45b30944133f416e201111501802001561301111a810101216e955b59f45b3098c801cf004133f443e2802020e0575902fc0311150312561302111701216e955b59f45b3098c801cf014133f443e21111802056117071216e955b59f45b3098c801cf004133f443e21110a456208208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2995801e4f400c901fb00112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a111811171119111711141118111411151117111511131115111311111114111111101113111011120f11110f0e11100e551d9d044c218210bfa05986bae3022182102365d020bae302218210966dc6edbae3022182106d5af6a7ba5a5d608404fe31fa40307094205613b98e3e561880202259f40e6fa192306ddf206eb398206ef2d08022c705923070e28e1c1113802056147f71216e955b59f45b3098c801cf004133f443e21113dea4e85b56208208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb08a8a995b875c00065bcf8101fee2f400c901fb00112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df551c9d02fa5b8168c9f8425623c705f2f47081008270885625553010246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a5e5f002400000000466565732077697468647261776e01fc1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df551cc87f01ca0011241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed549e02fc31d3fffa00d31f30811127f8235220bcf2f48159c222c200f2f47081010bf8425628598101014133f40a6fa19401d70030925b6de2206eb39631206ef2d0809130e2205628bee3008020f8420211140252e0206e953059f45b30944133f416e21111802053d48307216e955b59f45b3098c801cf014133f443e201111001616801f4f842112411261124112311251123112211261122112111251121112011261120111f1125111f111e1126111e111d1125111d111c1126111c111b1125111b111a1126111a1119112511191118112611181117112511171116112611161115112511151114112611141113112511131112112611121111112511116202f81110112611100f11250f0e11260e0d11250d0c11260c0b11250b0a11260a091125090811260807112507061126060511250504112604031125030211270201112801db3c8e2a572781010bf84222598101014133f40a6fa19401d70030925b6de2206eb395206ef2d080923070e21127de811d38562822b9f2f411276366012ceda2edfb70209a21c13293530db99170e28ae85f03706402fe561380202259f40e6fa192306ddf5610802023784133f40e6fa19401d70130925b6de2216eb39901206ef2d08024c705923170e293206eb39170e297206ef2d080c000923070e28eb280202056125422334133f40e6fa19401d70130925b6de2206eb399f82301206ef2d080be923070e28e876c21db3c7fdb31e0dea401a47a6500020101f801112601112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211106700400f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035102401fe80205420d4810101216e955b59f45b3098c801cf004133f443e280202003111003544d13111201216e955b59f45b3098c801cf014133f443e20c80202b7078216e955b59f45b3098c801cf014133f443e22aa481010bf8421113a4031127031201111301810101216e955b59f4593098c801cf004133f441e21123112511236901fc112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311110f11120f5e3d10cf10ce10bd109b108a10796a04481068105710461035441302db3cdb3c71db3c56228208989680a070fb02f84270810082706b6c7083007a2b83072359f40f6fa192306ddfc812cb1f216eb39c7101cb0001206ef2d08001cc947032cb00e2830701c9103c12206e953059f45b30944133f417e20901e8eda2edfb22709a20c10593531cb99170e28ed42e802023784133f40e6fa19401d70130925b6de2206eb397206ef2d080c000923070e28eaa80202056115422434133f40e6fa19401d70130925b6de2206eb399f82301206ef2d080be923070e2e302de01a401a4e83033532abe9232709102e2026d01fa30112311241123112211241122112111241121112011241120111f1124111f111e1124111e111d1124111d111c1124111c111b1124111b111a1124111a1119112411191118112411181117112411171116112411161115112411151114112411141113112411131112112411121111112411111110112411100f11240f6e02f60e11240e0d11240d0c11240c0b11240b0a11240a09112409112408070655405624db3c321123a4112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611157a6f007c1114111511141113111411131112111311121111111211111110111111100f11100f10ef10de10cd10bc10ab109a1089107810671056104510344033db310188702056148e1221c10a94205626b99170e2935323b99170e28e96562480202259f40e6fa192306ddf6eb3e300a401a401e857155f0356115622be93571170921111e211117101fc7080202056255422434133f40e6fa19401d70130925b6de280202056255422534133f40e6fa19401d70130925b6de280202056245422634133f40e6fa19401d70130925b6de280202056265422734133f40e6fa19401d70130925b6de270246eb3983003206ef2d080039134e270236eb3983002206ef2d080029133e2237201ecc2639c02a76423a904c114927f34de9132e223b393206eb39170e29820206ef2d080c2009170e28e13f82301206ef2d080a18208278d00bc927f33de9130e222b39301c000923170e293206eb39170e29820206ef2d080c2009170e28e13f82301206ef2d080a18208093a80bc92307fde9130e2e3007301f8112311271123112211261122112111251121112011241120111f1127111f111e1126111e111d1125111d111c1124111c111b1127111b111a1126111a1119112511191118112411181117112711171116112611161115112511151114112411141113112711131112112611121111112511111110112411100f11270f7402fa0e11260e0d11250d0c11240c0b11270b0a11260a09112509081124080711270706112606051125050411240403112703021126020111250111245624db3c1126a4112311271123112211261122112111251121112011241120111f1123111f111e1122111e111d1121111d111c1120111c111b111f111b111a111e111a758201f6562180202259f40e6fa192306ddf11228020226d206e953059f45b30944133f416e211218020226d71216e955b59f45b3098c801cf004133f443e280206d21031123032459216e955b59f45b3098c801cf014133f443e280206d21031122032459216e955b59f45b3098c801cf014133f443e280206d21031121037601b62459216e955b59f45b3098c801cf014133f443e280206d2104112004102302112002216e955b59f45b3098c801cf014133f443e256216eb3925721e30d111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b7703fe70209a531db99320c1149170e28ed2561380202359f40e6fa192306ddf5610802024784133f40e6fa19401d70130925b6de2216eb39f01206ef2d0805625206ef2d080c705923170e293206eb39170e297206ef2d080c000923070e2e30001a401e85b70209a5316b99320c11e9170e28ae85b81010b1122206ef2d080102378808101f8112311261123112211251122112111241121112011251120111f1124111f111e1125111e111d1124111d111c1125111c02111b02111a1124111a111911251119021118021117112411171116112511160211150211141124111411131125111302111202111111241111111011251110102f0e11240e0d11250d102c7902fa0b11240b0a11250a10290811240807112507102605112405041125041023021124020111250111245625db3c1124a4112311261123112211251122112111241121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111a111d111a1119111c11191118111b11181117111a11171116111911167a7f02c62d802022784133f40e6fa19401d70130925b6de2206e92307f97206ef2d080c300e29130e0561180202259f40e6fa192306ddf0e8020227478216e955b59f45b3098c801cf014133f443e22e6eb3913ee30d70209a5316b99320c1149170e28ae85f037b7e01fc0e206ef2d080112411251124112311251123112211251122112111251121112011251120111f1125111f111e1125111e111d1125111d111c1125111c111b1125111b111a1125111a1119112511191118112511181117112511171116112511161115112511151114112511141113112511131112112511121111112511117c02f41110112511100f11250f0e11250e0d11250d0c11250c0b11250b0a11250a091125090811250807112507061125060511250504112504031125030211250201112501db3c112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b977d0090111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f550e00da8020545b0052404133f40e6fa19401d70130925b6de228802024784133f40e6fa19401d70130925b6de2216eb39801206ef2d08024ba923170e293206eb39170e297206ef2d080c000923070e28e1a078020227378216e955b59f45b3098c801cf014133f443e207a4de01a40100901115111811151114111711141113111611131112111511121111111411111110111311100f11120f0e11110e0d11100d10cf10be10ad109c108b107a10691058104710364540102300d62b80202359f40e6fa192306ddf28802024784133f40e6fa19401d70130925b6de2216eb39f01206ef2d0805625206ef2d080c705923170e293206eb39170e297206ef2d080c000923070e28e1a078020227378216e955b59f45b3098c801cf014133f443e207a4de01a4010036011122016d810101216e955b59f4593098c801cf004133f441e20100c41119111d11191118111c11181117111b11171116111a11161115111911151114111811141113111711131112111611121111111511111110111411100f11130f0e11120e0d11110d0c11100c10bf10ae109d108c107b106a1059104810374016505402dc8810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00c87f01ca0011241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54999e02fe8efc31d31ffa00d31f302d802024784133f40e6fa19401d70130925b6de2813404216eb3f2f481680001206ef2d080c000f2f48020545f0052504133f40e6fa19401d70130925b6de28200bc90216eb39af82302206ef2d08012b9923170e2f2f42f8020248101014133f40e6fa19401d70030925b6de282008b73216eb3e0858a01e69901206ef2d0805230bb923170e2f2f4561180202459f40e6fa192306ddf820087fa216eb39cf84202206ef2d08012c705b3923170e2f2f48020f84226103c01206e953059f45b30944133f416e2802020103a5446135055216e955b59f45b3098c801cf014133f443e21680205420498101018603fe216e955b59f45b3098c801cf004133f443e2802020103654441350aa216e955b59f45b3098c801cf014133f443e2028020227078216e955b59f45b3098c801cf014133f443e201a456208208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf818ae2998788001a58cf8680cf8480f400f400cf8101fcf400c901fb00112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce89018c10bd10ac109b108a10795e3445135042c87f01ca0011241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed549e044c2182103785158dbae3022182101ce33d8ebae3022182103b9b249ebae302018210946a98b6ba8b91949b01f631d31f3023802022784133f40e6fa19401d70130925b6de28200c723216eb3f2f48200b1bf01206ef2d080c000f2f4802054570052304133f40e6fa19401d70130925b6de282009d3e216eb3f2f4802021206ef2d08056125959f40e6fa192306ddf815730216eb39af84222206ef2d080c7059170e2f2f48020228c01f6206ef2d0802f59784133f40e6fa19401d70130925b6de2816800216eb39801206ef2d080c000923170e2f2f4802022206ef2d08021561155204133f40e6fa19401d70130925b6de28200bc90216eb39af82302206ef2d08012b9923170e2f2f4058020237178216e955b59f45b3098c801cf014133f443e28020228d04f8206ef2d080102f7178216e955b59f45b3098c801cf014133f443e2802022206ef2d08021103f5250216e955b59f45b3098c801cf014133f443e2256eb38e9e05206ef2d08010cd105c0211250201112601db3c112501112401104c104b9135e270935304b98ae85f0356208208989680a070fb02f842708100827088978e998f00ea5302bd8e6e802054590052304133f40e6fa19401d70130925b6de22e802023784133f40e6fa19401d70130925b6de2216eb39d01206ef2d08023206ef2d080ba923170e293206eb39170e297206ef2d080c000923070e28e190d80202e7278216e955b59f45b3098c801cf014133f443e20ddedea401fe10246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811169001f01115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd109c102b108a10791068105710465a15c87f01ca0011241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed549e02fc31d31f302b802022784133f40e6fa19401d70130925b6de2813404216eb3f2f482009b6f01206ef2d080c001f2f42f80202259f40e6fa192306ddf815730216eb39bf84202206ef2d08012c705923170e2f2f41b8020017278216e955b59f45b3098c801cf014133f443e256208208989680a070fb02f842708100827088999201fe10246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811169301f21115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd0c109b108a107910681057104610354403c87f01ca0011241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed549e01fe31d31f302b802022784133f40e6fa19401d70130925b6de2813404216eb3f2f48200cd2501206ef2d080c000f2f42f80202259f40e6fa192306ddf815730216eb39bf84202206ef2d08012c705923170e2f2f40b80202c7378216e955b59f45b3098c801cf014133f443e2f8421123112411231122112311221121112211219501fc112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f10ef1d1e10bc10ab109a108910781067105610459602fc1034413001112501db3c70935304b98e6b802054590052304133f40e6fa19401d70130925b6de226802023784133f40e6fa19401d70130925b6de2216eb39901206ef2d0805627ba923170e293206eb39170e297206ef2d080c000923070e28e19058020267278216e955b59f45b3098c801cf014133f443e205dea4e8309798009c2281010b228101014133f40a6fa19401d70030925b6de2206eb39820206ef2d080c2009170e28e2381010b01206ef2d080a5103412810101216e955b59f4593098c801cf004133f441e201915be202f8572456218208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b999a00140000000045786365737301fc111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f550ec87f01ca0011241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed549e02fe8efdd33f30c8018210aff90f5758cb1fcb3fc9112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311119ca001941110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443012f84270705003804201503304c8cf8580ca00cf8440ce01fa02806acf40f400c901fb009d016cc87f01ca0011241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed549e01f4011123011124ce011121fa0201111f01cb1f01111d01f400111bc8f40001111a01f40001111801f4001116c8f40001111501f40001111301f4001111c8f40001111001f4001ef4000cc8f4001bf40019f40007c8f40016cb1f14cb1f12f400f40001c8f40012f40013f40003c8f40015cb1f15f40016f40006c89f004ef40018f40018f40009c8f4001acb1f1acb1f1af4001acb0715cd18cd16cd13cd14cd14cdcdcdcd0014e05f0f5f0f5f07f2c08214078518');
2222
+ const __code = Cell.fromHex('b5ee9c724102b0010038b400022cff008e88f4a413f4bcf2c80bed53208e8130e1ed43d901460202710222020120030b02012004090202760507033da71bda89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8c347490600045614033da715da89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8c3474908000220033fb7a7bda89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8c3047490a000456230201200c0f03f3b7431da89a1a400031d0ff4800203a3b679c61a224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222b047490d01601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c610e002c8307561e0280204133f40e6fa19401d70130925b6de20201201020020120111403f3ad98f6a268690000c743fd200080e8ed9e7186889288930892889208928892089188920891889108918891089088910890889008908890088f8890088f888f088f888f088e888f088e888e088e888e088d888e088d888d088d888d088c888d088c888c088c888c088b888c088b888b088b888b088a888b088ac047491201601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c6113001c8307561d0259f40f6fa192306ddf020148151c020120161a03f1a033b513434800063a1fe9000407476cf38c34449444984494449044944490448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c4458445444584456474917018c1114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c61206e92306d99206ef2d0806f256f05e2206e92306dde1801de20c100917f94205625bee292306de0562380202259f40e6fa192306ddf206e925b6de080202056245422434133f40e6fa19401d70130925b6de280202056245422534133f40e6fa19401d70130925b6de280202056245422634133f40e6fa19401d70130925b6de2802056274016711900a64133f40e6fa19401d70030925b6de203206ef2d080236eb39603206ef2d080923370e2226eb39602206ef2d080923270e2216eb39601206ef2d080923170e2246eb39604206ef2d080923470e2103441306f050335a3abb513434800063a1fe9000407476cf38c376cf1b311b311b39247491b00365623a7032daa00a0208100f0a87021c20095305330a904de24552003f1a701da89a1a400031d0ff4800203a3b679c61a224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222b47491d01581114111511141113111411131112111311121111111211111110111111100f11100f550edb3c6ce76ce76ca71e01ea561380202259f40e6fa192306ddf206ef2d0805610802023784133f40e6fa19401d70130925b6de2206ef2d08080202056145422534133f40e6fa19401d70130925b6de2206ef2d0807080202056145422734133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e2561680202683071f00804133f40e6fa19401d70130925b6de2206ef2d0808020561740178101014133f40e6fa19401d70030925b6de2206ef2d08023c00094f82323be9170e210564440033fb1aafb513434800063a1fe9000407476cf38c376cf15c417c3d5c417c3db1860474921000221020120233b020120243502012025320201202628033facaf76a268690000c743fd200080e8ed9e7186ed9e2b882f87ab882f87b630c047492700022c020148292e03f1a785da89a1a400031d0ff4800203a3b679c61a224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222b47492a015c1114111511141113111411131112111311121111111211111110111111100f11100f550edb3c6caa6caa6caa6c8a2b01f6562380202259f40e6fa192306ddf6e99707054700053007021e07080202056245422434133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27080202056245422534133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27022c2009630a76421a9049131e27080202056245422632c01f84133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27080202056245422734133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27021c2009b30f82321a182015180a904de7023c2009b30f82323a182015180a904de7026c2639325c1149170e2923071de20c0009323c2009170e22d00809af82324a18208278d00bc9170e2923072de20c0009326c0009170e29324c2009170e29af82325a18208093a80bc9170e2923073de7f21c2001850060504431303f1a41bda89a1a400031d0ff4800203a3b679c61a224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222b47492f01581114111511141113111411131112111311121111111211111110111111100f11100f550edb3c6cf56cf56c853001f02b80202259f40e6fa192306ddf206ef2d0808020545c0052404133f40e6fa19401d70130925b6de2206ef2d0802b8020248101014133f40e6fa19401d70030925b6de2206ef2d0808020545c0052604133f40e6fa19401d70130925b6de2206ef2d0808020544c16784133f40e6fa19401d70130925b6de2310012206ef2d0801034413003f3b30dbb513434800063a1fe9000407476cf38c34449444984494449044944490448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c4458445444584456047493301601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c6134001a83072d0259f40f6fa192306ddf0201203638033fb3a37b513434800063a1fe9000407476cf38c376cf15c417c3d5c417c3db18604749370008f8276f1003f3b0357b513434800063a1fe9000407476cf38c34449444984494449044944490448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c4458445444584456047493901601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c613a00c820c100917f94205625bee2923070e080202056235422334133f40e6fa19401d70130925b6de2206e917f9820206ef2d080c000e2925b70e080202056230350444133f40e6fa19401d70130925b6de2206e925b70e0206ef2d080a76401206ef2d080a9040201203c4402016a3d4103f2ab3eed44d0d200018e87fa400101d1db3ce30d112511261125112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a111911181119111811171118111711161117111611151116111547493e018c1114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c61206e92306d99206ef2d0806f266f06e2206e92306dde3f01f620c100917f94205616bee292306de0561b80202259f40e6fa192306ddf206e925b6de05617802023714133f40e6fa19401d70030925b6de201206ef2d080561c80202459f40e6fa192306ddf206ef2d080561c80202559f40e6fa192306ddf206ef2d080561c8020268101014133f40e6fa19401d70030925b6de240006c206ef2d080802020561e0350884133f40e6fa19401d70130925b6de2206ef2d080246eb39604206ef2d080923470e210354430126f0603f2a9b4ed44d0d200018e87fa400101d1db3ce30d112511261125112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a111911181119111811171118111711161117111611151116111547494201601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c6143004681010b25028101014133f40a6fa19401d70030925b6de2206eb395206ef2d080e03070033fb42a3da89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8c30474945000225049801d072d721d200d200fa4021103450666f04f86102f862ed44d0d200018e87fa400101d1db3ce30d1127965f0f5f0f5f09e01125d70d1ff2e08221821038a0a307bae302218210a7262e8eba47494d5301f26d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d82089896807054700053007a5311091124090811230809112209081121080911200908111f0809111e0908111d0809111c0908111b0809111a0908111908091118090811170809111609081115080711140706111306091112090811110848003007111007106f109e108d105c107b106a105710561045103402f8db3c5726112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211114a4c01f4fa40fa00d31ff404d401d0f404f404f404d430d0f404f404f404d430d0f404f404f404d430d0f404f404f404d430d0f404d31fd31ff404f404d430d0f404f404f404d430d0f404d31ff404f404d430d0f404f404f404d430d0f404d31fd31ff404d307fa00fa00301122112611221122112511221122112411224b000c11221123112200181110111111100f11100f550e03f631d401d001d431d200308160adf8416f24135f035626bef2f4019b9320d74a91d5e868f90400da11561c83072280204133f40e6fa19401d70130925b6de2206eb3e30f112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111d111a111c111a4e4f5100d431206ef2d080562280202259f40e6fa192306ddf817b16216eb39bf84202206ef2d08012c705923170e2f2f40111210180205110112371216e955b59f45b3098c801cf004133f443e28020f8232104111f04102302112302216e955b59f45b3098c801cf014133f443e201fe3056238020f84202112502562501206e953059f45b30944133f416e2011122018020015624500471216e955b59f45b3098c801cf004133f443e28020702103112303562559216e955b59f45b3098c801cf014133f443e28020702103112203562559216e955b59f45b3098c801cf014133f443e28020f823210311210356255000e659216e955b59f45b3098c801cf014133f443e28020f8232103112003562559216e955b59f45b3098c801cf014133f443e202111c028307020111220111238020216e955b59f45b3098c801cf014133f443e21121a41121111e111f111e111d111e111d111c111d111c111b111c111b111a111b03fc1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a1079106810571046103544301272db3c018208e4e1c0a0015624a05ca08208989680a070fb02f8427081008270887fa75201e210246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae02fc8efa31d401d001d200308160adf8416f24135f035626bef2f4019b9320d74a91d5e868f90400da118307561d0280204133f40e6fa19401d70130925b6de2816cce216eb3f2f4206ef2d08080202056225422334133f40e6fa19401d70130925b6de2206e95816ccef2f0de802001206ef2d080a42103112303562359e021545701fc216e955b59f45b3098c801cf014133f443e2018e3b802053005621595623014133f40e6fa19401d70130925b6de2206ef2d080a42103112103562259216e955b59f45b3098c801cf014133f443e2111ede8020f8232104111f04102302112202216e955b59f45b3098c801cf014133f443e21123112511231122112411225501fc112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111d111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10795603c6106810571046103544301271db3c0182082dc6c0a0015624a05ca08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb007fa7ad044a821054e26a4bbae302218210148534b8bae3022182108711bf6fbae3022182102f7e5059ba585c606201fc31d401d001d20030019b9320d74a91d5e868f90400da118307561d0280204133f40e6fa19401d70130925b6de2816cce216eb3f2f4206ef2d080562280202259f40e6fa192306ddf820097a4216eb39bf84202206ef2d08012c705923170e2f2f40111210180205110112371216e955b59f45b3098c801cf004133f443e25902f68020f8232104111f04102302112302216e955b59f45b3098c801cf014133f443e2112482082dc6c0a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123a75a01fc112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111c111d111c111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce5b019e10bd10ac109b108a10791068105710461035440302c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae01f831d31fd3ff30562280202359f40e6fa192306ddf816cce216eb3f2f4811bd6f84202206ef2d08012c705f2f48020f82321031120032459216e955b59f45b3098c801cf014133f443e2561b8307561f59f40f6fa192306ddfc813cb1f226eb39c7101cb0002206ef2d08058cc95327058cb00e2830701c903111c03125d02fc01111e01206e953059f45b30944133f417e2112482084c4b40a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120a75e01fc111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a111a111b111a1118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910681057104610355f017a440302c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae01fe31d3073020c23293308032de20c101923071de112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511136103fe1112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443012db3c5ca08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb007fa7ad02fe8efc31fa40fa40fa40fa00d31f3001111d0180200156185006206e953059f45b30944133f416e201111b0180200156175004206e953059f45b30944133f416e201111901802001561601111c206e953059f45b30944133f416e201111701802001561501111c810101216e955b59f45b3098c801cf004133f443e2802020e0636603fe0311170312561502111901216e955b59f45b3098c801cf014133f443e21113802056137071216e955b59f45b3098c801cf004133f443e21112a4112482084c4b40a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf818ae2f400c901a76c6401fcfb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191116111a11161117111911171115111711151113111611131112111511121113111411131111111311111110111211100f11110f0e11100e10df6501a210ce10bd10ac109b108a10791068105710461035440302c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae044c218210bfa05986bae3022182102365d020bae302218210966dc6edbae3022182106d5af6a7ba676a6f9302fe31fa40307094205615b98e3e561a80202259f40e6fa192306ddf206eb398206ef2d08022c705923070e28e1c1115802056167f71216e955b59f45b3098c801cf004133f443e21115dea4e85b112482082dc6c0a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069a76801f6cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711156901f01114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910681057104610354403c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae03fe5b8168c9f8425625c705f2f45621a7032baa00a08100f0a870218e1b21c2008e13562622a904c2149830a71411255625a19131e29131e2945b701125e201112601a082009ebc2182084c4b40bcf2f47072708856270405552010246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf818ae2f4006b6c6d002400000000466565732077697468647261776e001a58cf8680cf8480f400f400cf8101f8c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211106e01b60f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443012c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae02fe31d3fffa00d31f30811127f8235220bcf2f48159c222c200f2f47081010bf84227598101014133f40a6fa19401d70030925b6de2206eb39631206ef2d0809130e25304bee3008020f84202111602561001206e953059f45b30944133f416e21113802053f48307216e955b59f45b3098c801cf014133f443e2011112018020707701f4f842112611281126112511271125112411281124112311271123112211281122112111271121112011281120111f1127111f111e1128111e111d1127111d111c1128111c111b1127111b111a1128111a1119112711191118112811181117112711171116112811161115112711151114112811141113112711137102fa1112112811121111112711111110112811100f11270f0e11280e0d11270d0c11280c0b11270b0a11280a091127090811280807112707061128060511270504112804031127030211290201112a01db3c8e2a572981010bf84224598101014133f40a6fa19401d70030925b6de2206eb395206ef2d080923070e21129de7275012ceda2edfb70209a21c13293530fb99170e28ae85f03707302fe561580202259f40e6fa192306ddf5612802023784133f40e6fa19401d70130925b6de2216eb39901206ef2d08024c705923170e293206eb39170e297206ef2d080c000923070e28eb280202056145422334133f40e6fa19401d70130925b6de2206eb399f82301206ef2d080be923070e28e876c21db3c7fdb31e0dea401a4897400020101f6811d38562a24b9f2f4112901112801112511271125112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611147600701113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035102401f65420f4810101216e955b59f45b3098c801cf004133f443e280202003111203544f13111401216e955b59f45b3098c801cf014133f443e20e80202d7078216e955b59f45b3098c801cf014133f443e22ca481010bf8421115a410361201111501810101216e955b59f4593098c801cf004133f441e21125112711257801fc112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131111111411115e3f0e11110e0311100310df79046c103e10bd10ac109b108a1079106810571046451504db3cdb3c71db3c018208989680a05301a08208989680a070fb02f84270810082707a7b7f92007a2d83072359f40f6fa192306ddfc812cb1f216eb39c7101cb0001206ef2d08001cc947032cb00e2830701c9103e12206e953059f45b30944133f417e20b01eaeda2edfb24709a20c10593531eb99170e28ed55610802023784133f40e6fa19401d70130925b6de2206eb397206ef2d080c000923070e28eaa80202056135422434133f40e6fa19401d70130925b6de2206eb399f82301206ef2d080be923070e2e302de01a401a4e83035534cbe9234709104e2047c01fe30112511261125112411261124112311261123112211261122112111261121112011261120111f1126111f111e1126111e111d1126111d111c1126111c111b1126111b111a1126111a1119112611191118112611181117112611171116112611161115112611151114112611141113112611131112112611121111112611117d02fe1110112611100f11260f0e11260e0d11260d0c11260c0b11260b0a11260a09112609112608070655405626db3c341125a4112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a1119111811191118897e009c1117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f10ef10de10cd10bc10ab109a108910781067105604415503db310188702056168e1221c10a94205628b99170e2935323b99170e28e96562680202259f40e6fa192306ddf6eb3e300a401a401e857175f0356135624be93571370921113e211138001fc7080202056275422434133f40e6fa19401d70130925b6de280202056275422534133f40e6fa19401d70130925b6de280202056265422634133f40e6fa19401d70130925b6de280202056285422734133f40e6fa19401d70130925b6de270246eb3983003206ef2d080039134e270236eb3983002206ef2d080029133e2238101ecc2639c02a76423a904c114927f34de9132e223b393206eb39170e29820206ef2d080c2009170e28e13f82301206ef2d080a18208278d00bc927f33de9130e222b39301c000923170e293206eb39170e29820206ef2d080c2009170e28e13f82301206ef2d080a18208093a80bc92307fde9130e2e3008201fc112511291125112411281124112311271123112211261122112111291121112011281120111f1127111f111e1126111e111d1129111d111c1128111c111b1127111b111a1126111a1119112911191118112811181117112711171116112611161115112911151114112811141113112711131112112611121111112911118302f61110112811100f11270f0e11260e0d11290d0c11280c0b11270b0a11260a09112909081128080711270706112606051129050411280403112703021126020111290111285628db3c1126a4112511291125112411281124112311271123112211261122112111251121112011241120111f1123111f111e1122111e849101f6562380202259f40e6fa192306ddf11248020226d206e953059f45b30944133f416e211238020226d71216e955b59f45b3098c801cf004133f443e280206d21031125032459216e955b59f45b3098c801cf014133f443e280206d21031124032459216e955b59f45b3098c801cf014133f443e280206d21031123038501b62459216e955b59f45b3098c801cf014133f443e280206d2104112204102302112202216e955b59f45b3098c801cf014133f443e256236eb3925723e30d112111221121112011211120111f1120111f111e111f111e111d111e111d8603fe70209a531fb99320c1149170e28ed2561580202359f40e6fa192306ddf5612802024784133f40e6fa19401d70130925b6de2216eb39f01206ef2d0805627206ef2d080c705923170e293206eb39170e297206ef2d080c000923070e2e30001a401e85b70209a5318b99320c11e9170e28ae85b81010b1124206ef2d0801025878f9001fc112511281125112411271124112311261123112211271122112111261121112011271120111f1126111f111e1127111e02111d02111c1126111c111b1127111b02111a021119112611191118112711180211170211161126111611151127111502111402111311261113111211271112021111021110112611100f11270f8802fa102e0d11260d0c11270c102b0a11260a0911270910280711260706112706102504112604031127030111260111275626db3c1127a4112511281125112411271124112311261123112211241122112111231121112011221120111f1121111f111e1120111e111c111f111c111b111e111b111a111d111a1119111c1119898e02cc2f802022784133f40e6fa19401d70130925b6de2206e92307f97206ef2d080c300e29130e0561380202259f40e6fa192306ddf11108020227478216e955b59f45b3098c801cf014133f443e256106eb3925710e30d70209a5318b99320c1149170e28ae85f038a8d01fe1110206ef2d080112611271126112511271125112411271124112311271123112211271122112111271121112011271120111f1127111f111e1127111e111d1127111d111c1127111c111b1127111b111a1127111a1119112711191118112711181117112711171116112711161115112711151114112711141113112711138b02f41112112711121111112711111110112711100f11270f0e11270e0d11270d0c11270c0b11270b0a11270a091127090811270807112707061127060511270504112704031127030211270201112701db3c112511261125112411251124112311241123112211231122112111221121112011211120111f1120111fa58c00c0111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f550e00da8020545d0052404133f40e6fa19401d70130925b6de22a802024784133f40e6fa19401d70130925b6de2216eb39801206ef2d08024ba923170e293206eb39170e297206ef2d080c000923070e28e1a098020227378216e955b59f45b3098c801cf014133f443e209a4de01a40100b01118111b11181117111a11171116111911161115111811151114111711141113111611131112111511121111111411111110111311100f11120f0e11110e0d11100d10cf10be10ad109c108b107a1069105810471036454000d62d80202359f40e6fa192306ddf2a802024784133f40e6fa19401d70130925b6de2216eb39f01206ef2d0805627206ef2d080c705923170e293206eb39170e297206ef2d080c000923070e28e1a098020227378216e955b59f45b3098c801cf014133f443e209a4de01a4010036011124016d810101216e955b59f4593098c801cf004133f441e20300f4111d1121111d111c1120111c111b111f111b111a111e111a1119111d11191118111c11181117111b11171116111a11161115111911151114111811141113111711131112111611121111111511111110111411100f11130f0e11120e0d11110d0c11100c10bf10ae109d108c107b106a1059104810374016505402e68810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb0001c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54a7ae043ce3022182103785158dbae3022182101ce33d8ebae3022182103b9b249eba94999fa201fc31d31ffa00d31f302f802024784133f40e6fa19401d70130925b6de2813404216eb3f2f481680001206ef2d080c000f2f480202056125422534133f40e6fa19401d70130925b6de28200bc90216eb39af82302206ef2d08012b9923170e2f2f456118020248101014133f40e6fa19401d70030925b6de282008b73216eb39501e69901206ef2d0805230bb923170e2f2f4561380202459f40e6fa192306ddf820087fa216eb39cf84202206ef2d08012c705b3923170e2f2f48020f84228103e01206e953059f45b30944133f416e2802020103c5448135055216e955b59f45b3098c801cf014133f443e218802054206b8101019602fe216e955b59f45b3098c801cf004133f443e2802020103854461350cc216e955b59f45b3098c801cf014133f443e2048020247078216e955b59f45b3098c801cf014133f443e203a4112482084c4b40a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025ca79701fa6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611149801de1113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b5e36104710361035440302c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae01f631d31f3025802022784133f40e6fa19401d70130925b6de28200c723216eb3f2f48200b1bf01206ef2d080c000f2f4802054590052304133f40e6fa19401d70130925b6de282009d3e216eb3f2f4802021206ef2d08056145959f40e6fa192306ddf815730216eb39af84222206ef2d080c7059170e2f2f48020229a01f8206ef2d080561159784133f40e6fa19401d70130925b6de2816800216eb39801206ef2d080c000923170e2f2f4802022206ef2d08021561355204133f40e6fa19401d70130925b6de28200bc90216eb39af82302206ef2d08012b9923170e2f2f4078020237178216e955b59f45b3098c801cf014133f443e28020229b03fe206ef2d080021111027178216e955b59f45b3098c801cf014133f443e2802022206ef2d08021031111035250216e955b59f45b3098c801cf014133f443e2276eb38e9e07206ef2d08010ef107e0211270201112801db3c112701112601106e106d9137e270935306b98ae85f03112482082dc6c0a0205626a08208989680a0a59c9d00ee5302bd8e708020545b0052304133f40e6fa19401d70130925b6de25610802023784133f40e6fa19401d70130925b6de2216eb39d01206ef2d08023206ef2d080ba923170e293206eb39170e297206ef2d080c000923070e28e1a0f802056107278216e955b59f45b3098c801cf014133f443e20fdedea402fc70fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111aa79e01b61119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10be104d10ac109b108a1079106810571035440302ad01fe31d31f302d802022784133f40e6fa19401d70130925b6de2813404216eb3f2f482009b6f01206ef2d080c001f2f4561180202259f40e6fa192306ddf815730216eb39bf84202206ef2d08012c705923170e2f2f41d8020017278216e955b59f45b3098c801cf014133f443e2112482082dc6c0a0205626a08208989680a070a002fafb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111aa7a101b41119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10bd10ac109b108a107910681057104610354403ad02fc8efa31d31f302d802022784133f40e6fa19401d70130925b6de2813404216eb3f2f48200cd2501206ef2d080c000f2f4561180202259f40e6fa192306ddf815730216eb39bf84202206ef2d08012c705923170e2f2f40d80202e7378216e955b59f45b3098c801cf014133f443e2f842112511261125112411251124e001a3a901fe112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f1f10dea404fc10cd10bc10ab109a108910781067105610451034413001112701db3c70935306b98ae830572682082dc6c0a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112411251124a5a6a7a8009c2481010b228101014133f40a6fa19401d70030925b6de2206eb39820206ef2d080c2009170e28e2381010b01206ef2d080a5103612810101216e955b59f4593098c801cf004133f441e203915be200d68020545b0052304133f40e6fa19401d70130925b6de228802023784133f40e6fa19401d70130925b6de2216eb39901206ef2d0805629ba923170e293206eb39170e297206ef2d080c000923070e28e19078020287278216e955b59f45b3098c801cf014133f443e207dea400140000000045786365737301fc112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f550ead01248210946a98b6bae3025f0f5f0f5f09f2c082aa01fad33f30c8018210aff90f5758cb1fcb3fc9112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a1118111711191117111611181116111511171115111411161114111311151113ab01661112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443012ac01c6f84270f8276f10f8416f24135f03a1820afaf080b98e29820afaf08070fb0270500381008201503304c8cf8580ca00cf8440ce01fa02806acf40f400c901fb008e20705003804201503304c8cf8580ca00cf8440ce01fa02806acf40f400c901fb00e2ad0174c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae01f4011125011126ce011123fa0201112101cb1f01111f01f400111dc8f40001111c01f40001111a01f4001118c8f40001111701f40001111501f4001113c8f40001111201f40001111001f4000ec8f4001df4001bf40009c8f40018cb1f16cb1f14f40012f40001c8f40012f40012f40002c8f40014cb1f14f40015af0066f40005c8f40017f40017f40008c8f40019cb1f1acb1f1af4001acb07500afa02500afa0212cd15cd17cd15cdcd14cdcd12cdcd186a4542');
2148
2223
  const builder = beginCell();
2149
2224
  builder.storeUint(0, 1);
2150
2225
  initReputation_init_args({ $$type: 'Reputation_init_args', owner })(builder);
@@ -2205,6 +2280,7 @@ export const Reputation_errors = {
2205
2280
  38820: { message: "Only the agent owner can update availability" },
2206
2281
  39791: { message: "Intent not in accepted state" },
2207
2282
  40254: { message: "Offer has no intent" },
2283
+ 40636: { message: "Nothing to withdraw" },
2208
2284
  45503: { message: "Offer not pending" },
2209
2285
  48272: { message: "Intent expired" },
2210
2286
  50979: { message: "Offer not found" },
@@ -2264,6 +2340,7 @@ export const Reputation_errors_backward = {
2264
2340
  "Only the agent owner can update availability": 38820,
2265
2341
  "Intent not in accepted state": 39791,
2266
2342
  "Offer has no intent": 40254,
2343
+ "Nothing to withdraw": 40636,
2267
2344
  "Offer not pending": 45503,
2268
2345
  "Intent expired": 48272,
2269
2346
  "Offer not found": 50979,
@@ -2302,7 +2379,8 @@ const Reputation_types: ABIType[] = [
2302
2379
  {"name":"AgentCleanupInfo","header":null,"fields":[{"name":"index","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"exists","type":{"kind":"simple","type":"bool","optional":false}},{"name":"score","type":{"kind":"simple","type":"uint","optional":false,"format":16}},{"name":"totalRatings","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"registeredAt","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"lastActive","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"daysSinceActive","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"daysSinceRegistered","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"eligibleForCleanup","type":{"kind":"simple","type":"bool","optional":false}},{"name":"cleanupReason","type":{"kind":"simple","type":"uint","optional":false,"format":8}}]},
2303
2380
  {"name":"IntentData","header":null,"fields":[{"name":"buyer","type":{"kind":"simple","type":"address","optional":false}},{"name":"serviceHash","type":{"kind":"simple","type":"uint","optional":false,"format":256}},{"name":"budget","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"deadline","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"status","type":{"kind":"simple","type":"uint","optional":false,"format":8}},{"name":"acceptedOffer","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"isExpired","type":{"kind":"simple","type":"bool","optional":false}}]},
2304
2381
  {"name":"OfferData","header":null,"fields":[{"name":"seller","type":{"kind":"simple","type":"address","optional":false}},{"name":"intentIndex","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"price","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"deliveryTime","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"status","type":{"kind":"simple","type":"uint","optional":false,"format":8}}]},
2305
- {"name":"Reputation$Data","header":null,"fields":[{"name":"owner","type":{"kind":"simple","type":"address","optional":false}},{"name":"fee","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"agentCount","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"agentOwners","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"agentAvailable","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"bool"}},{"name":"agentTotalTasks","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"agentSuccesses","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"agentRegisteredAt","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"agentLastActive","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"nameToIndex","type":{"kind":"dict","key":"uint","keyFormat":256,"value":"uint","valueFormat":32}},{"name":"capabilityIndex","type":{"kind":"dict","key":"uint","keyFormat":256,"value":"cell","valueFormat":"ref"}},{"name":"openDisputes","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"disputeDepositors","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"disputeBeneficiaries","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"disputeAmounts","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"int"}},{"name":"disputeDeadlines","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"disputeSettled","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"bool"}},{"name":"disputeCount","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"cleanupCursor","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"intents","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"intentServiceHashes","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":256}},{"name":"intentBudgets","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"int"}},{"name":"intentDeadlines","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"intentStatuses","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":8}},{"name":"intentAcceptedOffer","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"intentCount","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"intentsByService","type":{"kind":"dict","key":"uint","keyFormat":256,"value":"cell","valueFormat":"ref"}},{"name":"offers","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"offerIntents","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"offerPrices","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"int"}},{"name":"offerDeliveryTimes","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"offerStatuses","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":8}},{"name":"offerCount","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"intentCleanupCursor","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"agentActiveIntents","type":{"kind":"dict","key":"address","value":"int"}},{"name":"maxIntentsPerAgent","type":{"kind":"simple","type":"uint","optional":false,"format":8}}]},
2382
+ {"name":"StorageInfo","header":null,"fields":[{"name":"storageFund","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"totalCells","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"annualCost","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"yearsCovered","type":{"kind":"simple","type":"uint","optional":false,"format":32}}]},
2383
+ {"name":"Reputation$Data","header":null,"fields":[{"name":"owner","type":{"kind":"simple","type":"address","optional":false}},{"name":"fee","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"agentCount","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"agentOwners","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"agentAvailable","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"bool"}},{"name":"agentTotalTasks","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"agentSuccesses","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"agentRegisteredAt","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"agentLastActive","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"nameToIndex","type":{"kind":"dict","key":"uint","keyFormat":256,"value":"uint","valueFormat":32}},{"name":"capabilityIndex","type":{"kind":"dict","key":"uint","keyFormat":256,"value":"cell","valueFormat":"ref"}},{"name":"openDisputes","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"disputeDepositors","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"disputeBeneficiaries","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"disputeAmounts","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"int"}},{"name":"disputeDeadlines","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"disputeSettled","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"bool"}},{"name":"disputeCount","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"cleanupCursor","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"intents","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"intentServiceHashes","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":256}},{"name":"intentBudgets","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"int"}},{"name":"intentDeadlines","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"intentStatuses","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":8}},{"name":"intentAcceptedOffer","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"intentCount","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"intentsByService","type":{"kind":"dict","key":"uint","keyFormat":256,"value":"cell","valueFormat":"ref"}},{"name":"offers","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"address"}},{"name":"offerIntents","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"offerPrices","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"int"}},{"name":"offerDeliveryTimes","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":32}},{"name":"offerStatuses","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"uint","valueFormat":8}},{"name":"offerCount","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"intentCleanupCursor","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"agentActiveIntents","type":{"kind":"dict","key":"address","value":"int"}},{"name":"maxIntentsPerAgent","type":{"kind":"simple","type":"uint","optional":false,"format":8}},{"name":"storageFund","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"accumulatedFees","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}}]},
2306
2384
  ]
2307
2385
 
2308
2386
  const Reputation_opcodes = {
@@ -2340,6 +2418,9 @@ const Reputation_getters: ABIGetter[] = [
2340
2418
  {"name":"agentIntentQuota","methodId":120244,"arguments":[{"name":"agent","type":{"kind":"simple","type":"address","optional":false}}],"returnType":{"kind":"simple","type":"int","optional":false,"format":257}},
2341
2419
  {"name":"intentData","methodId":93056,"arguments":[{"name":"index","type":{"kind":"simple","type":"int","optional":false,"format":257}}],"returnType":{"kind":"simple","type":"IntentData","optional":false}},
2342
2420
  {"name":"offerData","methodId":100877,"arguments":[{"name":"index","type":{"kind":"simple","type":"int","optional":false,"format":257}}],"returnType":{"kind":"simple","type":"OfferData","optional":false}},
2421
+ {"name":"storageInfo","methodId":92650,"arguments":[],"returnType":{"kind":"simple","type":"StorageInfo","optional":false}},
2422
+ {"name":"storageFundBalance","methodId":95915,"arguments":[],"returnType":{"kind":"simple","type":"int","optional":false,"format":257}},
2423
+ {"name":"accumulatedFeesBalance","methodId":72586,"arguments":[],"returnType":{"kind":"simple","type":"int","optional":false,"format":257}},
2343
2424
  ]
2344
2425
 
2345
2426
  export const Reputation_getterMapping: { [key: string]: string } = {
@@ -2358,6 +2439,9 @@ export const Reputation_getterMapping: { [key: string]: string } = {
2358
2439
  'agentIntentQuota': 'getAgentIntentQuota',
2359
2440
  'intentData': 'getIntentData',
2360
2441
  'offerData': 'getOfferData',
2442
+ 'storageInfo': 'getStorageInfo',
2443
+ 'storageFundBalance': 'getStorageFundBalance',
2444
+ 'accumulatedFeesBalance': 'getAccumulatedFeesBalance',
2361
2445
  }
2362
2446
 
2363
2447
  const Reputation_receivers: ABIReceiver[] = [
@@ -2380,7 +2464,7 @@ const Reputation_receivers: ABIReceiver[] = [
2380
2464
 
2381
2465
  export class Reputation implements Contract {
2382
2466
 
2383
- public static readonly storageReserve = 0n;
2467
+ public static readonly storageReserve = 50000000n;
2384
2468
  public static readonly errors = Reputation_errors_backward;
2385
2469
  public static readonly opcodes = Reputation_opcodes;
2386
2470
 
@@ -2580,4 +2664,25 @@ export class Reputation implements Contract {
2580
2664
  return result;
2581
2665
  }
2582
2666
 
2667
+ async getStorageInfo(provider: ContractProvider) {
2668
+ const builder = new TupleBuilder();
2669
+ const source = (await provider.get('storageInfo', builder.build())).stack;
2670
+ const result = loadGetterTupleStorageInfo(source);
2671
+ return result;
2672
+ }
2673
+
2674
+ async getStorageFundBalance(provider: ContractProvider) {
2675
+ const builder = new TupleBuilder();
2676
+ const source = (await provider.get('storageFundBalance', builder.build())).stack;
2677
+ const result = source.readBigNumber();
2678
+ return result;
2679
+ }
2680
+
2681
+ async getAccumulatedFeesBalance(provider: ContractProvider) {
2682
+ const builder = new TupleBuilder();
2683
+ const source = (await provider.get('accumulatedFeesBalance', builder.build())).stack;
2684
+ const result = source.readBigNumber();
2685
+ return result;
2686
+ }
2687
+
2583
2688
  }
@@ -19,7 +19,7 @@ export interface ReputationConfig {
19
19
  * These are used when no factory parameter or local config is found.
20
20
  */
21
21
  export const DEFAULT_REPUTATION_CONTRACTS: Record<string, string> = {
22
- testnet: "0:6cde3ec80b51b11a8403d9a41181399f3cce440b3b16df08931d8c8d1b627c10",
22
+ testnet: "0:a53a0305a5c7c945d9fda358375c8c53e3760cebcc65fae744367827a30355a0",
23
23
  };
24
24
 
25
25
  /**