@ton-agent-kit/plugin-identity 1.5.0 → 1.6.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.5.0",
3
+ "version": "1.6.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",
@@ -1195,6 +1195,7 @@ export function dictValueParserNotifyDisputeSettled(): DictionaryValue<NotifyDis
1195
1195
  export type BroadcastIntent = {
1196
1196
  $$type: 'BroadcastIntent';
1197
1197
  serviceHash: bigint;
1198
+ serviceName: string;
1198
1199
  budget: bigint;
1199
1200
  deadline: bigint;
1200
1201
  }
@@ -1202,8 +1203,9 @@ export type BroadcastIntent = {
1202
1203
  export function storeBroadcastIntent(src: BroadcastIntent) {
1203
1204
  return (builder: Builder) => {
1204
1205
  const b_0 = builder;
1205
- b_0.storeUint(2523776749, 32);
1206
+ b_0.storeUint(2011280957, 32);
1206
1207
  b_0.storeUint(src.serviceHash, 256);
1208
+ b_0.storeStringRefTail(src.serviceName);
1207
1209
  b_0.storeCoins(src.budget);
1208
1210
  b_0.storeUint(src.deadline, 32);
1209
1211
  };
@@ -1211,30 +1213,34 @@ export function storeBroadcastIntent(src: BroadcastIntent) {
1211
1213
 
1212
1214
  export function loadBroadcastIntent(slice: Slice) {
1213
1215
  const sc_0 = slice;
1214
- if (sc_0.loadUint(32) !== 2523776749) { throw Error('Invalid prefix'); }
1216
+ if (sc_0.loadUint(32) !== 2011280957) { throw Error('Invalid prefix'); }
1215
1217
  const _serviceHash = sc_0.loadUintBig(256);
1218
+ const _serviceName = sc_0.loadStringRefTail();
1216
1219
  const _budget = sc_0.loadCoins();
1217
1220
  const _deadline = sc_0.loadUintBig(32);
1218
- return { $$type: 'BroadcastIntent' as const, serviceHash: _serviceHash, budget: _budget, deadline: _deadline };
1221
+ return { $$type: 'BroadcastIntent' as const, serviceHash: _serviceHash, serviceName: _serviceName, budget: _budget, deadline: _deadline };
1219
1222
  }
1220
1223
 
1221
1224
  export function loadTupleBroadcastIntent(source: TupleReader) {
1222
1225
  const _serviceHash = source.readBigNumber();
1226
+ const _serviceName = source.readString();
1223
1227
  const _budget = source.readBigNumber();
1224
1228
  const _deadline = source.readBigNumber();
1225
- return { $$type: 'BroadcastIntent' as const, serviceHash: _serviceHash, budget: _budget, deadline: _deadline };
1229
+ return { $$type: 'BroadcastIntent' as const, serviceHash: _serviceHash, serviceName: _serviceName, budget: _budget, deadline: _deadline };
1226
1230
  }
1227
1231
 
1228
1232
  export function loadGetterTupleBroadcastIntent(source: TupleReader) {
1229
1233
  const _serviceHash = source.readBigNumber();
1234
+ const _serviceName = source.readString();
1230
1235
  const _budget = source.readBigNumber();
1231
1236
  const _deadline = source.readBigNumber();
1232
- return { $$type: 'BroadcastIntent' as const, serviceHash: _serviceHash, budget: _budget, deadline: _deadline };
1237
+ return { $$type: 'BroadcastIntent' as const, serviceHash: _serviceHash, serviceName: _serviceName, budget: _budget, deadline: _deadline };
1233
1238
  }
1234
1239
 
1235
1240
  export function storeTupleBroadcastIntent(source: BroadcastIntent) {
1236
1241
  const builder = new TupleBuilder();
1237
1242
  builder.writeNumber(source.serviceHash);
1243
+ builder.writeString(source.serviceName);
1238
1244
  builder.writeNumber(source.budget);
1239
1245
  builder.writeNumber(source.deadline);
1240
1246
  return builder.build();
@@ -1704,6 +1710,7 @@ export type IntentData = {
1704
1710
  $$type: 'IntentData';
1705
1711
  buyer: Address;
1706
1712
  serviceHash: bigint;
1713
+ serviceName: string;
1707
1714
  budget: bigint;
1708
1715
  deadline: bigint;
1709
1716
  status: bigint;
@@ -1716,6 +1723,7 @@ export function storeIntentData(src: IntentData) {
1716
1723
  const b_0 = builder;
1717
1724
  b_0.storeAddress(src.buyer);
1718
1725
  b_0.storeUint(src.serviceHash, 256);
1726
+ b_0.storeStringRefTail(src.serviceName);
1719
1727
  b_0.storeCoins(src.budget);
1720
1728
  b_0.storeUint(src.deadline, 32);
1721
1729
  b_0.storeUint(src.status, 8);
@@ -1728,40 +1736,44 @@ export function loadIntentData(slice: Slice) {
1728
1736
  const sc_0 = slice;
1729
1737
  const _buyer = sc_0.loadAddress();
1730
1738
  const _serviceHash = sc_0.loadUintBig(256);
1739
+ const _serviceName = sc_0.loadStringRefTail();
1731
1740
  const _budget = sc_0.loadCoins();
1732
1741
  const _deadline = sc_0.loadUintBig(32);
1733
1742
  const _status = sc_0.loadUintBig(8);
1734
1743
  const _acceptedOffer = sc_0.loadUintBig(32);
1735
1744
  const _isExpired = sc_0.loadBit();
1736
- return { $$type: 'IntentData' as const, buyer: _buyer, serviceHash: _serviceHash, budget: _budget, deadline: _deadline, status: _status, acceptedOffer: _acceptedOffer, isExpired: _isExpired };
1745
+ return { $$type: 'IntentData' as const, buyer: _buyer, serviceHash: _serviceHash, serviceName: _serviceName, budget: _budget, deadline: _deadline, status: _status, acceptedOffer: _acceptedOffer, isExpired: _isExpired };
1737
1746
  }
1738
1747
 
1739
1748
  export function loadTupleIntentData(source: TupleReader) {
1740
1749
  const _buyer = source.readAddress();
1741
1750
  const _serviceHash = source.readBigNumber();
1751
+ const _serviceName = source.readString();
1742
1752
  const _budget = source.readBigNumber();
1743
1753
  const _deadline = source.readBigNumber();
1744
1754
  const _status = source.readBigNumber();
1745
1755
  const _acceptedOffer = source.readBigNumber();
1746
1756
  const _isExpired = source.readBoolean();
1747
- return { $$type: 'IntentData' as const, buyer: _buyer, serviceHash: _serviceHash, budget: _budget, deadline: _deadline, status: _status, acceptedOffer: _acceptedOffer, isExpired: _isExpired };
1757
+ return { $$type: 'IntentData' as const, buyer: _buyer, serviceHash: _serviceHash, serviceName: _serviceName, budget: _budget, deadline: _deadline, status: _status, acceptedOffer: _acceptedOffer, isExpired: _isExpired };
1748
1758
  }
1749
1759
 
1750
1760
  export function loadGetterTupleIntentData(source: TupleReader) {
1751
1761
  const _buyer = source.readAddress();
1752
1762
  const _serviceHash = source.readBigNumber();
1763
+ const _serviceName = source.readString();
1753
1764
  const _budget = source.readBigNumber();
1754
1765
  const _deadline = source.readBigNumber();
1755
1766
  const _status = source.readBigNumber();
1756
1767
  const _acceptedOffer = source.readBigNumber();
1757
1768
  const _isExpired = source.readBoolean();
1758
- return { $$type: 'IntentData' as const, buyer: _buyer, serviceHash: _serviceHash, budget: _budget, deadline: _deadline, status: _status, acceptedOffer: _acceptedOffer, isExpired: _isExpired };
1769
+ return { $$type: 'IntentData' as const, buyer: _buyer, serviceHash: _serviceHash, serviceName: _serviceName, budget: _budget, deadline: _deadline, status: _status, acceptedOffer: _acceptedOffer, isExpired: _isExpired };
1759
1770
  }
1760
1771
 
1761
1772
  export function storeTupleIntentData(source: IntentData) {
1762
1773
  const builder = new TupleBuilder();
1763
1774
  builder.writeAddress(source.buyer);
1764
1775
  builder.writeNumber(source.serviceHash);
1776
+ builder.writeString(source.serviceName);
1765
1777
  builder.writeNumber(source.budget);
1766
1778
  builder.writeNumber(source.deadline);
1767
1779
  builder.writeNumber(source.status);
@@ -1936,6 +1948,7 @@ export type Reputation$Data = {
1936
1948
  cleanupCursor: bigint;
1937
1949
  intents: Dictionary<number, Address>;
1938
1950
  intentServiceHashes: Dictionary<number, bigint>;
1951
+ intentServiceNames: Dictionary<number, Cell>;
1939
1952
  intentBudgets: Dictionary<number, bigint>;
1940
1953
  intentDeadlines: Dictionary<number, number>;
1941
1954
  intentStatuses: Dictionary<number, number>;
@@ -1984,26 +1997,29 @@ export function storeReputation$Data(src: Reputation$Data) {
1984
1997
  const b_5 = new Builder();
1985
1998
  b_5.storeDict(src.intents, Dictionary.Keys.Uint(32), Dictionary.Values.Address());
1986
1999
  b_5.storeDict(src.intentServiceHashes, Dictionary.Keys.Uint(32), Dictionary.Values.BigUint(256));
1987
- b_5.storeDict(src.intentBudgets, Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257));
2000
+ b_5.storeDict(src.intentServiceNames, Dictionary.Keys.Uint(32), Dictionary.Values.Cell());
1988
2001
  const b_6 = new Builder();
2002
+ b_6.storeDict(src.intentBudgets, Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257));
1989
2003
  b_6.storeDict(src.intentDeadlines, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32));
1990
2004
  b_6.storeDict(src.intentStatuses, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(8));
1991
- b_6.storeDict(src.intentAcceptedOffer, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32));
1992
- b_6.storeUint(src.intentCount, 32);
1993
2005
  const b_7 = new Builder();
2006
+ b_7.storeDict(src.intentAcceptedOffer, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32));
2007
+ b_7.storeUint(src.intentCount, 32);
1994
2008
  b_7.storeDict(src.intentsByService, Dictionary.Keys.BigUint(256), Dictionary.Values.Cell());
1995
2009
  b_7.storeDict(src.offers, Dictionary.Keys.Uint(32), Dictionary.Values.Address());
1996
- b_7.storeDict(src.offerIntents, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32));
1997
2010
  const b_8 = new Builder();
2011
+ b_8.storeDict(src.offerIntents, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32));
1998
2012
  b_8.storeDict(src.offerPrices, Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257));
1999
2013
  b_8.storeDict(src.offerDeliveryTimes, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32));
