intentkit 0.7.5.dev20__py3-none-any.whl → 0.7.5.dev22__py3-none-any.whl

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.

Potentially problematic release.


This version of intentkit might be problematic. Click here for more details.

Files changed (56) hide show
  1. intentkit/__init__.py +1 -1
  2. intentkit/config/config.py +1 -0
  3. intentkit/core/engine.py +10 -11
  4. intentkit/models/agent.py +84 -56
  5. intentkit/models/agent_schema.json +1 -146
  6. intentkit/models/llm.csv +5 -0
  7. intentkit/models/llm.py +36 -3
  8. intentkit/skills/acolyt/schema.json +4 -3
  9. intentkit/skills/aixbt/schema.json +4 -4
  10. intentkit/skills/allora/schema.json +3 -2
  11. intentkit/skills/basename/schema.json +2 -1
  12. intentkit/skills/carv/schema.json +134 -137
  13. intentkit/skills/casino/schema.json +0 -1
  14. intentkit/skills/cdp/schema.json +2 -1
  15. intentkit/skills/chainlist/schema.json +3 -5
  16. intentkit/skills/common/schema.json +2 -2
  17. intentkit/skills/cookiefun/schema.json +2 -4
  18. intentkit/skills/cryptocompare/schema.json +3 -3
  19. intentkit/skills/cryptopanic/schema.json +105 -103
  20. intentkit/skills/dapplooker/schema.json +3 -5
  21. intentkit/skills/defillama/schema.json +5 -1
  22. intentkit/skills/dexscreener/schema.json +91 -93
  23. intentkit/skills/dune_analytics/schema.json +104 -99
  24. intentkit/skills/elfa/schema.json +3 -2
  25. intentkit/skills/enso/schema.json +3 -2
  26. intentkit/skills/erc20/schema.json +2 -1
  27. intentkit/skills/erc721/schema.json +2 -1
  28. intentkit/skills/firecrawl/schema.json +2 -6
  29. intentkit/skills/github/schema.json +3 -4
  30. intentkit/skills/heurist/schema.json +2 -2
  31. intentkit/skills/http/schema.json +4 -5
  32. intentkit/skills/lifi/schema.json +17 -8
  33. intentkit/skills/moralis/schema.json +7 -2
  34. intentkit/skills/morpho/schema.json +1 -1
  35. intentkit/skills/nation/schema.json +4 -3
  36. intentkit/skills/openai/schema.json +2 -3
  37. intentkit/skills/portfolio/schema.json +3 -5
  38. intentkit/skills/pyth/schema.json +3 -1
  39. intentkit/skills/slack/schema.json +2 -2
  40. intentkit/skills/supabase/schema.json +2 -3
  41. intentkit/skills/superfluid/schema.json +1 -1
  42. intentkit/skills/system/schema.json +2 -4
  43. intentkit/skills/tavily/schema.json +3 -5
  44. intentkit/skills/token/schema.json +3 -6
  45. intentkit/skills/twitter/schema.json +2 -2
  46. intentkit/skills/unrealspeech/schema.json +2 -5
  47. intentkit/skills/venice_audio/schema.json +151 -152
  48. intentkit/skills/venice_image/schema.json +267 -267
  49. intentkit/skills/web_scraper/schema.json +2 -6
  50. intentkit/skills/weth/schema.json +2 -1
  51. intentkit/skills/wow/schema.json +1 -1
  52. intentkit/skills/xmtp/schema.json +69 -71
  53. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/METADATA +1 -1
  54. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/RECORD +56 -56
  55. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/WHEEL +0 -0
  56. {intentkit-0.7.5.dev20.dist-info → intentkit-0.7.5.dev22.dist-info}/licenses/LICENSE +0 -0
@@ -1,93 +1,91 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "title": "Dexscreener",
4
- "description": "Integration with DexScreener API, enabling crypto token pair information",
5
- "type": "object",
6
- "x-icon": "https://ai.service.crestal.dev/skills/dexscreener/dexscreener.png",
7
- "x-tags": [
8
- "Crypto",
9
- "Market Data",
10
- "Finance",
11
- "Blockchain"
12
- ],
13
- "properties": {
14
- "enabled": {
15
- "type": "boolean",
16
- "title": "Enabled",
17
- "description": "Enable or disable the Dexscreener skill.",
18
- "default": false
19
- },
20
- "states": {
21
- "type": "object",
22
- "title": "Skill States",
23
- "description": "Enable/disable specific tools. Only enable one if you want a consistent characteristic for your agent",
24
- "properties": {
25
- "search_token": {
26
- "type": "string",
27
- "enum": [
28
- "disabled",
29
- "public",
30
- "private"
31
- ],
32
- "x-enum-title": [
33
- "Disabled",
34
- "Agent Owner + All Users",
35
- "Agent Owner Only"
36
- ],
37
- "description": "Searches on DexScreener for token pairs matching a query (symbol, name, address). Returns up to 25 pairs sorted by 'liquidity' or 'volume' with timeframe options, including price, volume, etc. Use this tool to find token information based on user queries.",
38
- "default": "disabled"
39
- },
40
- "get_pair_info": {
41
- "type": "string",
42
- "enum": [
43
- "disabled",
44
- "public",
45
- "private"
46
- ],
47
- "x-enum-title": [
48
- "Disabled",
49
- "Agent Owner + All Users",
50
- "Agent Owner Only"
51
- ],
52
- "description": "Retrieves detailed information about a specific trading pair using chain ID and pair address. Returns comprehensive data including current price, volume, liquidity, price changes, market cap, FDV, transaction counts, and social links.",
53
- "default": "disabled"
54
- },
55
- "get_token_pairs": {
56
- "type": "string",
57
- "enum": [
58
- "disabled",
59
- "public",
60
- "private"
61
- ],
62
- "x-enum-title": [
63
- "Disabled",
64
- "Agent Owner + All Users",
65
- "Agent Owner Only"
66
- ],
67
- "description": "Finds all trading pairs for a specific token using chain ID and token address. Returns a list of all pools/pairs where this token is traded, including pair addresses, DEX information, liquidity, volume, and pricing data for each pair.",
68
- "default": "disabled"
69
- },
70
- "get_tokens_info": {
71
- "type": "string",
72
- "enum": [
73
- "disabled",
74
- "public",
75
- "private"
76
- ],
77
- "x-enum-title": [
78
- "Disabled",
79
- "Agent Owner + All Users",
80
- "Agent Owner Only"
81
- ],
82
- "description": "Retrieves detailed trading pair information for multiple tokens (up to 30) using chain ID and a list of token addresses. More efficient than making individual calls when you need info for multiple tokens. Use for portfolio analysis or comparing multiple tokens at once.",
83
- "default": "disabled"
84
- }
85
- }
86
- }
87
- },
88
- "required": [
89
- "enabled",
90
- "states"
91
- ],
92
- "additionalProperties": true
93
- }
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Dexscreener",
4
+ "description": "Integration with DexScreener API, enabling crypto token pair information",
5
+ "type": "object",
6
+ "x-icon": "https://ai.service.crestal.dev/skills/dexscreener/dexscreener.png",
7
+ "x-tags": [
8
+ "Analytics",
9
+ "DeFi"
10
+ ],
11
+ "properties": {
12
+ "enabled": {
13
+ "type": "boolean",
14
+ "title": "Enabled",
15
+ "description": "Enable or disable the Dexscreener skill.",
16
+ "default": false
17
+ },
18
+ "states": {
19
+ "type": "object",
20
+ "title": "Skill States",
21
+ "description": "Enable/disable specific tools. Only enable one if you want a consistent characteristic for your agent",
22
+ "properties": {
23
+ "search_token": {
24
+ "type": "string",
25
+ "enum": [
26
+ "disabled",
27
+ "public",
28
+ "private"
29
+ ],
30
+ "x-enum-title": [
31
+ "Disabled",
32
+ "Agent Owner + All Users",
33
+ "Agent Owner Only"
34
+ ],
35
+ "description": "Searches on DexScreener for token pairs matching a query (symbol, name, address). Returns up to 25 pairs sorted by 'liquidity' or 'volume' with timeframe options, including price, volume, etc. Use this tool to find token information based on user queries.",
36
+ "default": "disabled"
37
+ },
38
+ "get_pair_info": {
39
+ "type": "string",
40
+ "enum": [
41
+ "disabled",
42
+ "public",
43
+ "private"
44
+ ],
45
+ "x-enum-title": [
46
+ "Disabled",
47
+ "Agent Owner + All Users",
48
+ "Agent Owner Only"
49
+ ],
50
+ "description": "Retrieves detailed information about a specific trading pair using chain ID and pair address. Returns comprehensive data including current price, volume, liquidity, price changes, market cap, FDV, transaction counts, and social links.",
51
+ "default": "disabled"
52
+ },
53
+ "get_token_pairs": {
54
+ "type": "string",
55
+ "enum": [
56
+ "disabled",
57
+ "public",
58
+ "private"
59
+ ],
60
+ "x-enum-title": [
61
+ "Disabled",
62
+ "Agent Owner + All Users",
63
+ "Agent Owner Only"
64
+ ],
65
+ "description": "Finds all trading pairs for a specific token using chain ID and token address. Returns a list of all pools/pairs where this token is traded, including pair addresses, DEX information, liquidity, volume, and pricing data for each pair.",
66
+ "default": "disabled"
67
+ },
68
+ "get_tokens_info": {
69
+ "type": "string",
70
+ "enum": [
71
+ "disabled",
72
+ "public",
73
+ "private"
74
+ ],
75
+ "x-enum-title": [
76
+ "Disabled",
77
+ "Agent Owner + All Users",
78
+ "Agent Owner Only"
79
+ ],
80
+ "description": "Retrieves detailed trading pair information for multiple tokens (up to 30) using chain ID and a list of token addresses. More efficient than making individual calls when you need info for multiple tokens. Use for portfolio analysis or comparing multiple tokens at once.",
81
+ "default": "disabled"
82
+ }
83
+ }
84
+ }
85
+ },
86
+ "required": [
87
+ "enabled",
88
+ "states"
89
+ ],
90
+ "additionalProperties": true
91
+ }
@@ -1,99 +1,104 @@
1
- {
2
- "title": "Dune Analytics",
3
- "description": "Dune Analytics skills to fetch data from Dune Analytics API.",
4
- "x-icon": "https://ai.service.crestal.dev/skills/dune_analytics/dune.png",
5
- "type": "object",
6
- "properties": {
7
- "enabled": {
8
- "type": "boolean",
9
- "title": "Enabled",
10
- "description": "Whether this skill is enabled",
11
- "default": false
12
- },
13
- "states": {
14
- "title": "Skill States",
15
- "type": "object",
16
- "properties": {
17
- "fetch_nation_metrics": {
18
- "type": "string",
19
- "title": "Fetch Crestal Nation Metrics",
20
- "enum": [
21
- "disabled",
22
- "public",
23
- "private"
24
- ],
25
- "x-enum-title": [
26
- "Disabled",
27
- "Agent Owner + All Users",
28
- "Agent Owner Only"
29
- ],
30
- "description": "Fetches Crestal Nation metrics (e.g., total_users, agents/citizens, market_cap) from Dune Analytics API.",
31
- "default": "disabled"
32
- },
33
- "fetch_kol_buys": {
34
- "type": "string",
35
- "title": "Fetch KOL Memecoin Buys",
36
- "enum": [
37
- "disabled",
38
- "public",
39
- "private"
40
- ],
41
- "x-enum-title": [
42
- "Disabled",
43
- "Agent Owner + All Users",
44
- "Agent Owner Only"
45
- ],
46
- "description": "Fetches a list of KOL memecoin buy transactions on Solana from Dune Analytics API.",
47
- "default": "disabled"
48
- }
49
- }
50
- },
51
- "api_key_provider": {
52
- "type": "string",
53
- "title": "API Key Provider",
54
- "description": "Provider of the API key for Dune service",
55
- "enum": [
56
- "agent_owner"
57
- ],
58
- "x-enum-title": [
59
- "Owner Provided"
60
- ],
61
- "default": "agent_owner"
62
- }
63
- },
64
- "required": [
65
- "states",
66
- "enabled"
67
- ],
68
- "if": {
69
- "properties": {
70
- "api_key_provider": {
71
- "const": "agent_owner"
72
- }
73
- }
74
- },
75
- "then": {
76
- "properties": {
77
- "api_key": {
78
- "type": "string",
79
- "title": "Dune API Key",
80
- "description": "API key for Dune Analytics (X-Dune-API-Key).",
81
- "x-link": "[Get your API key](https://docs.dune.com/api-reference/overview/authentication)",
82
- "x-sensitive": true
83
- }
84
- },
85
- "if": {
86
- "properties": {
87
- "enabled": {
88
- "const": true
89
- }
90
- }
91
- },
92
- "then": {
93
- "required": [
94
- "api_key"
95
- ]
96
- }
97
- },
98
- "additionalProperties": true
99
- }
1
+ {
2
+ "title": "Dune Analytics",
3
+ "description": "Dune Analytics skills to fetch data from Dune Analytics API.",
4
+ "x-icon": "https://ai.service.crestal.dev/skills/dune_analytics/dune.png",
5
+ "type": "object",
6
+ "properties": {
7
+ "enabled": {
8
+ "type": "boolean",
9
+ "title": "Enabled",
10
+ "description": "Whether this skill is enabled",
11
+ "default": false
12
+ },
13
+ "states": {
14
+ "title": "Skill States",
15
+ "type": "object",
16
+ "properties": {
17
+ "fetch_nation_metrics": {
18
+ "type": "string",
19
+ "title": "Fetch Crestal Nation Metrics",
20
+ "enum": [
21
+ "disabled",
22
+ "public",
23
+ "private"
24
+ ],
25
+ "x-enum-title": [
26
+ "Disabled",
27
+ "Agent Owner + All Users",
28
+ "Agent Owner Only"
29
+ ],
30
+ "description": "Fetches Crestal Nation metrics (e.g., total_users, agents/citizens, market_cap) from Dune Analytics API.",
31
+ "default": "disabled"
32
+ },
33
+ "fetch_kol_buys": {
34
+ "type": "string",
35
+ "title": "Fetch KOL Memecoin Buys",
36
+ "enum": [
37
+ "disabled",
38
+ "public",
39
+ "private"
40
+ ],
41
+ "x-enum-title": [
42
+ "Disabled",
43
+ "Agent Owner + All Users",
44
+ "Agent Owner Only"
45
+ ],
46
+ "description": "Fetches a list of KOL memecoin buy transactions on Solana from Dune Analytics API.",
47
+ "default": "disabled"
48
+ }
49
+ }
50
+ },
51
+ "api_key_provider": {
52
+ "type": "string",
53
+ "title": "API Key Provider",
54
+ "description": "Provider of the API key for Dune service",
55
+ "enum": [
56
+ "agent_owner"
57
+ ],
58
+ "x-enum-title": [
59
+ "Owner Provided"
60
+ ],
61
+ "default": "agent_owner"
62
+ }
63
+ },
64
+ "required": [
65
+ "states",
66
+ "enabled"
67
+ ],
68
+ "if": {
69
+ "properties": {
70
+ "api_key_provider": {
71
+ "const": "agent_owner"
72
+ }
73
+ }
74
+ },
75
+ "then": {
76
+ "properties": {
77
+ "api_key": {
78
+ "type": "string",
79
+ "title": "Dune API Key",
80
+ "description": "API key for Dune Analytics (X-Dune-API-Key).",
81
+ "x-link": "[Get your API key](https://docs.dune.com/api-reference/overview/authentication)",
82
+ "x-sensitive": true
83
+ }
84
+ },
85
+ "if": {
86
+ "properties": {
87
+ "enabled": {
88
+ "const": true
89
+ }
90
+ }
91
+ },
92
+ "then": {
93
+ "required": [
94
+ "api_key"
95
+ ]
96
+ }
97
+ },
98
+ "additionalProperties": true,
99
+ "x-tags": [
100
+ "Analytics",
101
+ "Crypto",
102
+ "Knowledge Base"
103
+ ]
104
+ }
@@ -5,7 +5,8 @@
5
5
  "description": "Integration with Elfa AI API providing data analysis and processing capabilities with secure authentication for advanced data operations",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/elfa/elfa.jpg",