2000
- b_8.storeDict(src.offerStatuses, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(8));
2001
- b_8.storeUint(src.offerCount, 32);
2002
- b_8.storeUint(src.intentCleanupCursor, 32);
2003
- b_8.storeDict(src.agentActiveIntents, Dictionary.Keys.Address(), Dictionary.Values.BigInt(257));
2004
- b_8.storeUint(src.maxIntentsPerAgent, 8);
2005
- b_8.storeCoins(src.storageFund);
2006
- b_8.storeCoins(src.accumulatedFees);
2014
+ const b_9 = new Builder();
2015
+ b_9.storeDict(src.offerStatuses, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(8));
2016
+ b_9.storeUint(src.offerCount, 32);
2017
+ b_9.storeUint(src.intentCleanupCursor, 32);
2018
+ b_9.storeDict(src.agentActiveIntents, Dictionary.Keys.Address(), Dictionary.Values.BigInt(257));
2019
+ b_9.storeUint(src.maxIntentsPerAgent, 8);
2020
+ b_9.storeCoins(src.storageFund);
2021
+ b_9.storeCoins(src.accumulatedFees);
2022
+ b_8.storeRef(b_9.endCell());
2007
2023
  b_7.storeRef(b_8.endCell());
2008
2024
  b_6.storeRef(b_7.endCell());
2009
2025
  b_5.storeRef(b_6.endCell());
@@ -2043,27 +2059,29 @@ export function loadReputation$Data(slice: Slice) {
2043
2059
  const sc_5 = sc_4.loadRef().beginParse();
2044
2060
  const _intents = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Address(), sc_5);
2045
2061
  const _intentServiceHashes = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.BigUint(256), sc_5);
2046
- const _intentBudgets = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257), sc_5);
2062
+ const _intentServiceNames = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Cell(), sc_5);
2047
2063
  const sc_6 = sc_5.loadRef().beginParse();
2064
+ const _intentBudgets = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257), sc_6);
2048
2065
  const _intentDeadlines = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), sc_6);
2049
2066
  const _intentStatuses = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(8), sc_6);
2050
- const _intentAcceptedOffer = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), sc_6);
2051
- const _intentCount = sc_6.loadUintBig(32);
2052
2067
  const sc_7 = sc_6.loadRef().beginParse();
2068
+ const _intentAcceptedOffer = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), sc_7);
2069
+ const _intentCount = sc_7.loadUintBig(32);
2053
2070
  const _intentsByService = Dictionary.load(Dictionary.Keys.BigUint(256), Dictionary.Values.Cell(), sc_7);
2054
2071
  const _offers = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Address(), sc_7);
2055
- const _offerIntents = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), sc_7);
2056
2072
  const sc_8 = sc_7.loadRef().beginParse();
2073
+ const _offerIntents = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), sc_8);
2057
2074
  const _offerPrices = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257), sc_8);
2058
2075
  const _offerDeliveryTimes = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), sc_8);
2059
- const _offerStatuses = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(8), sc_8);
2060
- const _offerCount = sc_8.loadUintBig(32);
2061
- const _intentCleanupCursor = sc_8.loadUintBig(32);
2062
- const _agentActiveIntents = Dictionary.load(Dictionary.Keys.Address(), Dictionary.Values.BigInt(257), sc_8);
2063
- const _maxIntentsPerAgent = sc_8.loadUintBig(8);
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 };
2076
+ const sc_9 = sc_8.loadRef().beginParse();
2077
+ const _offerStatuses = Dictionary.load(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(8), sc_9);
2078
+ const _offerCount = sc_9.loadUintBig(32);
2079
+ const _intentCleanupCursor = sc_9.loadUintBig(32);
2080
+ const _agentActiveIntents = Dictionary.load(Dictionary.Keys.Address(), Dictionary.Values.BigInt(257), sc_9);
2081
+ const _maxIntentsPerAgent = sc_9.loadUintBig(8);
2082
+ const _storageFund = sc_9.loadCoins();
2083
+ const _accumulatedFees = sc_9.loadCoins();
2084
+ 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, intentServiceNames: _intentServiceNames, 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 };
2067
2085
  }
2068
2086
 
2069
2087
  export function loadTupleReputation$Data(source: TupleReader) {
@@ -2089,14 +2107,15 @@ export function loadTupleReputation$Data(source: TupleReader) {
2089
2107
  const _cleanupCursor = source.readBigNumber();
2090
2108
  const _intents = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Address(), source.readCellOpt());
2091
2109
  const _intentServiceHashes = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.BigUint(256), source.readCellOpt());
2110
+ const _intentServiceNames = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Cell(), source.readCellOpt());
2092
2111
  const _intentBudgets = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257), source.readCellOpt());
2093
2112
  const _intentDeadlines = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), source.readCellOpt());
2094
2113
  const _intentStatuses = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(8), source.readCellOpt());
2095
2114
  const _intentAcceptedOffer = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), source.readCellOpt());
2096
2115
  const _intentCount = source.readBigNumber();
2097
2116
  const _intentsByService = Dictionary.loadDirect(Dictionary.Keys.BigUint(256), Dictionary.Values.Cell(), source.readCellOpt());
2098
- const _offers = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Address(), source.readCellOpt());
2099
2117
  source = source.readTuple();
2118
+ const _offers = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Address(), source.readCellOpt());
2100
2119
  const _offerIntents = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), source.readCellOpt());
2101
2120
  const _offerPrices = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257), source.readCellOpt());
2102
2121
  const _offerDeliveryTimes = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), source.readCellOpt());
@@ -2107,7 +2126,7 @@ export function loadTupleReputation$Data(source: TupleReader) {
2107
2126
  const _maxIntentsPerAgent = source.readBigNumber();
2108
2127
  const _storageFund = source.readBigNumber();
2109
2128
  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 };
2129
+ 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, intentServiceNames: _intentServiceNames, 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 };
2111
2130
  }
2112
2131
 
2113
2132
  export function loadGetterTupleReputation$Data(source: TupleReader) {
@@ -2132,6 +2151,7 @@ export function loadGetterTupleReputation$Data(source: TupleReader) {
2132
2151
  const _cleanupCursor = source.readBigNumber();
2133
2152
  const _intents = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Address(), source.readCellOpt());
2134
2153
  const _intentServiceHashes = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.BigUint(256), source.readCellOpt());
2154
+ const _intentServiceNames = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Cell(), source.readCellOpt());
2135
2155
  const _intentBudgets = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257), source.readCellOpt());
2136
2156
  const _intentDeadlines = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32), source.readCellOpt());
2137
2157
  const _intentStatuses = Dictionary.loadDirect(Dictionary.Keys.Uint(32), Dictionary.Values.Uint(8), source.readCellOpt());
@@ -2149,7 +2169,7 @@ export function loadGetterTupleReputation$Data(source: TupleReader) {
2149
2169
  const _maxIntentsPerAgent = source.readBigNumber();
2150
2170
  const _storageFund = source.readBigNumber();
2151
2171
  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 };
2172
+ 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, intentServiceNames: _intentServiceNames, 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 };
2153
2173
  }
2154
2174
 