7
7
  "x-tags": [
8
- "Data"
8
+ "AI",
9
+ "Analytics"
9
10
  ],
10
11
  "x-nft-requirement": 1,
11
12
  "properties": {
@@ -134,4 +135,4 @@
134
135
  }
135
136
  },
136
137
  "additionalProperties": true
137
- }
138
+ }
@@ -5,7 +5,8 @@
5
5
  "description": "Integration with Enso Finance API providing DeFi trading and portfolio management capabilities across multiple blockchain networks",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/enso/enso.jpg",
7
7
  "x-tags": [
8
- "Blockchain"
8
+ "Analytics",
9
+ "DeFi"
9
10
  ],
10
11
  "properties": {
11
12
  "enabled": {
@@ -209,4 +210,4 @@
209
210
  }
210
211
  },
211
212
  "additionalProperties": true
212
- }
213
+ }
@@ -5,7 +5,8 @@
5
5
  "description": "ERC20 token balance and transfer actions via Coinbase AgentKit",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/erc20/erc20.svg",
7
7
  "x-tags": [
8
- "Blockchain"
8
+ "Crypto",
9
+ "DeFi"
9
10
  ],
10
11
  "properties": {
11
12
  "enabled": {
@@ -5,7 +5,8 @@
5
5
  "description": "ERC721 NFT management actions via Coinbase AgentKit",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/erc721/erc721.svg",
7
7
  "x-tags": [
8
- "Blockchain"
8
+ "Crypto",
9
+ "NFT"
9
10
  ],
10
11
  "properties": {
11
12
  "enabled": {
@@ -5,11 +5,7 @@
5
5
  "description": "AI-powered web scraping and crawling capabilities using Firecrawl",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/firecrawl/firecrawl.png",
7
7
  "x-tags": [
8
- "Web Scraping",
9
- "Crawling",
10
- "Content Extraction",
11
- "Data Mining",
12
- "Website Analysis"
8
+ "Knowledge Base"
13
9
  ],
14
10
  "properties": {
15
11
  "enabled": {
@@ -152,4 +148,4 @@
152
148
  }
153
149
  },
154
150
  "additionalProperties": true
155
- }
151
+ }
@@ -5,9 +5,8 @@
5
5
  "description": "Search capabilities for GitHub repositories, users, and code",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/github/github.jpg",
7
7
  "x-tags": [
8
- "GitHub",
9
- "Search",
10
- "Code"
8
+ "Developer Tools",
9
+ "Search"
11
10
  ],
12
11
  "properties": {
13
12
  "enabled": {
@@ -56,4 +55,4 @@
56
55
  "enabled"
57
56
  ],
58
57
  "additionalProperties": true
59
- }
58
+ }
@@ -6,7 +6,7 @@
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/heurist/heurist.png",
7
7
  "x-tags": [
8
8
  "AI",
9
- "Image Generation"
9
+ "Image"
10
10
  ],
11
11
  "properties": {
12
12
  "enabled": {
@@ -193,4 +193,4 @@
193
193
  }
194
194
  },
195
195
  "additionalProperties": true
196
- }
196
+ }
@@ -5,10 +5,9 @@
5
5
  "description": "HTTP client skills for making web requests",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/http/http.svg",
7
7
  "x-tags": [
8
- "HTTP",
9
- "Web",
10
- "API",
11
- "Client"
8
+ "Developer Tools",
9
+ "Infrastructure",
10
+ "Knowledge Base"
12
11
  ],
13
12
  "properties": {
14
13
  "enabled": {
@@ -77,4 +76,4 @@
77
76
  "enabled"
78
77
  ],
79
78
  "additionalProperties": true
80
- }
79
+ }
@@ -5,10 +5,7 @@
5
5
  "description": "Cross-chain token transfer and swap capabilities using the LiFi protocol",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/lifi/lifi.png",
7
7
  "x-tags": [
8
- "DeFi",
9
- "Blockchain",
10
- "Token Transfer",
11
- "Cross-chain"
8
+ "DeFi"
12
9
  ],
13
10
  "properties": {
14
11
  "enabled": {
@@ -53,7 +50,10 @@
53
50
  "description": "Execute token transfers (requires CDP wallet and cdp skills enabled)"
54
51
  }
55
52
  },
56
- "required": ["token_quote", "token_execute"],
53
+ "required": [
54
+ "token_quote",
55
+ "token_execute"
56
+ ],
57
57
  "description": "States for each LiFi skill"
58
58
  },
59
59
  "default_slippage": {
@@ -71,7 +71,13 @@
71
71
  "description": "List of blockchain networks that can be used (if empty, all supported chains are allowed)",
72
72
  "items": {
73
73
  "type": "string",
74
- "examples": ["ETH", "POL", "ARB", "OPT", "DAI"]
74
+ "examples": [
75
+ "ETH",
76
+ "POL",
77
+ "ARB",
78
+ "OPT",
79
+ "DAI"
80
+ ]
75
81
  },
76
82
  "uniqueItems": true
77
83
  },