2155
2175
  export function storeTupleReputation$Data(source: Reputation$Data) {
@@ -2175,6 +2195,7 @@ export function storeTupleReputation$Data(source: Reputation$Data) {
2175
2195
  builder.writeNumber(source.cleanupCursor);
2176
2196
  builder.writeCell(source.intents.size > 0 ? beginCell().storeDictDirect(source.intents, Dictionary.Keys.Uint(32), Dictionary.Values.Address()).endCell() : null);
2177
2197
  builder.writeCell(source.intentServiceHashes.size > 0 ? beginCell().storeDictDirect(source.intentServiceHashes, Dictionary.Keys.Uint(32), Dictionary.Values.BigUint(256)).endCell() : null);
2198
+ builder.writeCell(source.intentServiceNames.size > 0 ? beginCell().storeDictDirect(source.intentServiceNames, Dictionary.Keys.Uint(32), Dictionary.Values.Cell()).endCell() : null);
2178
2199
  builder.writeCell(source.intentBudgets.size > 0 ? beginCell().storeDictDirect(source.intentBudgets, Dictionary.Keys.Uint(32), Dictionary.Values.BigInt(257)).endCell() : null);
2179
2200
  builder.writeCell(source.intentDeadlines.size > 0 ? beginCell().storeDictDirect(source.intentDeadlines, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(32)).endCell() : null);
2180
2201
  builder.writeCell(source.intentStatuses.size > 0 ? beginCell().storeDictDirect(source.intentStatuses, Dictionary.Keys.Uint(32), Dictionary.Values.Uint(8)).endCell() : null);
@@ -2219,7 +2240,7 @@ function initReputation_init_args(src: Reputation_init_args) {
2219
2240
  }
2220
2241
 
2221
2242
  async function Reputation_init(owner: Address) {
2222
- const __code = Cell.fromHex('b5ee9c724102b0010038b400022cff008e88f4a413f4bcf2c80bed53208e8130e1ed43d901460202710222020120030b02012004090202760507033da71bda89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8c347490600045614033da715da89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8c3474908000220033fb7a7bda89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8c3047490a000456230201200c0f03f3b7431da89a1a400031d0ff4800203a3b679c61a224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222b047490d01601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c610e002c8307561e0280204133f40e6fa19401d70130925b6de20201201020020120111403f3ad98f6a268690000c743fd200080e8ed9e7186889288930892889208928892089188920891889108918891089088910890889008908890088f8890088f888f088f888f088e888f088e888e088e888e088d888e088d888d088d888d088c888d088c888c088c888c088b888c088b888b088b888b088a888b088ac047491201601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c6113001c8307561d0259f40f6fa192306ddf020148151c020120161a03f1a033b513434800063a1fe9000407476cf38c34449444984494449044944490448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c4458445444584456474917018c1114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c61206e92306d99206ef2d0806f256f05e2206e92306dde1801de20c100917f94205625bee292306de0562380202259f40e6fa192306ddf206e925b6de080202056245422434133f40e6fa19401d70130925b6de280202056245422534133f40e6fa19401d70130925b6de280202056245422634133f40e6fa19401d70130925b6de2802056274016711900a64133f40e6fa19401d70030925b6de203206ef2d080236eb39603206ef2d080923370e2226eb39602206ef2d080923270e2216eb39601206ef2d080923170e2246eb39604206ef2d080923470e2103441306f050335a3abb513434800063a1fe9000407476cf38c376cf1b311b311b39247491b00365623a7032daa00a0208100f0a87021c20095305330a904de24552003f1a701da89a1a400031d0ff4800203a3b679c61a224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222b47491d01581114111511141113111411131112111311121111111211111110111111100f11100f550edb3c6ce76ce76ca71e01ea561380202259f40e6fa192306ddf206ef2d0805610802023784133f40e6fa19401d70130925b6de2206ef2d08080202056145422534133f40e6fa19401d70130925b6de2206ef2d0807080202056145422734133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e2561680202683071f00804133f40e6fa19401d70130925b6de2206ef2d0808020561740178101014133f40e6fa19401d70030925b6de2206ef2d08023c00094f82323be9170e210564440033fb1aafb513434800063a1fe9000407476cf38c376cf15c417c3d5c417c3db1860474921000221020120233b020120243502012025320201202628033facaf76a268690000c743fd200080e8ed9e7186ed9e2b882f87ab882f87b630c047492700022c020148292e03f1a785da89a1a400031d0ff4800203a3b679c61a224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222b47492a015c1114111511141113111411131112111311121111111211111110111111100f11100f550edb3c6caa6caa6caa6c8a2b01f6562380202259f40e6fa192306ddf6e99707054700053007021e07080202056245422434133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27080202056245422534133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27022c2009630a76421a9049131e27080202056245422632c01f84133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27080202056245422734133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27021c2009b30f82321a182015180a904de7023c2009b30f82323a182015180a904de7026c2639325c1149170e2923071de20c0009323c2009170e22d00809af82324a18208278d00bc9170e2923072de20c0009326c0009170e29324c2009170e29af82325a18208093a80bc9170e2923073de7f21c2001850060504431303f1a41bda89a1a400031d0ff4800203a3b679c61a224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222c222a222c222b47492f01581114111511141113111411131112111311121111111211111110111111100f11100f550edb3c6cf56cf56c853001f02b80202259f40e6fa192306ddf206ef2d0808020545c0052404133f40e6fa19401d70130925b6de2206ef2d0802b8020248101014133f40e6fa19401d70030925b6de2206ef2d0808020545c0052604133f40e6fa19401d70130925b6de2206ef2d0808020544c16784133f40e6fa19401d70130925b6de2310012206ef2d0801034413003f3b30dbb513434800063a1fe9000407476cf38c34449444984494449044944490448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c4458445444584456047493301601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c6134001a83072d0259f40f6fa192306ddf0201203638033fb3a37b513434800063a1fe9000407476cf38c376cf15c417c3d5c417c3db18604749370008f8276f1003f3b0357b513434800063a1fe9000407476cf38c34449444984494449044944490448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c4458445444584456047493901601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c613a00c820c100917f94205625bee2923070e080202056235422334133f40e6fa19401d70130925b6de2206e917f9820206ef2d080c000e2925b70e080202056230350444133f40e6fa19401d70130925b6de2206e925b70e0206ef2d080a76401206ef2d080a9040201203c4402016a3d4103f2ab3eed44d0d200018e87fa400101d1db3ce30d112511261125112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a111911181119111811171118111711161117111611151116111547493e018c1114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c61206e92306d99206ef2d0806f266f06e2206e92306dde3f01f620c100917f94205616bee292306de0561b80202259f40e6fa192306ddf206e925b6de05617802023714133f40e6fa19401d70030925b6de201206ef2d080561c80202459f40e6fa192306ddf206ef2d080561c80202559f40e6fa192306ddf206ef2d080561c8020268101014133f40e6fa19401d70030925b6de240006c206ef2d080802020561e0350884133f40e6fa19401d70130925b6de2206ef2d080246eb39604206ef2d080923470e210354430126f0603f2a9b4ed44d0d200018e87fa400101d1db3ce30d112511261125112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a111911181119111811171118111711161117111611151116111547494201601114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c6143004681010b25028101014133f40a6fa19401d70030925b6de2206eb395206ef2d080e03070033fb42a3da89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8c30474945000225049801d072d721d200d200fa4021103450666f04f86102f862ed44d0d200018e87fa400101d1db3ce30d1127965f0f5f0f5f09e01125d70d1ff2e08221821038a0a307bae302218210a7262e8eba47494d5301f26d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d82089896807054700053007a5311091124090811230809112209081121080911200908111f0809111e0908111d0809111c0908111b0809111a0908111908091118090811170809111609081115080711140706111306091112090811110848003007111007106f109e108d105c107b106a105710561045103402f8db3c5726112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211114a4c01f4fa40fa00d31ff404d401d0f404f404f404d430d0f404f404f404d430d0f404f404f404d430d0f404f404f404d430d0f404d31fd31ff404f404d430d0f404f404f404d430d0f404d31ff404f404d430d0f404f404f404d430d0f404d31fd31ff404d307fa00fa00301122112611221122112511221122112411224b000c11221123112200181110111111100f11100f550e03f631d401d001d431d200308160adf8416f24135f035626bef2f4019b9320d74a91d5e868f90400da11561c83072280204133f40e6fa19401d70130925b6de2206eb3e30f112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111d111a111c111a4e4f5100d431206ef2d080562280202259f40e6fa192306ddf817b16216eb39bf84202206ef2d08012c705923170e2f2f40111210180205110112371216e955b59f45b3098c801cf004133f443e28020f8232104111f04102302112302216e955b59f45b3098c801cf014133f443e201fe3056238020f84202112502562501206e953059f45b30944133f416e2011122018020015624500471216e955b59f45b3098c801cf004133f443e28020702103112303562559216e955b59f45b3098c801cf014133f443e28020702103112203562559216e955b59f45b3098c801cf014133f443e28020f823210311210356255000e659216e955b59f45b3098c801cf014133f443e28020f8232103112003562559216e955b59f45b3098c801cf014133f443e202111c028307020111220111238020216e955b59f45b3098c801cf014133f443e21121a41121111e111f111e111d111e111d111c111d111c111b111c111b111a111b03fc1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a1079106810571046103544301272db3c018208e4e1c0a0015624a05ca08208989680a070fb02f8427081008270887fa75201e210246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae02fc8efa31d401d001d200308160adf8416f24135f035626bef2f4019b9320d74a91d5e868f90400da118307561d0280204133f40e6fa19401d70130925b6de2816cce216eb3f2f4206ef2d08080202056225422334133f40e6fa19401d70130925b6de2206e95816ccef2f0de802001206ef2d080a42103112303562359e021545701fc216e955b59f45b3098c801cf014133f443e2018e3b802053005621595623014133f40e6fa19401d70130925b6de2206ef2d080a42103112103562259216e955b59f45b3098c801cf014133f443e2111ede8020f8232104111f04102302112202216e955b59f45b3098c801cf014133f443e21123112511231122112411225501fc112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111d111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10795603c6106810571046103544301271db3c0182082dc6c0a0015624a05ca08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb007fa7ad044a821054e26a4bbae302218210148534b8bae3022182108711bf6fbae3022182102f7e5059ba585c606201fc31d401d001d20030019b9320d74a91d5e868f90400da118307561d0280204133f40e6fa19401d70130925b6de2816cce216eb3f2f4206ef2d080562280202259f40e6fa192306ddf820097a4216eb39bf84202206ef2d08012c705923170e2f2f40111210180205110112371216e955b59f45b3098c801cf004133f443e25902f68020f8232104111f04102302112302216e955b59f45b3098c801cf014133f443e2112482082dc6c0a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123a75a01fc112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111c111d111c111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce5b019e10bd10ac109b108a10791068105710461035440302c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae01f831d31fd3ff30562280202359f40e6fa192306ddf816cce216eb3f2f4811bd6f84202206ef2d08012c705f2f48020f82321031120032459216e955b59f45b3098c801cf014133f443e2561b8307561f59f40f6fa192306ddfc813cb1f226eb39c7101cb0002206ef2d08058cc95327058cb00e2830701c903111c03125d02fc01111e01206e953059f45b30944133f417e2112482084c4b40a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120a75e01fc111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a111a111b111a1118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910681057104610355f017a440302c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae01fe31d3073020c23293308032de20c101923071de112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511136103fe1112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443012db3c5ca08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb007fa7ad02fe8efc31fa40fa40fa40fa00d31f3001111d0180200156185006206e953059f45b30944133f416e201111b0180200156175004206e953059f45b30944133f416e201111901802001561601111c206e953059f45b30944133f416e201111701802001561501111c810101216e955b59f45b3098c801cf004133f443e2802020e0636603fe0311170312561502111901216e955b59f45b3098c801cf014133f443e21113802056137071216e955b59f45b3098c801cf004133f443e21112a4112482084c4b40a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf818ae2f400c901a76c6401fcfb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191116111a11161117111911171115111711151113111611131112111511121113111411131111111311111110111211100f11110f0e11100e10df6501a210ce10bd10ac109b108a10791068105710461035440302c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae044c218210bfa05986bae3022182102365d020bae302218210966dc6edbae3022182106d5af6a7ba676a6f9302fe31fa40307094205615b98e3e561a80202259f40e6fa192306ddf206eb398206ef2d08022c705923070e28e1c1115802056167f71216e955b59f45b3098c801cf004133f443e21115dea4e85b112482082dc6c0a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069a76801f6cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711156901f01114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910681057104610354403c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae03fe5b8168c9f8425625c705f2f45621a7032baa00a08100f0a870218e1b21c2008e13562622a904c2149830a71411255625a19131e29131e2945b701125e201112601a082009ebc2182084c4b40bcf2f47072708856270405552010246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf818ae2f4006b6c6d002400000000466565732077697468647261776e001a58cf8680cf8480f400f400cf8101f8c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211106e01b60f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443012c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae02fe31d3fffa00d31f30811127f8235220bcf2f48159c222c200f2f47081010bf84227598101014133f40a6fa19401d70030925b6de2206eb39631206ef2d0809130e25304bee3008020f84202111602561001206e953059f45b30944133f416e21113802053f48307216e955b59f45b3098c801cf014133f443e2011112018020707701f4f842112611281126112511271125112411281124112311271123112211281122112111271121112011281120111f1127111f111e1128111e111d1127111d111c1128111c111b1127111b111a1128111a1119112711191118112811181117112711171116112811161115112711151114112811141113112711137102fa1112112811121111112711111110112811100f11270f0e11280e0d11270d0c11280c0b11270b0a11280a091127090811280807112707061128060511270504112804031127030211290201112a01db3c8e2a572981010bf84224598101014133f40a6fa19401d70030925b6de2206eb395206ef2d080923070e21129de7275012ceda2edfb70209a21c13293530fb99170e28ae85f03707302fe561580202259f40e6fa192306ddf5612802023784133f40e6fa19401d70130925b6de2216eb39901206ef2d08024c705923170e293206eb39170e297206ef2d080c000923070e28eb280202056145422334133f40e6fa19401d70130925b6de2206eb399f82301206ef2d080be923070e28e876c21db3c7fdb31e0dea401a4897400020101f6811d38562a24b9f2f4112901112801112511271125112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611147600701113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035102401f65420f4810101216e955b59f45b3098c801cf004133f443e280202003111203544f13111401216e955b59f45b3098c801cf014133f443e20e80202d7078216e955b59f45b3098c801cf014133f443e22ca481010bf8421115a410361201111501810101216e955b59f4593098c801cf004133f441e21125112711257801fc112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131111111411115e3f0e11110e0311100310df79046c103e10bd10ac109b108a1079106810571046451504db3cdb3c71db3c018208989680a05301a08208989680a070fb02f84270810082707a7b7f92007a2d83072359f40f6fa192306ddfc812cb1f216eb39c7101cb0001206ef2d08001cc947032cb00e2830701c9103e12206e953059f45b30944133f417e20b01eaeda2edfb24709a20c10593531eb99170e28ed55610802023784133f40e6fa19401d70130925b6de2206eb397206ef2d080c000923070e28eaa80202056135422434133f40e6fa19401d70130925b6de2206eb399f82301206ef2d080be923070e2e302de01a401a4e83035534cbe9234709104e2047c01fe30112511261125112411261124112311261123112211261122112111261121112011261120111f1126111f111e1126111e111d1126111d111c1126111c111b1126111b111a1126111a1119112611191118112611181117112611171116112611161115112611151114112611141113112611131112112611121111112611117d02fe1110112611100f11260f0e11260e0d11260d0c11260c0b11260b0a11260a09112609112608070655405626db3c341125a4112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a1119111811191118897e009c1117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f10ef10de10cd10bc10ab109a108910781067105604415503db310188702056168e1221c10a94205628b99170e2935323b99170e28e96562680202259f40e6fa192306ddf6eb3e300a401a401e857175f0356135624be93571370921113e211138001fc7080202056275422434133f40e6fa19401d70130925b6de280202056275422534133f40e6fa19401d70130925b6de280202056265422634133f40e6fa19401d70130925b6de280202056285422734133f40e6fa19401d70130925b6de270246eb3983003206ef2d080039134e270236eb3983002206ef2d080029133e2238101ecc2639c02a76423a904c114927f34de9132e223b393206eb39170e29820206ef2d080c2009170e28e13f82301206ef2d080a18208278d00bc927f33de9130e222b39301c000923170e293206eb39170e29820206ef2d080c2009170e28e13f82301206ef2d080a18208093a80bc92307fde9130e2e3008201fc112511291125112411281124112311271123112211261122112111291121112011281120111f1127111f111e1126111e111d1129111d111c1128111c111b1127111b111a1126111a1119112911191118112811181117112711171116112611161115112911151114112811141113112711131112112611121111112911118302f61110112811100f11270f0e11260e0d11290d0c11280c0b11270b0a11260a09112909081128080711270706112606051129050411280403112703021126020111290111285628db3c1126a4112511291125112411281124112311271123112211261122112111251121112011241120111f1123111f111e1122111e849101f6562380202259f40e6fa192306ddf11248020226d206e953059f45b30944133f416e211238020226d71216e955b59f45b3098c801cf004133f443e280206d21031125032459216e955b59f45b3098c801cf014133f443e280206d21031124032459216e955b59f45b3098c801cf014133f443e280206d21031123038501b62459216e955b59f45b3098c801cf014133f443e280206d2104112204102302112202216e955b59f45b3098c801cf014133f443e256236eb3925723e30d112111221121112011211120111f1120111f111e111f111e111d111e111d8603fe70209a531fb99320c1149170e28ed2561580202359f40e6fa192306ddf5612802024784133f40e6fa19401d70130925b6de2216eb39f01206ef2d0805627206ef2d080c705923170e293206eb39170e297206ef2d080c000923070e2e30001a401e85b70209a5318b99320c11e9170e28ae85b81010b1124206ef2d0801025878f9001fc112511281125112411271124112311261123112211271122112111261121112011271120111f1126111f111e1127111e02111d02111c1126111c111b1127111b02111a021119112611191118112711180211170211161126111611151127111502111402111311261113111211271112021111021110112611100f11270f8802fa102e0d11260d0c11270c102b0a11260a0911270910280711260706112706102504112604031127030111260111275626db3c1127a4112511281125112411271124112311261123112211241122112111231121112011221120111f1121111f111e1120111e111c111f111c111b111e111b111a111d111a1119111c1119898e02cc2f802022784133f40e6fa19401d70130925b6de2206e92307f97206ef2d080c300e29130e0561380202259f40e6fa192306ddf11108020227478216e955b59f45b3098c801cf014133f443e256106eb3925710e30d70209a5318b99320c1149170e28ae85f038a8d01fe1110206ef2d080112611271126112511271125112411271124112311271123112211271122112111271121112011271120111f1127111f111e1127111e111d1127111d111c1127111c111b1127111b111a1127111a1119112711191118112711181117112711171116112711161115112711151114112711141113112711138b02f41112112711121111112711111110112711100f11270f0e11270e0d11270d0c11270c0b11270b0a11270a091127090811270807112707061127060511270504112704031127030211270201112701db3c112511261125112411251124112311241123112211231122112111221121112011211120111f1120111fa58c00c0111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f550e00da8020545d0052404133f40e6fa19401d70130925b6de22a802024784133f40e6fa19401d70130925b6de2216eb39801206ef2d08024ba923170e293206eb39170e297206ef2d080c000923070e28e1a098020227378216e955b59f45b3098c801cf014133f443e209a4de01a40100b01118111b11181117111a11171116111911161115111811151114111711141113111611131112111511121111111411111110111311100f11120f0e11110e0d11100d10cf10be10ad109c108b107a1069105810471036454000d62d80202359f40e6fa192306ddf2a802024784133f40e6fa19401d70130925b6de2216eb39f01206ef2d0805627206ef2d080c705923170e293206eb39170e297206ef2d080c000923070e28e1a098020227378216e955b59f45b3098c801cf014133f443e209a4de01a4010036011124016d810101216e955b59f4593098c801cf004133f441e20300f4111d1121111d111c1120111c111b111f111b111a111e111a1119111d11191118111c11181117111b11171116111a11161115111911151114111811141113111711131112111611121111111511111110111411100f11130f0e11120e0d11110d0c11100c10bf10ae109d108c107b106a1059104810374016505402e68810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb0001c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54a7ae043ce3022182103785158dbae3022182101ce33d8ebae3022182103b9b249eba94999fa201fc31d31ffa00d31f302f802024784133f40e6fa19401d70130925b6de2813404216eb3f2f481680001206ef2d080c000f2f480202056125422534133f40e6fa19401d70130925b6de28200bc90216eb39af82302206ef2d08012b9923170e2f2f456118020248101014133f40e6fa19401d70030925b6de282008b73216eb39501e69901206ef2d0805230bb923170e2f2f4561380202459f40e6fa192306ddf820087fa216eb39cf84202206ef2d08012c705b3923170e2f2f48020f84228103e01206e953059f45b30944133f416e2802020103c5448135055216e955b59f45b3098c801cf014133f443e218802054206b8101019602fe216e955b59f45b3098c801cf004133f443e2802020103854461350cc216e955b59f45b3098c801cf014133f443e2048020247078216e955b59f45b3098c801cf014133f443e203a4112482084c4b40a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025ca79701fa6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611149801de1113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b5e36104710361035440302c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae01f631d31f3025802022784133f40e6fa19401d70130925b6de28200c723216eb3f2f48200b1bf01206ef2d080c000f2f4802054590052304133f40e6fa19401d70130925b6de282009d3e216eb3f2f4802021206ef2d08056145959f40e6fa192306ddf815730216eb39af84222206ef2d080c7059170e2f2f48020229a01f8206ef2d080561159784133f40e6fa19401d70130925b6de2816800216eb39801206ef2d080c000923170e2f2f4802022206ef2d08021561355204133f40e6fa19401d70130925b6de28200bc90216eb39af82302206ef2d08012b9923170e2f2f4078020237178216e955b59f45b3098c801cf014133f443e28020229b03fe206ef2d080021111027178216e955b59f45b3098c801cf014133f443e2802022206ef2d08021031111035250216e955b59f45b3098c801cf014133f443e2276eb38e9e07206ef2d08010ef107e0211270201112801db3c112701112601106e106d9137e270935306b98ae85f03112482082dc6c0a0205626a08208989680a0a59c9d00ee5302bd8e708020545b0052304133f40e6fa19401d70130925b6de25610802023784133f40e6fa19401d70130925b6de2216eb39d01206ef2d08023206ef2d080ba923170e293206eb39170e297206ef2d080c000923070e28e1a0f802056107278216e955b59f45b3098c801cf014133f443e20fdedea402fc70fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111aa79e01b61119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10be104d10ac109b108a1079106810571035440302ad01fe31d31f302d802022784133f40e6fa19401d70130925b6de2813404216eb3f2f482009b6f01206ef2d080c001f2f4561180202259f40e6fa192306ddf815730216eb39bf84202206ef2d08012c705923170e2f2f41d8020017278216e955b59f45b3098c801cf014133f443e2112482082dc6c0a0205626a08208989680a070a002fafb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111aa7a101b41119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10bd10ac109b108a107910681057104610354403ad02fc8efa31d31f302d802022784133f40e6fa19401d70130925b6de2813404216eb3f2f48200cd2501206ef2d080c000f2f4561180202259f40e6fa192306ddf815730216eb39bf84202206ef2d08012c705923170e2f2f40d80202e7378216e955b59f45b3098c801cf014133f443e2f842112511261125112411251124e001a3a901fe112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f1f10dea404fc10cd10bc10ab109a108910781067105610451034413001112701db3c70935306b98ae830572682082dc6c0a0205626a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112411251124a5a6a7a8009c2481010b228101014133f40a6fa19401d70030925b6de2206eb39820206ef2d080c2009170e28e2381010b01206ef2d080a5103612810101216e955b59f4593098c801cf004133f441e203915be200d68020545b0052304133f40e6fa19401d70130925b6de228802023784133f40e6fa19401d70130925b6de2216eb39901206ef2d0805629ba923170e293206eb39170e297206ef2d080c000923070e28e19078020287278216e955b59f45b3098c801cf014133f443e207dea400140000000045786365737301fc112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f550ead01248210946a98b6bae3025f0f5f0f5f09f2c082aa01fad33f30c8018210aff90f5758cb1fcb3fc9112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a1118111711191117111611181116111511171115111411161114111311151113ab01661112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443012ac01c6f84270f8276f10f8416f24135f03a1820afaf080b98e29820afaf08070fb0270500381008201503304c8cf8580ca00cf8440ce01fa02806acf40f400c901fb008e20705003804201503304c8cf8580ca00cf8440ce01fa02806acf40f400c901fb00e2ad0174c87f01ca001126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54ae01f4011125011126ce011123fa0201112101cb1f01111f01f400111dc8f40001111c01f40001111a01f4001118c8f40001111701f40001111501f4001113c8f40001111201f40001111001f4000ec8f4001df4001bf40009c8f40018cb1f16cb1f14f40012f40001c8f40012f40012f40002c8f40014cb1f14f40015af0066f40005c8f40017f40017f40008c8f40019cb1f1acb1f1af4001acb07500afa02500afa0212cd15cd17cd15cdcd14cdcd12cdcd186a4542');
2243
+ const __code = Cell.fromHex('b5ee9c724102b3010039d500022cff008e88f4a413f4bcf2c80bed53208e8130e1ed43d901460202710222020120030b02012004090202760507033da71bda89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8e347490600045615033da715da89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8e3474908000220033fb7a7bda89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8e3047490a000456240201200c0f03f3b7431da89a1a400031d0ff4800203a3b679c61a224c224e224c224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222d047490d016c1115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c710e002c8307561f0280204133f40e6fa19401d70130925b6de20201201020020120111403f3ad98f6a268690000c743fd200080e8ed9e7186889308938893089288930892889208928892089188920891889108918891089088910890889008908890088f8890088f888f088f888f088e888f088e888e088e888e088d888e088d888d088d888d088c888d088c888c088c888c088b888c088b888b088b888b40474912016c1115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c7113001c8307561e0259f40f6fa192306ddf020148151c020120161a03f1a033b513434800063a1fe9000407476cf38c344498449c4498449444984494449044944490448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c445a47491701981115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c71206e92306d99206ef2d0806f256f05e2206e92306dde1801de20c100917f94205626bee292306de0562480202259f40e6fa192306ddf206e925b6de080202056255422434133f40e6fa19401d70130925b6de280202056255422534133f40e6fa19401d70130925b6de280202056255422634133f40e6fa19401d70130925b6de2802056284016711900a64133f40e6fa19401d70030925b6de203206ef2d080236eb39603206ef2d080923370e2226eb39602206ef2d080923270e2216eb39601206ef2d080923170e2246eb39604206ef2d080923470e2103441306f050335a3abb513434800063a1fe9000407476cf38c376cf1b311b311b3d247491b00365624a7032da703a0208100f0a87021c20095305330a904de24552003f1a701da89a1a400031d0ff4800203a3b679c61a224c224e224c224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222d47491d016c1115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c6c886c886c886c886c781e01e6561480202259f40e6fa192306ddf206ef2d0805610802023784133f40e6fa19401d70130925b6de2206ef2d08080202056145422534133f40e6fa19401d70130925b6de2206ef2d0807080202056145422734133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e256168020261f00c259f40f6fa192306ddf8b08216eb39730206ef2d080d09131e2561880202783074133f40e6fa19401d70130925b6de2206ef2d0808020561840188101014133f40e6fa19401d70030925b6de2206ef2d08024c00094f82324be9170e21067454013033fb1aafb513434800063a1fe9000407476cf38c376cf15c417c3d5c417c3db1c60474921000221020120233b020120243502012025320201202628033facaf76a268690000c743fd200080e8ed9e7186ed9e2b882f87ab882f87b638c047492700022c020148292e03f1a785da89a1a400031d0ff4800203a3b679c61a224c224e224c224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222d47492a01681115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c6caa6caa6caa6c9a2b01f6562480202259f40e6fa192306ddf6e99707054700053007021e07080202056255422434133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27080202056255422534133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27022c2009630a76421a9049131e27080202056255422632c01f84133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27080202056255422734133f40e6fa19401d70130925b6de2206eb39631206ef2d0809130e27021c2009b30f82321a182015180a904de7023c2009b30f82323a182015180a904de7026c2639325c1149170e2923071de20c0009323c2009170e22d00809af82324a18208278d00bc9170e2923072de20c0009326c0009170e29324c2009170e29af82325a18208093a80bc9170e2923073de7f21c2001850060504431303f1a41bda89a1a400031d0ff4800203a3b679c61a224c224e224c224a224c224a2248224a2248224622482246224422462244224222442242224022422240223e2240223e223c223e223c223a223c223a2238223a2238223622382236223422362234223222342232223022322230222e2230222e222c222e222d47492f01641115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c6cf56cf56c953001f02b80202259f40e6fa192306ddf206ef2d0808020545c0052404133f40e6fa19401d70130925b6de2206ef2d0802b8020248101014133f40e6fa19401d70030925b6de2206ef2d0808020545c0052604133f40e6fa19401d70130925b6de2206ef2d0808020544c16784133f40e6fa19401d70130925b6de2310012206ef2d0801034413003f3b30dbb513434800063a1fe9000407476cf38c344498449c4498449444984494449044944490448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c445a0474933016c1115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c7134001a83072d0259f40f6fa192306ddf0201203638033fb3a37b513434800063a1fe9000407476cf38c376cf15c417c3d5c417c3db1c604749370008f8276f1003f3b0357b513434800063a1fe9000407476cf38c344498449c4498449444984494449044944490448c4490448c4488448c4488448444884484448044844480447c4480447c4478447c4478447444784474447044744470446c4470446c4468446c4468446444684464446044644460445c4460445c4458445c445a0474939016c1115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c713a00c820c100917f94205626bee2923070e080202056245422334133f40e6fa19401d70130925b6de2206e917f9820206ef2d080c000e2925b70e080202056240350444133f40e6fa19401d70130925b6de2206e925b70e0206ef2d080a76401206ef2d080a9040201203c4402016a3d4103f2ab3eed44d0d200018e87fa400101d1db3ce30d112611271126112511261125112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a111911181119111811171118111711161117111647493e01981115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c71206e92306d99206ef2d0806f266f06e2206e92306dde3f01f620c100917f94205617bee292306de0561c80202259f40e6fa192306ddf206e925b6de05618802023714133f40e6fa19401d70030925b6de201206ef2d080561d80202459f40e6fa192306ddf206ef2d080561d80202559f40e6fa192306ddf206ef2d080561d8020268101014133f40e6fa19401d70030925b6de240006c206ef2d080802020561f0350884133f40e6fa19401d70130925b6de2206ef2d080246eb39604206ef2d080923470e210354430126f0603f2a9b4ed44d0d200018e87fa400101d1db3ce30d112611271126112511261125112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a1119111811191118111711181117111611171116474942016c1115111611151114111511141113111411131112111311121111111211111110111111100f11100f550edb3c57105f0f57105f0f6c7143004681010b25028101014133f40a6fa19401d70030925b6de2206eb395206ef2d080e03070033fb42a3da89a1a400031d0ff4800203a3b679c61bb678ae20be1eae20be1ed8e30474945000225049801d072d721d200d200fa4021103450666f04f86102f862ed44d0d200018e87fa400101d1db3ce30d1128965f0f5f0f5f0ae01126d70d1ff2e08221821038a0a307bae302218210a7262e8eba47494d5301f46d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d6d82089896807054700053007a531109112509081124080911230908112208091121090811200809111f0908111e0809111d0908111c0809111b0908111a08091119090811180809111709081116080711150706111406091113090811120848003c0711110706111006109f108e107d105c106b109a1089107810571045103402f8db3c5727112511261125112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311124a4c01ecfa40fa00d31ff404d401d0f404f404f404d430d0f404f404f404d430d0f404f404f404d430d0f404f404f404d430d0f404d31fd31ff404f404d430d0f404f404f404d430d0f404f404d31ff404d430d0f404f404f404d430d0f404f404d31fd31ff404d307fa00fa00301123112711231123112611234b001811231125112311231124112300241111111211111110111111100f11100f550e03f631d401d001d431d200308160adf8416f24135f035627bef2f4019b9320d74a91d5e868f90400da11561d83072280204133f40e6fa19401d70130925b6de2206eb3e30f112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111e111b111d111b4e4f5100d431206ef2d080562380202259f40e6fa192306ddf817b16216eb39bf84202206ef2d08012c705923170e2f2f40111220180205110112471216e955b59f45b3098c801cf004133f443e28020f8232104112004102302112402216e955b59f45b3098c801cf014133f443e201fe3056248020f84202112602562601206e953059f45b30944133f416e2011123018020015625500471216e955b59f45b3098c801cf004133f443e28020702103112403562659216e955b59f45b3098c801cf014133f443e28020702103112303562659216e955b59f45b3098c801cf014133f443e28020f823210311220356265000e659216e955b59f45b3098c801cf014133f443e28020f8232103112103562659216e955b59f45b3098c801cf014133f443e202111d028307020111230111248020216e955b59f45b3098c801cf014133f443e21122a41122111f1120111f111e111f111e111d111e111d111c111d111c111b111c02fc111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035443072db3c018208e4e1c0a0015625a05ca08208989680a070fb02f84270805202f0810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00c87f01ca0011271126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54a9b102fc8efa31d401d001d200308160adf8416f24135f035627bef2f4019b9320d74a91d5e868f90400da118307561e0280204133f40e6fa19401d70130925b6de2816cce216eb3f2f4206ef2d08080202056235422334133f40e6fa19401d70130925b6de2206e95816ccef2f0de802001206ef2d080a42103112403562459e021545701fc216e955b59f45b3098c801cf014133f443e2018e3b802053005622595624014133f40e6fa19401d70130925b6de2206ef2d080a42103112203562359216e955b59f45b3098c801cf014133f443e2111fde8020f8232104112004102302112302216e955b59f45b3098c801cf014133f443e21124112611241123112511235501fc112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111e111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac5603d0109b108a10791068105710461035443071db3c0182082dc6c0a0015625a05ca08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb0080a9b0044a821054e26a4bbae302218210148534b8bae3022182108711bf6fbae3022182102f7e5059ba585b5f6201fc31d401d001d20030019b9320d74a91d5e868f90400da118307561e0280204133f40e6fa19401d70130925b6de2816cce216eb3f2f4206ef2d080562380202259f40e6fa192306ddf820097a4216eb39bf84202206ef2d08012c705923170e2f2f40111220180205110112471216e955b59f45b3098c801cf004133f443e25902f68020f8232104112004102302112402216e955b59f45b3098c801cf014133f443e2112582082dc6c0a0205627a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112411261124a95a01f8112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111d111e111d111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f6501f831d31fd3ff30562380202359f40e6fa192306ddf816cce216eb3f2f4811bd6f84202206ef2d08012c705f2f48020f82321031121032459216e955b59f45b3098c801cf014133f443e2561c8307562059f40f6fa192306ddfc813cb1f226eb39c7101cb0002206ef2d08058cc95327058cb00e2830701c903111d03125c02fc01111f01206e953059f45b30944133f417e2112582084c4b40a0205627a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112411261124112311251123112211241122112111231121a95d01fc112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111b111c111b1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910685e01881057104610354403c87f01ca0011271126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54b101fe31d3073020c23293308032de20c101923071de112511271125112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611146003fc1113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910681057104610354430db3c5ca08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e280a9610184f400c901fb00c87f01ca0011271126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54b102fe8efc31fa40fa40fa40fa00d31f3001111e0180200156195006206e953059f45b30944133f416e201111c0180200156185004206e953059f45b30944133f416e201111a01802001561701111d206e953059f45b30944133f416e201111801802001561601111d810101216e955b59f45b3098c801cf004133f443e2802020e0636603fe0311180312561602111a01216e955b59f45b3098c801cf014133f443e21114802056147071216e955b59f45b3098c801cf004133f443e21113a4112582084c4b40a0205627a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf818ae2f400c901a96c6401fcfb00112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1117111b11171118111a11181116111811161114111711141113111611131114111511141112111411121111111311111110111211100f11110f6501b00e11100e10df10ce10bd10ac109b108a107910681057104610354403c87f01ca0011271126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54b1044c218210bfa05986bae3022182102365d020bae30221821077e1b63dbae3022182106d5af6a7ba676a6f9502fe31fa40307094205616b98e3e561b80202259f40e6fa192306ddf206eb398206ef2d08022c705923070e28e1c1116802056177f71216e955b59f45b3098c801cf004133f443e21116dea4e85b112582082dc6c0a0205627a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069a96801f6cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a111811171119111711161118111669018a1115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a10791068105710461035440302b003fe5b8168c9f8425626c705f2f45622a7032ba703a08100f0a870218e1b21c2008e13562722a904c2149830a71411265626a19131e29131e2945b701126e201112701a082009ebc2182084c4b40bcf2f47072708856280405552010246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf818ae2f4006b6c6d002400000000466565732077697468647261776e001a58cf8680cf8480f400f400cf8101f8c901fb00112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311116e01c41110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910681057104610354430c87f01ca0011271126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54b102fc31d3ffd401d001fa00d31f30811127f8235220bcf2f48159c222c200f2f47081010bf84228598101014133f40a6fa19401d70030925b6de2206eb39631206ef2d0809130e25305bee3008020f84202111802561101206e953059f45b30944133f416e2111580205610268307216e955b59f45b3098c801cf014133f443e2707801f4f8421127112a11271126112911261125112811251124112a11241123112911231122112811221121112a1121112011291120111f1128111f111e112a111e111d1129111d111c1128111c111b112a111b111a1129111a1119112811191118112a11181117112911171116112811161115112a11151114112911147103fe1113112811131112112a11121111112911111110112811100f112a0f0e11290e0d11280d0c112a0c0b11290b0a11280a09112a09081129080711280706112a06051129050411280403112a0302112b0201112c01db3ce300811d38562c24b9f2f4112b01112a01112611291126112511281125112411271124112311261123727576012ceda2edfb70209a21c13293530fb99170e28ae85f03707302fe561680202259f40e6fa192306ddf5612802023784133f40e6fa19401d70130925b6de2216eb39901206ef2d08024c705923170e293206eb39170e297206ef2d080c000923070e28eb280202056145422334133f40e6fa19401d70130925b6de2206eb399f82301206ef2d080be923070e28e876c21db3c7fdb31e0dea401a48a740002010054572b81010bf84224598101014133f40a6fa19401d70030925b6de2206eb395206ef2d080923070e2112b01fc112211251122112111241121112011231120111f1122111f111e1121111e111d1120111d111c111f111c111b111e111b111a111d111a1119111c11191118111b11181117111a11171116111911161115111811151114111711141113111611131112111511121111111411111110111311100f11120f0e11110e0d11100d77002c10cf10be10ad109c108b107a1069105810471036102501fc8020c85005cf16c90211150214561001206e953059f45b30944133f417e201111201802052f21114810101216e955b59f45b3098c801cf004133f443e280202003111203544f13111501216e955b59f45b3098c801cf014133f443e20e80202d7078216e955b59f45b3098c801cf014133f443e22ca481010bf8421116a47901f810361201111601810101216e955b59f4593098c801cf004133f441e2112611281126112511271125112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911177a04b41116111811161115111711151114111611141112111511125e4f0e11110e0311100310df103e10bd10ac109b108a1079106810571046451504db3cdb3c71db3c018208b71b00a05301a08208989680a070fb02f84270810082707b7c8094007a2d83072359f40f6fa192306ddfc812cb1f216eb39c7101cb0001206ef2d08001cc947032cb00e2830701c9103e12206e953059f45b30944133f417e20b01eaeda2edfb24709a20c10593531eb99170e28ed55610802023784133f40e6fa19401d70130925b6de2206eb397206ef2d080c000923070e28eaa80202056135422434133f40e6fa19401d70130925b6de2206eb399f82301206ef2d080be923070e2e302de01a401a4e83035534cbe9234709104e2047d01fe30112611271126112511271125112411271124112311271123112211271122112111271121112011271120111f1127111f111e1127111e111d1127111d111c1127111c111b1127111b111a1127111a1119112711191118112711181117112711171116112711161115112711151114112711141113112711131112112711127e02fe1111112711111110112711100f11270f0e11270e0d11270d0c11270c0b11270b0a11270a09112709112708070655405627db3c341126a4112511261125112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a8a7f00b41119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f10ef10de10cd10bc10ab109a108910781067105604415503db310188702056178e1221c10a94205629b99170e2935323b99170e28e96562780202259f40e6fa192306ddf6eb3e300a401a401e857185f0356145625be93571470921114e211148101fc7080202056285422434133f40e6fa19401d70130925b6de280202056285422534133f40e6fa19401d70130925b6de280202056275422634133f40e6fa19401d70130925b6de280202056295422734133f40e6fa19401d70130925b6de270246eb3983003206ef2d080039134e270236eb3983002206ef2d080029133e2238201ecc2639c02a76423a904c114927f34de9132e223b393206eb39170e29820206ef2d080c2009170e28e13f82301206ef2d080a18208278d00bc927f33de9130e222b39301c000923170e293206eb39170e29820206ef2d080c2009170e28e13f82301206ef2d080a18208093a80bc92307fde9130e2e3008301fc1126112a11261125112911251124112811241123112711231122112a1122112111291121112011281120111f1127111f111e112a111e111d1129111d111c1128111c111b1127111b111a112a111a1119112911191118112811181117112711171116112a11161115112911151114112811141113112711131112112a11128402f61111112911111110112811100f11270f0e112a0e0d11290d0c11280c0b11270b0a112a0a09112909081128080711270706112a0605112905041128040311270302112a020111290111285628db3c112aa41126112a1126112511291125112411281124112311271123112211261122112111251121112011241120859201f6562480202259f40e6fa192306ddf11258020226d206e953059f45b30944133f416e211248020226d71216e955b59f45b3098c801cf004133f443e280206d21031126032459216e955b59f45b3098c801cf014133f443e280206d21031125032459216e955b59f45b3098c801cf014133f443e280206d21031124038601b62459216e955b59f45b3098c801cf014133f443e280206d2104112304102302112302216e955b59f45b3098c801cf014133f443e256246eb3925724e30d112211231122112111221121112011211120111f1120111f111e111f111e8703fe70209a531fb99320c1149170e28ed2561680202359f40e6fa192306ddf5612802024784133f40e6fa19401d70130925b6de2216eb39f01206ef2d0805628206ef2d080c705923170e293206eb39170e297206ef2d080c000923070e2e30001a401e85b70209a5318b99320c11e9170e28ae85b81010b1125206ef2d080102588909101f4112611291126112511281125112411271124112311281123112211271122112111281121112011271120111f1128111f02111e02111d1127111d111c1128111c02111b02111a1127111a1119112811190211180211171127111711161128111602111502111411271114111311281113021112021111112711118902fa111011281110102f0e11270e0d11280d102c0b11270b0a11280a10290811270807112807102605112705041128041023021127020111280111275628db3c1127a4112611291126112511281125112411271124112311251123112211241122112111231121112011221120111f1121111f111d1120111d111c111f111c8a8f02cc2f802022784133f40e6fa19401d70130925b6de2206e92307f97206ef2d080c300e29130e0561480202259f40e6fa192306ddf11108020227478216e955b59f45b3098c801cf014133f443e256106eb3925710e30d70209a5318b99320c1149170e28ae85f038b8e01fe1110206ef2d080112711281127112611281126112511281125112411281124112311281123112211281122112111281121112011281120111f1128111f111e1128111e111d1128111d111c1128111c111b1128111b111a1128111a1119112811191118112811181117112811171116112811161115112811151114112811148c02f41113112811131112112811121111112811111110112811100f11280f0e11280e0d11280d0c11280c0b11280b0a11280a091128090811280807112807061128060511280504112804031128030211280201112801db3c112611271126112511261125112411251124112311241123112211231122112111221121a78d00d8112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a11191118111911181117111811171116111711161115111611151114111511141113111411131112111311121111111211111110111111100f11100f550e00da8020545d0052404133f40e6fa19401d70130925b6de22a802024784133f40e6fa19401d70130925b6de2216eb39801206ef2d08024ba923170e293206eb39170e297206ef2d080c000923070e28e1a098020227378216e955b59f45b3098c801cf014133f443e209a4de01a40100d8111b111e111b111a111d111a1119111c11191118111b11181117111a11171116111911161115111811151114111711141113111611131112111511121111111411111110111311100f11120f0e11110e0d11100d10cf10be10ad109c108b107a10691058104710364540102300d62d80202359f40e6fa192306ddf2a802024784133f40e6fa19401d70130925b6de2216eb39f01206ef2d0805628206ef2d080c705923170e293206eb39170e297206ef2d080c000923070e28e1a098020227378216e955b59f45b3098c801cf014133f443e209a4de01a4010036011125016d810101216e955b59f4593098c801cf004133f441e20301fc111f1123111f111e1122111e111d1121111d111c1120111c111b111f111b111a111e111a1119111d11191118111c11181117111b11171116111a11161115111911151114111811141113111711131112111611121111111511111110111411100f11130f0e11120e0d11110d0c11100c10bf10ae109d108c107b106a1059930010104810374016505402ea8810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb0001c87f01ca0011271126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54a9b1043ce3022182103785158dbae3022182101ce33d8ebae3022182103b9b249eba969ba1a401fc31d31ffa00d31f302f802024784133f40e6fa19401d70130925b6de2813404216eb3f2f481680001206ef2d080c000f2f480202056125422534133f40e6fa19401d70130925b6de28200bc90216eb39af82302206ef2d08012b9923170e2f2f456118020248101014133f40e6fa19401d70030925b6de282008b73216eb39701e69901206ef2d0805230bb923170e2f2f4561480202459f40e6fa192306ddf820087fa216eb39cf84202206ef2d08012c705b3923170e2f2f48020f84228103e01206e953059f45b30944133f416e2802020103c5448135055216e955b59f45b3098c801cf014133f443e218802054206b8101019802fe216e955b59f45b3098c801cf004133f443e2802020103854461350cc216e955b59f45b3098c801cf014133f443e2048020247078216e955b59f45b3098c801cf014133f443e203a4112582084c4b40a0205627a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025ca99901fa6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a11181117111911171116111811161115111711159a01e81114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b5e3610475e234403c87f01ca0011271126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54b101f631d31f3025802022784133f40e6fa19401d70130925b6de28200c723216eb3f2f48200b1bf01206ef2d080c000f2f4802054590052304133f40e6fa19401d70130925b6de282009d3e216eb3f2f4802021206ef2d08056155959f40e6fa192306ddf815730216eb39af84222206ef2d080c7059170e2f2f48020229c01f8206ef2d080561159784133f40e6fa19401d70130925b6de2816800216eb39801206ef2d080c000923170e2f2f4802022206ef2d08021561355204133f40e6fa19401d70130925b6de28200bc90216eb39af82302206ef2d08012b9923170e2f2f4078020237178216e955b59f45b3098c801cf014133f443e28020229d03fe206ef2d080021111027178216e955b59f45b3098c801cf014133f443e2802022206ef2d08021031111035250216e955b59f45b3098c801cf014133f443e2276eb38e9e07206ef2d08010ef107e0211280201112901db3c112801112701106e106d9137e270935306b98ae85f03112582082dc6c0a0205627a08208989680a0a79e9f00ee5302bd8e708020545b0052304133f40e6fa19401d70130925b6de25610802023784133f40e6fa19401d70130925b6de2216eb39d01206ef2d08023206ef2d080ba923170e293206eb39170e297206ef2d080c000923070e28e1a0f802056107278216e955b59f45b3098c801cf014133f443e20fdedea402fc70fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111ba9a001c0111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10be104d10ac109b108a10791068105710354403b001fe31d31f302d802022784133f40e6fa19401d70130925b6de2813404216eb3f2f482009b6f01206ef2d080c001f2f4561280202259f40e6fa192306ddf815730216eb39bf84202206ef2d08012c705923170e2f2f41d8020017278216e955b59f45b3098c801cf014133f443e2112582082dc6c0a0205627a08208989680a070a202fafb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111ba9a301c4111a111c111a1119111b11191118111a11181117111911171116111811161115111711151114111611141113111511131112111411121111111311111110111211100f11110f0e11100e10df10de10bd10ac109b108a107910681057104610354403b002fc8efa31d31f302d802022784133f40e6fa19401d70130925b6de2813404216eb3f2f48200cd2501206ef2d080c000f2f4561280202259f40e6fa192306ddf815730216eb39bf84202206ef2d08012c705923170e2f2f40d80202e7378216e955b59f45b3098c801cf014133f443e2f842112611271126112511261125e001a5ac01fc112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a1119111811191118111711181117111611171116111511161115111411151114111311141113111211131112111111121111111011111110a604fe0f11100f1f10de10cd10bc10ab109a108910781067105610451034413001112801db3c70935306b98ae830572782082dc6c0a0205627a08208989680a070fb02f84270810082708810246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb00a7a8a9aa009c2481010b228101014133f40a6fa19401d70030925b6de2206eb39820206ef2d080c2009170e28e2381010b01206ef2d080a5103612810101216e955b59f4593098c801cf004133f441e203915be200d68020545b0052304133f40e6fa19401d70130925b6de228802023784133f40e6fa19401d70130925b6de2216eb39901206ef2d080562aba923170e293206eb39170e297206ef2d080c000923070e28e19078020287278216e955b59f45b3098c801cf014133f443e207dea400140000000045786365737301fc112511261125112411251124112311241123112211231122112111221121112011211120111f1120111f111e111f111e111d111e111d111c111d111c111b111c111b111a111b111a1119111a1119111811191118111711181117111611171116111511161115111411151114111311141113111211131112111111121111ab01901110111111100f11100f550ec87f01ca0011271126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54b101248210946a98b6bae3025f0f5f0f5f0af2c082ad01fad33f30c8018210aff90f5758cb1fcb3fc9112511271125112411261124112311251123112211241122112111231121112011221120111f1121111f111e1120111e111d111f111d111c111e111c111b111d111b111a111c111a1119111b11191118111a1118111711191117111611181116111511171115111411161114ae01701113111511131112111411121111111311111110111211100f11110f0e11100e10df10ce10bd10ac109b108a107910681057104610354430af01c6f84270f8276f10f8416f24135f03a1820afaf080b98e29820afaf08070fb0270500381008201503304c8cf8580ca00cf8440ce01fa02806acf40f400c901fb008e20705003804201503304c8cf8580ca00cf8440ce01fa02806acf40f400c901fb00e2b00178c87f01ca0011271126112511241123112211211120111f111e111d111c111b111a111911181117111611151114111311121111111055e0db3cc9ed54b101f4011126011127ce011124fa0201112201cb1f01112001f400111ec8f40001111d01f40001111b01f4001119c8f40001111801f40001111601f4001114c8f40001111301f40001111101f4000fc8f4001ef4001cf4000ac8f40019cb1f17cb1f15f40013f40001c8f40012f40012f40002c8f40013f40014cb1f14b2006ef40005c8f40016f40017f40007c8f40019f40019cb1f1acb1f1af4001acb07500afa02500afa0219cd14cd16cd12cd12cd13cdcd12cdcd42f4819e');
2223
2244
  const builder = beginCell();
2224
2245
  builder.storeUint(0, 1);
2225
2246
  initReputation_init_args({ $$type: 'Reputation_init_args', owner })(builder);
@@ -2369,7 +2390,7 @@ const Reputation_types: ABIType[] = [
2369
2390
  {"name":"TriggerCleanup","header":2266087279,"fields":[{"name":"maxClean","type":{"kind":"simple","type":"uint","optional":false,"format":8}}]},
2370
2391
  {"name":"NotifyDisputeOpened","header":796807257,"fields":[{"name":"escrowAddress","type":{"kind":"simple","type":"address","optional":false}},{"name":"depositor","type":{"kind":"simple","type":"address","optional":false}},{"name":"beneficiary","type":{"kind":"simple","type":"address","optional":false}},{"name":"amount","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"votingDeadline","type":{"kind":"simple","type":"uint","optional":false,"format":32}}]},
2371
2392
  {"name":"NotifyDisputeSettled","header":3214956934,"fields":[{"name":"escrowAddress","type":{"kind":"simple","type":"address","optional":false}},{"name":"released","type":{"kind":"simple","type":"bool","optional":false}},{"name":"refunded","type":{"kind":"simple","type":"bool","optional":false}}]},
2372
- {"name":"BroadcastIntent","header":2523776749,"fields":[{"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}}]},
2393
+ {"name":"BroadcastIntent","header":2011280957,"fields":[{"name":"serviceHash","type":{"kind":"simple","type":"uint","optional":false,"format":256}},{"name":"serviceName","type":{"kind":"simple","type":"string","optional":false}},{"name":"budget","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"deadline","type":{"kind":"simple","type":"uint","optional":false,"format":32}}]},
2373
2394
  {"name":"SendOffer","header":1834677927,"fields":[{"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}}]},
2374
2395
  {"name":"AcceptOffer","header":931468685,"fields":[{"name":"offerIndex","type":{"kind":"simple","type":"uint","optional":false,"format":32}}]},
2375
2396
  {"name":"CancelIntent","header":1000023198,"fields":[{"name":"intentIndex","type":{"kind":"simple","type":"uint","optional":false,"format":32}}]},
@@ -2377,10 +2398,10 @@ const Reputation_types: ABIType[] = [
2377
2398
  {"name":"AgentData","header":null,"fields":[{"name":"owner","type":{"kind":"simple","type":"address","optional":false}},{"name":"available","type":{"kind":"simple","type":"bool","optional":false}},{"name":"totalTasks","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"successes","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"registeredAt","type":{"kind":"simple","type":"uint","optional":false,"format":32}}]},
2378
2399
  {"name":"DisputeInfo","header":null,"fields":[{"name":"escrowAddress","type":{"kind":"simple","type":"address","optional":false}},{"name":"depositor","type":{"kind":"simple","type":"address","optional":false}},{"name":"beneficiary","type":{"kind":"simple","type":"address","optional":false}},{"name":"amount","type":{"kind":"simple","type":"uint","optional":false,"format":"coins"}},{"name":"votingDeadline","type":{"kind":"simple","type":"uint","optional":false,"format":32}},{"name":"settled","type":{"kind":"simple","type":"bool","optional":false}}]},
2379
2400
  {"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}}]},
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}}]},
2401
+ {"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":"serviceName","type":{"kind":"simple","type":"string","optional":false}},{"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}}]},
2381
2402
  {"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}}]},
2382
2403
  {"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"}}]},
2404
+ {"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":"intentServiceNames","type":{"kind":"dict","key":"uint","keyFormat":32,"value":"cell","valueFormat":"ref"}},{"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"}}]},
2384
2405
  ]
2385
2406
 
2386
2407
  const Reputation_opcodes = {
@@ -2395,7 +2416,7 @@ const Reputation_opcodes = {
2395
2416
  "TriggerCleanup": 2266087279,
2396
2417
  "NotifyDisputeOpened": 796807257,
2397
2418
  "NotifyDisputeSettled": 3214956934,
2398
- "BroadcastIntent": 2523776749,
2419
+ "BroadcastIntent": 2011280957,
2399
2420
  "SendOffer": 1834677927,
2400
2421
  "AcceptOffer": 931468685,
2401
2422
  "CancelIntent": 1000023198,
@@ -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:a53a0305a5c7c945d9fda358375c8c53e3760cebcc65fae744367827a30355a0",
22
+ testnet: "0:28175f3738e38538ed86fdb232bb1e3fb63821add805509ad39ac1dd89e07abc",
23
23
  };
24
24
 
25
25
  /**