@@ -84,6 +90,9 @@
84
90
  "maximum": 1800
85
91
  }
86
92
  },
87
- "required": ["states", "enabled"],
93
+ "required": [
94
+ "states",
95
+ "enabled"
96
+ ],
88
97
  "additionalProperties": true
89
- }
98
+ }
@@ -152,5 +152,10 @@
152
152
  ]
153
153
  }
154
154
  },
155
- "additionalProperties": true
156
- }
155
+ "additionalProperties": true,
156
+ "x-tags": [
157
+ "Analytics",
158
+ "Crypto",
159
+ "DeFi"
160
+ ]
161
+ }
@@ -5,7 +5,7 @@
5
5
  "description": "Morpho lending actions via Coinbase AgentKit",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/morpho/morpho.svg",
7
7
  "x-tags": [
8
- "Blockchain"
8
+ "DeFi"
9
9
  ],
10
10
  "properties": {
11
11
  "enabled": {
@@ -5,8 +5,9 @@
5
5
  "description": "Check nation NFT stats",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/nation/nation.png",
7
7
  "x-tags": [
8
- "Nation",
9
- "NFTChecker"
8
+ "Analytics",
9
+ "Crypto",
10
+ "NFT"
10
11
  ],
11
12
  "properties": {
12
13
  "enabled": {
@@ -55,4 +56,4 @@
55
56
  "enabled"
56
57
  ],
57
58
  "additionalProperties": true
58
- }
59
+ }
@@ -6,8 +6,7 @@
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/openai/openai.png",
7
7
  "x-tags": [
8
8
  "AI",
9
- "Image Generation",
10
- "Image Analysis"
9
+ "Image"
11
10
  ],
12
11
  "properties": {
13
12
  "enabled": {
@@ -136,4 +135,4 @@
136
135
  }
137
136
  },
138
137
  "additionalProperties": true
139
- }
138
+ }
@@ -5,11 +5,9 @@
5
5
  "description": "Access blockchain wallet data and analytics through Moralis APIs for portfolio tracking, token balances, and investment performance",
6
6
  "x-icon": "https://ai.service.crestal.dev/skills/portfolio/moralis.png",
7
7
  "x-tags": [
8
- "Blockchain",
9
- "Web3",
8
+ "Analytics",
10
9
  "Crypto",
11
- "Portfolio",
12
- "Wallet"
10
+ "DeFi"
13
11
  ],
14
12
  "properties": {
15
13
  "enabled": {
@@ -234,4 +232,4 @@
234
232
  }
235
233
  },
236
234
  "additionalProperties": true
237
- }
235
+ }