From b5e762edc84372c2a30a1b1e96d937c14c72670f Mon Sep 17 00:00:00 2001 From: Saptak S Date: Thu, 6 Feb 2025 16:39:11 +0530 Subject: [PATCH 01/25] Adds types and migrations for tweet_media table --- src/account_x/types.ts | 7 +++++++ src/account_x/x_account_controller.ts | 15 +++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/src/account_x/types.ts b/src/account_x/types.ts index 80c28970..cda1d153 100644 --- a/src/account_x/types.ts +++ b/src/account_x/types.ts @@ -15,6 +15,13 @@ export interface XJobRow { error: string | null; } +export interface XTweetMediaRow { + id: number; + mediaID: string; + tweetID: string; + type: string; +} + export interface XTweetRow { id: number; username: string; diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts index 420ab736..42ca1992 100644 --- a/src/account_x/x_account_controller.ts +++ b/src/account_x/x_account_controller.ts @@ -44,6 +44,7 @@ import { IMITMController } from '../mitm'; import { XJobRow, XTweetRow, + XTweetMediaRow, XUserRow, XConversationRow, XMessageRow, @@ -317,6 +318,20 @@ export class XAccountController { `UPDATE tweet SET deletedLikeAt = deletedAt WHERE deletedAt IS NOT NULL AND isLiked = 1;` ] }, + // Add hasMediato the tweet table, and update isBookarked for all tweets + { + name: "20250206_add_hasMedia_and_tweet_media", + sql: [ + `CREATE TABLE tweet_media ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + mediaID TEXT NOT NULL UNIQUE, + mediaType TEXT NOT NULL, + tweetID TEXT NOT NULL + );`, + `ALTER TABLE tweet ADD COLUMN hasMedia BOOLEAN;`, + `UPDATE tweet SET hasMedia = 0;` + ] + }, ]) log.info("XAccountController.initDB: database initialized"); } From 57e88336f707079071ab1c3d0cb430b65a9caa92 Mon Sep 17 00:00:00 2001 From: Saptak S Date: Thu, 6 Feb 2025 16:41:09 +0530 Subject: [PATCH 02/25] Saves and Indexes tweet media - Saves mediaID, media type and tweetID in the media table - Saves hasMedia to true if there is media. Using hasMedia and tweetID in the media table, one can retrieve information about all the media associated with a tweet - Downloads and saves the actual media files --- src/account_x/x_account_controller.ts | 66 ++++++++++++++++++++++++++- 1 file changed, 65 insertions(+), 1 deletion(-) diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts index 42ca1992..91e9d371 100644 --- a/src/account_x/x_account_controller.ts +++ b/src/account_x/x_account_controller.ts @@ -476,8 +476,15 @@ export class XAccountController { exec(this.db, 'DELETE FROM tweet WHERE tweetID = ?', [tweetLegacy["id_str"]]); } + // Check if tweet has media and call indexTweetMedia + let hasMedia: boolean = false; + if (tweetLegacy["entities"]["media"] && tweetLegacy["entities"]["media"].length){ + hasMedia = true; + this.indexTweetMedia(tweetLegacy) + } + // Add the tweet - exec(this.db, 'INSERT INTO tweet (username, tweetID, conversationID, createdAt, likeCount, quoteCount, replyCount, retweetCount, isLiked, isRetweeted, isBookmarked, text, path, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [ + exec(this.db, 'INSERT INTO tweet (username, tweetID, conversationID, createdAt, likeCount, quoteCount, replyCount, retweetCount, isLiked, isRetweeted, isBookmarked, text, path, hasMedia, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [ userLegacy["screen_name"], tweetLegacy["id_str"], tweetLegacy["conversation_id_str"], @@ -491,9 +498,13 @@ export class XAccountController { tweetLegacy["bookmarked"] ? 1 : 0, tweetLegacy["full_text"], `${userLegacy['screen_name']}/status/${tweetLegacy['id_str']}`, + hasMedia ? 1 : 0, new Date(), ]); + // Add media information to tweet_media table + + // Update progress if (tweetLegacy["favorited"]) { // console.log("DEBUG-### LIKE: ", tweetLegacy["id_str"], userLegacy["screen_name"], tweetLegacy["full_text"]); @@ -670,6 +681,59 @@ export class XAccountController { return this.progress; } + async saveTweetMedia(mediaPath: string, filename: string) { + if (this.account) { + // Create path to store tweet media if it doesn't exist already + const accountDataPath = getAccountDataPath("X", this.account.username); + const outputPath = path.join(accountDataPath, "Tweet Media"); + if (!fs.existsSync(outputPath)) { + fs.mkdirSync(outputPath); + } + + // Download and save media from the mediaPath + try { + const response = await fetch(mediaPath, {}); + if (!response.ok) { + return ""; + } + + const arrayBuffer = await response.arrayBuffer(); + const buffer = Buffer.from(arrayBuffer); + const fileType = mediaPath.substring(mediaPath.lastIndexOf(".") + 1); + const outputFileName = path.join(outputPath, `${filename}.${fileType}`); + fs.createWriteStream(outputFileName).write(buffer); + return outputFileName; + } catch { + return ""; + } + } + throw new Error("Account not found"); + } + + async indexTweetMedia(tweetLegacy: XAPILegacyTweet) { + log.debug("XAccountController.indexMedia"); + + // Loop over all media items + tweetLegacy["entities"]["media"].forEach((media: any) => { + // Download media locally + this.saveTweetMedia(media["media_url_https"], media["media_key"]); + + // Have we seen this media before? + const existing: XTweetMediaRow[] = exec(this.db, 'SELECT * FROM tweet_media WHERE mediaID = ?', [media["media_key"]], "all") as XTweetMediaRow[]; + if (existing.length > 0) { + // Delete it, so we can re-add it + exec(this.db, 'DELETE FROM tweet_media WHERE mediaID = ?', [media["media_key"]]); + } + + // Index media information in tweet_media table + exec(this.db, 'INSERT INTO tweet_media (mediaID, mediaType, tweetID) VALUES (?, ?, ?)', [ + media["media_key"], + media["type"], + tweetLegacy["id_str"], + ]); + }) + } + async getProfileImageDataURI(user: XAPIUser): Promise { if (!user.profile_image_url_https) { return ""; From 8708243d06f33a9a41996a1c115954467bab7b5e Mon Sep 17 00:00:00 2001 From: Saptak S Date: Thu, 6 Feb 2025 19:43:44 +0530 Subject: [PATCH 03/25] Adds reply and quote related informations to the tweet table --- src/account_x/types.ts | 7 +++++++ src/account_x/x_account_controller.ts | 22 ++++++++++++++++++++-- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/src/account_x/types.ts b/src/account_x/types.ts index cda1d153..c8c17075 100644 --- a/src/account_x/types.ts +++ b/src/account_x/types.ts @@ -43,6 +43,12 @@ export interface XTweetRow { deletedRetweetAt: string | null; deletedLikeAt: string | null; deletedBookmarkAt: string | null; + hasMedia: boolean; + isReply: boolean; + replyTweetID: string | null; + replyUserID: string | null; + isQuote: boolean; + quotedTweet: string | null; } export interface XUserRow { @@ -150,6 +156,7 @@ export interface XAPILegacyTweet { user_id_str: string; id_str: string; entities: any; + quoted_status_permalink: any; } export interface XAPILegacyUser { diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts index 91e9d371..de488359 100644 --- a/src/account_x/x_account_controller.ts +++ b/src/account_x/x_account_controller.ts @@ -318,7 +318,7 @@ export class XAccountController { `UPDATE tweet SET deletedLikeAt = deletedAt WHERE deletedAt IS NOT NULL AND isLiked = 1;` ] }, - // Add hasMediato the tweet table, and update isBookarked for all tweets + // Add hasMedia to the tweet table, and create tweet_media table { name: "20250206_add_hasMedia_and_tweet_media", sql: [ @@ -332,6 +332,19 @@ export class XAccountController { `UPDATE tweet SET hasMedia = 0;` ] }, + // Add isReply, replyTweetID, replyUserID, isQuote and quotedTweet to the tweet table + { + name: "20250206_add_reply_and_quote_fields", + sql: [ + `ALTER TABLE tweet ADD COLUMN isReply BOOLEAN;`, + `ALTER TABLE tweet ADD COLUMN replyTweetID TEXT;`, + `ALTER TABLE tweet ADD COLUMN replyUserID TEXT;`, + `ALTER TABLE tweet ADD COLUMN isQuote BOOLEAN;`, + `ALTER TABLE tweet ADD COLUMN quotedTweet TEXT;`, + `UPDATE tweet SET isReply = 0;`, + `UPDATE tweet SET isQuote = 0;` + ] + }, ]) log.info("XAccountController.initDB: database initialized"); } @@ -484,7 +497,7 @@ export class XAccountController { } // Add the tweet - exec(this.db, 'INSERT INTO tweet (username, tweetID, conversationID, createdAt, likeCount, quoteCount, replyCount, retweetCount, isLiked, isRetweeted, isBookmarked, text, path, hasMedia, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [ + exec(this.db, 'INSERT INTO tweet (username, tweetID, conversationID, createdAt, likeCount, quoteCount, replyCount, retweetCount, isLiked, isRetweeted, isBookmarked, text, path, hasMedia, isReply, replyTweetID, replyUserID, isQuote, quotedTweet, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [ userLegacy["screen_name"], tweetLegacy["id_str"], tweetLegacy["conversation_id_str"], @@ -499,6 +512,11 @@ export class XAccountController { tweetLegacy["full_text"], `${userLegacy['screen_name']}/status/${tweetLegacy['id_str']}`, hasMedia ? 1 : 0, + tweetLegacy["in_reply_to_status_id_str"] ? 1 : 0, + tweetLegacy["in_reply_to_status_id_str"], + tweetLegacy["in_reply_to_user_id_str"], + tweetLegacy["is_quote_status"] ? 1 : 0, + tweetLegacy["quoted_status_permalink"] ? tweetLegacy["quoted_status_permalink"]["expanded"] : null, new Date(), ]); From 41fc9a0db0059c5edd44489f466eddc35fc9035a Mon Sep 17 00:00:00 2001 From: Saptak S Date: Fri, 7 Feb 2025 17:07:54 +0530 Subject: [PATCH 04/25] Adds additional fields to tweet_media to store url and index informations --- src/account_x/x_account_controller.ts | 68 ++++++++++++++++++--------- 1 file changed, 45 insertions(+), 23 deletions(-) diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts index de488359..f5470bd3 100644 --- a/src/account_x/x_account_controller.ts +++ b/src/account_x/x_account_controller.ts @@ -345,6 +345,23 @@ export class XAccountController { `UPDATE tweet SET isQuote = 0;` ] }, + // Add tweet_url table. Add url and indices to tweet_media table + { + name: "20250207_add_tweet_urls_and_more_tweet_media_fields", + sql: [ + `CREATE TABLE tweet_url ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + url TEXT NOT NULL, + expandedURL TEXT NOT NULL, + tweetID TEXT NOT NULL, + UNIQUE(url, tweetID) + );`, + `ALTER TABLE tweet_media ADD COLUMN url TEXT;`, + `ALTER TABLE tweet_media ADD COLUMN filename TEXT;`, + `ALTER TABLE tweet_media ADD COLUMN start_index INTEGER;`, + `ALTER TABLE tweet_media ADD COLUMN end_index INTEGER;` + ] + }, ]) log.info("XAccountController.initDB: database initialized"); } @@ -700,32 +717,32 @@ export class XAccountController { } async saveTweetMedia(mediaPath: string, filename: string) { - if (this.account) { - // Create path to store tweet media if it doesn't exist already - const accountDataPath = getAccountDataPath("X", this.account.username); - const outputPath = path.join(accountDataPath, "Tweet Media"); - if (!fs.existsSync(outputPath)) { - fs.mkdirSync(outputPath); - } + if (!this.account) { + throw new Error("Account not found"); + } - // Download and save media from the mediaPath - try { - const response = await fetch(mediaPath, {}); - if (!response.ok) { - return ""; - } + // Create path to store tweet media if it doesn't exist already + const accountDataPath = getAccountDataPath("X", this.account.username); + const outputPath = path.join(accountDataPath, "Tweet Media"); + if (!fs.existsSync(outputPath)) { + fs.mkdirSync(outputPath); + } - const arrayBuffer = await response.arrayBuffer(); - const buffer = Buffer.from(arrayBuffer); - const fileType = mediaPath.substring(mediaPath.lastIndexOf(".") + 1); - const outputFileName = path.join(outputPath, `${filename}.${fileType}`); - fs.createWriteStream(outputFileName).write(buffer); - return outputFileName; - } catch { + // Download and save media from the mediaPath + try { + const response = await fetch(mediaPath, {}); + if (!response.ok) { return ""; } + + const arrayBuffer = await response.arrayBuffer(); + const buffer = Buffer.from(arrayBuffer); + const outputFileName = path.join(outputPath, filename); + fs.createWriteStream(outputFileName).write(buffer); + return outputFileName; + } catch { + return ""; } - throw new Error("Account not found"); } async indexTweetMedia(tweetLegacy: XAPILegacyTweet) { @@ -734,7 +751,8 @@ export class XAccountController { // Loop over all media items tweetLegacy["entities"]["media"].forEach((media: any) => { // Download media locally - this.saveTweetMedia(media["media_url_https"], media["media_key"]); + const filename = `${media["media_key"]}.${media["media_url_https"].substring(media["media_url_https"].lastIndexOf(".") + 1)}`; + this.saveTweetMedia(media["media_url_https"], filename); // Have we seen this media before? const existing: XTweetMediaRow[] = exec(this.db, 'SELECT * FROM tweet_media WHERE mediaID = ?', [media["media_key"]], "all") as XTweetMediaRow[]; @@ -744,9 +762,13 @@ export class XAccountController { } // Index media information in tweet_media table - exec(this.db, 'INSERT INTO tweet_media (mediaID, mediaType, tweetID) VALUES (?, ?, ?)', [ + exec(this.db, 'INSERT INTO tweet_media (mediaID, mediaType, url, filename, start_index, end_index, tweetID) VALUES (?, ?, ?, ?, ?, ?, ?)', [ media["media_key"], media["type"], + media["url"], + filename, + media["indices"]?.[0], + media["indices"]?.[1], tweetLegacy["id_str"], ]); }) From b2bf23fb7ce9d7be84eed36b45a88de315153637 Mon Sep 17 00:00:00 2001 From: Saptak S Date: Fri, 7 Feb 2025 20:35:56 +0530 Subject: [PATCH 05/25] Index tweet URLs in the database --- src/account_x/x_account_controller.ts | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts index f5470bd3..35c608eb 100644 --- a/src/account_x/x_account_controller.ts +++ b/src/account_x/x_account_controller.ts @@ -352,7 +352,10 @@ export class XAccountController { `CREATE TABLE tweet_url ( id INTEGER PRIMARY KEY AUTOINCREMENT, url TEXT NOT NULL, + displayURL TEXT NOT NULL, expandedURL TEXT NOT NULL, + start_index INTEGER NOT NULL, + end_index INTEGER NOT NULL, tweetID TEXT NOT NULL, UNIQUE(url, tweetID) );`, @@ -513,6 +516,11 @@ export class XAccountController { this.indexTweetMedia(tweetLegacy) } + // Check if tweet has URLs and index it + if (tweetLegacy["entities"]["url"] && tweetLegacy["entities"]["url"].length) { + this.indexTweetURLs(tweetLegacy) + } + // Add the tweet exec(this.db, 'INSERT INTO tweet (username, tweetID, conversationID, createdAt, likeCount, quoteCount, replyCount, retweetCount, isLiked, isRetweeted, isBookmarked, text, path, hasMedia, isReply, replyTweetID, replyUserID, isQuote, quotedTweet, addedToDatabaseAt) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)', [ userLegacy["screen_name"], @@ -745,7 +753,7 @@ export class XAccountController { } } - async indexTweetMedia(tweetLegacy: XAPILegacyTweet) { + indexTweetMedia(tweetLegacy: XAPILegacyTweet) { log.debug("XAccountController.indexMedia"); // Loop over all media items @@ -774,6 +782,23 @@ export class XAccountController { }) } + indexTweetURLs(tweetLegacy: XAPILegacyTweet) { + log.debug("XAccountController.indexTweetURL"); + + // Loop over all URL items + tweetLegacy["entities"]["urls"].forEach((url: any) => { + // Index url information in tweet_url table + exec(this.db, 'INSERT INTO tweet_url (url, displayURL, expandedURL, start_index, end_index, tweetID) VALUES (?, ?, ?, ?, ?, ?)', [ + url["url"], + url["display_url"], + url["expanded_url"], + url["indices"]?.[0], + url["indices"]?.[1], + tweetLegacy["id_str"], + ]); + }) + } + async getProfileImageDataURI(user: XAPIUser): Promise { if (!user.profile_image_url_https) { return ""; From 870f333b4b6af054768d35f4182b5ec058adedcf Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Fri, 14 Feb 2025 14:14:27 -0800 Subject: [PATCH 06/25] Add new types for tweet media, and support downloading videos --- src/account_x/types.ts | 30 +++++++++++++++++++++ src/account_x/x_account_controller.ts | 39 ++++++++++++++++++++++----- 2 files changed, 62 insertions(+), 7 deletions(-) diff --git a/src/account_x/types.ts b/src/account_x/types.ts index c8c17075..752de929 100644 --- a/src/account_x/types.ts +++ b/src/account_x/types.ts @@ -135,6 +135,35 @@ export function convertTweetRowToXTweetItemArchive(row: XTweetRow): XTweetItemAr // Index tweets +export interface XAPILegacyTweetMediaVideoVariant { + bitrate?: number; + content_type: string; + url: string; +} + +export interface XAPILegacyTweetMedia { + display_url: string; + expanded_url: string; + id_str: string; + indices: number[]; + media_key: string; + media_url_https: string; + type: string; + url: string; + additional_media_info: any; + ext_media_availability: any; + features?: any; + sizes: any; + original_info: any; + allow_download_status?: any; + video_info?: { + aspect_ratio: number[]; + duration_millis: number; + variants: XAPILegacyTweetMediaVideoVariant[]; + }; + media_results?: any; +} + export interface XAPILegacyTweet { bookmark_count: number; bookmarked: boolean; @@ -157,6 +186,7 @@ export interface XAPILegacyTweet { id_str: string; entities: any; quoted_status_permalink: any; + media: XAPILegacyTweetMedia[]; } export interface XAPILegacyUser { diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts index 35c608eb..0a231863 100644 --- a/src/account_x/x_account_controller.ts +++ b/src/account_x/x_account_controller.ts @@ -55,6 +55,8 @@ import { // X API types XAPILegacyUser, XAPILegacyTweet, + XAPILegacyTweetMedia, + XAPILegacyTweetMediaVideoVariant, XAPIData, XAPIBookmarksData, XAPITimeline, @@ -511,7 +513,7 @@ export class XAccountController { // Check if tweet has media and call indexTweetMedia let hasMedia: boolean = false; - if (tweetLegacy["entities"]["media"] && tweetLegacy["entities"]["media"].length){ + if (tweetLegacy["entities"]["media"] && tweetLegacy["entities"]["media"].length) { hasMedia = true; this.indexTweetMedia(tweetLegacy) } @@ -545,9 +547,6 @@ export class XAccountController { new Date(), ]); - // Add media information to tweet_media table - - // Update progress if (tweetLegacy["favorited"]) { // console.log("DEBUG-### LIKE: ", tweetLegacy["id_str"], userLegacy["screen_name"], tweetLegacy["full_text"]); @@ -757,10 +756,36 @@ export class XAccountController { log.debug("XAccountController.indexMedia"); // Loop over all media items - tweetLegacy["entities"]["media"].forEach((media: any) => { + tweetLegacy["entities"]["media"].forEach((media: XAPILegacyTweetMedia) => { + // Get the HTTPS URL of the media -- this works for photos + let mediaURL = media["media_url_https"]; + + // If it's a video, set mediaURL to the video variant with the highest bitrate + if (media["type"] == "video") { + let highestBitrate = 0; + if (media["video_info"] && media["video_info"]["variants"]) { + media["video_info"]["variants"].forEach((variant: XAPILegacyTweetMediaVideoVariant) => { + if (variant["bitrate"] && variant["bitrate"] > highestBitrate) { + highestBitrate = variant["bitrate"]; + mediaURL = variant["url"]; + + // Stripe query parameters from the URL. + // For some reason video variants end with `?tag=12`, and when we try downloading with that + // it responds with 404. + const queryIndex = mediaURL.indexOf("?"); + if (queryIndex > -1) { + mediaURL = mediaURL.substring(0, queryIndex); + } + } + }); + }; + } + + const mediaExtension = mediaURL.substring(mediaURL.lastIndexOf(".") + 1); + // Download media locally - const filename = `${media["media_key"]}.${media["media_url_https"].substring(media["media_url_https"].lastIndexOf(".") + 1)}`; - this.saveTweetMedia(media["media_url_https"], filename); + const filename = `${media["media_key"]}.${mediaExtension}`; + this.saveTweetMedia(mediaURL, filename); // Have we seen this media before? const existing: XTweetMediaRow[] = exec(this.db, 'SELECT * FROM tweet_media WHERE mediaID = ?', [media["media_key"]], "all") as XTweetMediaRow[]; From e4c7a5cfead5b515a69a254ed497ecb09a4db5f5 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Fri, 14 Feb 2025 14:39:14 -0800 Subject: [PATCH 07/25] Add more fields to the XTweetMediaRow type, and update the migration to use camelCase for indexStart and indexEnd for consistency --- src/account_x/types.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/account_x/types.ts b/src/account_x/types.ts index 752de929..f730935e 100644 --- a/src/account_x/types.ts +++ b/src/account_x/types.ts @@ -18,8 +18,12 @@ export interface XJobRow { export interface XTweetMediaRow { id: number; mediaID: string; + mediaType: string; tweetID: string; - type: string; + url: string; + filename: string; + startIndex: number; + endIndex: number; } export interface XTweetRow { @@ -185,8 +189,8 @@ export interface XAPILegacyTweet { user_id_str: string; id_str: string; entities: any; - quoted_status_permalink: any; - media: XAPILegacyTweetMedia[]; + quoted_status_permalink?: any; + media?: XAPILegacyTweetMedia[]; } export interface XAPILegacyUser { From 5f494652833e9e1f8bf271c5248e750b543d197b Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Fri, 14 Feb 2025 14:39:43 -0800 Subject: [PATCH 08/25] Add a test that ensures tweets with videos and photos are indexed correctly --- src/account_x.test.ts | 70 +- src/account_x/x_account_controller.ts | 12 +- testdata/XAPIUserTweetsAndRepliesMedia.json | 8296 +++++++++++++++++++ 3 files changed, 8365 insertions(+), 13 deletions(-) create mode 100644 testdata/XAPIUserTweetsAndRepliesMedia.json diff --git a/src/account_x.test.ts b/src/account_x.test.ts index af7be693..f513ae46 100644 --- a/src/account_x.test.ts +++ b/src/account_x.test.ts @@ -12,6 +12,7 @@ import { } from './account_x'; import { XTweetRow, + XTweetMediaRow, XUserRow, XConversationRow, XConversationParticipantRow, @@ -70,6 +71,10 @@ vi.mock('electron', () => ({ } })); +// Mock fetch +const fetchMock = vi.fn(); +global.fetch = fetchMock; + // Import the local modules after stuff has been mocked import { Account, ResponseData, XProgress } from './shared_types' import { XAccountController } from './account_x' @@ -174,6 +179,18 @@ class MockMITMController implements IMITMController { } ]; } + if (testdata == "indexTweetsMedia") { + this.responseData = [ + { + host: 'x.com', + url: '/i/api/graphql/pZXwh96YGRqmBbbxu7Vk2Q/UserTweetsAndReplies?variables=%7B%22userId%22%3A%221769426369526771712%22%2C%22count%22%3A20%2C%22includePromotedContent%22%3Atrue%2C%22withCommunity%22%3Atrue%2C%22withVoice%22%3Atrue%2C%22withV2Timeline%22%3Atrue%7D&features=%7B%22profile_label_improvements_pcf_label_in_post_enabled%22%3Atrue%2C%22rweb_tipjar_consumption_enabled%22%3Atrue%2C%22responsive_web_graphql_exclude_directive_enabled%22%3Atrue%2C%22verified_phone_label_enabled%22%3Afalse%2C%22creator_subscriptions_tweet_preview_api_enabled%22%3Atrue%2C%22responsive_web_graphql_timeline_navigation_enabled%22%3Atrue%2C%22responsive_web_graphql_skip_user_profile_image_extensions_enabled%22%3Afalse%2C%22premium_content_api_read_enabled%22%3Afalse%2C%22communities_web_enable_tweet_community_results_fetch%22%3Atrue%2C%22c9s_tweet_anatomy_moderator_badge_enabled%22%3Atrue%2C%22responsive_web_grok_analyze_button_fetch_trends_enabled%22%3Afalse%2C%22responsive_web_grok_analyze_post_followups_enabled%22%3Atrue%2C%22responsive_web_jetfuel_frame%22%3Afalse%2C%22responsive_web_grok_share_attachment_enabled%22%3Atrue%2C%22articles_preview_enabled%22%3Atrue%2C%22responsive_web_edit_tweet_api_enabled%22%3Atrue%2C%22graphql_is_translatable_rweb_tweet_is_translatable_enabled%22%3Atrue%2C%22view_counts_everywhere_api_enabled%22%3Atrue%2C%22longform_notetweets_consumption_enabled%22%3Atrue%2C%22responsive_web_twitter_article_tweet_consumption_enabled%22%3Atrue%2C%22tweet_awards_web_tipping_enabled%22%3Afalse%2C%22responsive_web_grok_analysis_button_from_backend%22%3Atrue%2C%22creator_subscriptions_quote_tweet_preview_enabled%22%3Afalse%2C%22freedom_of_speech_not_reach_fetch_enabled%22%3Atrue%2C%22standardized_nudges_misinfo%22%3Atrue%2C%22tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled%22%3Atrue%2C%22rweb_video_timestamps_enabled%22%3Atrue%2C%22longform_notetweets_rich_text_read_enabled%22%3Atrue%2C%22longform_notetweets_inline_media_enabled%22%3Atrue%2C%22responsive_web_grok_image_annotation_enabled%22%3Afalse%2C%22responsive_web_enhance_cards_enabled%22%3Afalse%7D&fieldToggles=%7B%22withArticlePlainText%22%3Afalse%7D', + status: 200, + headers: {}, + body: fs.readFileSync(path.join(__dirname, '..', 'testdata', 'XAPIUserTweetsAndRepliesMedia.json'), 'utf8'), + processed: false + } + ]; + } } setAutomationErrorReportTestdata(filename: string) { const testData = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'testdata', 'automation-errors', filename), 'utf8')); @@ -210,13 +227,17 @@ afterEach(() => { controller.cleanup(); } - // Delete databases from disk - fs.readdirSync(getSettingsPath()).forEach(file => { - fs.unlinkSync(path.join(getSettingsPath(), file)); - }); - fs.readdirSync(getAccountDataPath("X", "test")).forEach(file => { - fs.unlinkSync(path.join(getAccountDataPath("X", "test"), file)); - }); + // Delete data from disk + const settingsPath = getSettingsPath(); + const accountDataPath = getAccountDataPath("X", "test"); + + if (fs.existsSync(settingsPath)) { + fs.rmSync(settingsPath, { recursive: true, force: true }); + } + + if (fs.existsSync(accountDataPath)) { + fs.rmSync(accountDataPath, { recursive: true, force: true }); + } }); // Fixtures @@ -728,6 +749,41 @@ test("XAccountController.indexParsedTweets() should index bookmarks", async () = expect(rows.length).toBe(14); }) +test("XAccountController.indexParsedTweets() should index and download media", async () => { + mitmController.setTestdata("indexTweetsMedia"); + if (controller.account) { + controller.account.username = 'nexamind91326'; + } + + await controller.indexParseTweets() + + // Verify the video tweet + let tweetRows: XTweetRow[] = database.exec(controller.db, "SELECT * FROM tweet WHERE tweetID=?", ['1890513848811090236'], "all") as XTweetRow[]; + expect(tweetRows.length).toBe(1); + expect(tweetRows[0].tweetID).toBe('1890513848811090236'); + expect(tweetRows[0].text).toBe('check out this video i found https://t.co/MMfXeoZEdi'); + + let mediaRows: XTweetMediaRow[] = database.exec(controller.db, "SELECT * FROM tweet_media WHERE tweetID=?", ['1890513848811090236'], "all") as XTweetMediaRow[]; + expect(mediaRows.length).toBe(1); + expect(mediaRows[0].mediaType).toBe('video'); + expect(mediaRows[0].filename).toBe('7_1890513743144185859.mp4'); + expect(mediaRows[0].startIndex).toBe(29); + expect(mediaRows[0].endIndex).toBe(52); + + // Verify the image tweet + tweetRows = database.exec(controller.db, "SELECT * FROM tweet WHERE tweetID=?", ['1890512076189114426'], "all") as XTweetRow[]; + expect(tweetRows.length).toBe(1); + expect(tweetRows[0].tweetID).toBe('1890512076189114426'); + expect(tweetRows[0].text).toBe('what a pretty photo https://t.co/eBFfDPOPz6'); + + mediaRows = database.exec(controller.db, "SELECT * FROM tweet_media WHERE tweetID=?", ['1890512076189114426'], "all") as XTweetMediaRow[]; + expect(mediaRows.length).toBe(1); + expect(mediaRows[0].mediaType).toBe('photo'); + expect(mediaRows[0].filename).toBe('3_1890512052424466432.jpg'); + expect(mediaRows[0].startIndex).toBe(20); + expect(mediaRows[0].endIndex).toBe(43); +}) + // Testing the X migrations test("test migration: 20241016_add_config", async () => { diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts index 0a231863..277f43ad 100644 --- a/src/account_x/x_account_controller.ts +++ b/src/account_x/x_account_controller.ts @@ -356,15 +356,15 @@ export class XAccountController { url TEXT NOT NULL, displayURL TEXT NOT NULL, expandedURL TEXT NOT NULL, - start_index INTEGER NOT NULL, - end_index INTEGER NOT NULL, + startIndex INTEGER NOT NULL, + endIndex INTEGER NOT NULL, tweetID TEXT NOT NULL, UNIQUE(url, tweetID) );`, `ALTER TABLE tweet_media ADD COLUMN url TEXT;`, `ALTER TABLE tweet_media ADD COLUMN filename TEXT;`, - `ALTER TABLE tweet_media ADD COLUMN start_index INTEGER;`, - `ALTER TABLE tweet_media ADD COLUMN end_index INTEGER;` + `ALTER TABLE tweet_media ADD COLUMN startIndex INTEGER;`, + `ALTER TABLE tweet_media ADD COLUMN endIndex INTEGER;` ] }, ]) @@ -795,7 +795,7 @@ export class XAccountController { } // Index media information in tweet_media table - exec(this.db, 'INSERT INTO tweet_media (mediaID, mediaType, url, filename, start_index, end_index, tweetID) VALUES (?, ?, ?, ?, ?, ?, ?)', [ + exec(this.db, 'INSERT INTO tweet_media (mediaID, mediaType, url, filename, startIndex, endIndex, tweetID) VALUES (?, ?, ?, ?, ?, ?, ?)', [ media["media_key"], media["type"], media["url"], @@ -813,7 +813,7 @@ export class XAccountController { // Loop over all URL items tweetLegacy["entities"]["urls"].forEach((url: any) => { // Index url information in tweet_url table - exec(this.db, 'INSERT INTO tweet_url (url, displayURL, expandedURL, start_index, end_index, tweetID) VALUES (?, ?, ?, ?, ?, ?)', [ + exec(this.db, 'INSERT INTO tweet_url (url, displayURL, expandedURL, startIndex, endIndex, tweetID) VALUES (?, ?, ?, ?, ?, ?)', [ url["url"], url["display_url"], url["expanded_url"], diff --git a/testdata/XAPIUserTweetsAndRepliesMedia.json b/testdata/XAPIUserTweetsAndRepliesMedia.json new file mode 100644 index 00000000..cc46e852 --- /dev/null +++ b/testdata/XAPIUserTweetsAndRepliesMedia.json @@ -0,0 +1,8296 @@ +{ + "data": { + "user": { + "result": { + "__typename": "User", + "timeline_v2": { + "timeline": { + "instructions": [ + { + "type": "TimelineClearCache" + }, + { + "type": "TimelineAddEntries", + "entries": [ + { + "entryId": "tweet-1890513848811090236", + "sortIndex": "1890516651804196864", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1890513848811090236", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890513848811090236" + ], + "editable_until_msecs": "1739572200000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:30:00 +0000 2025", + "conversation_id_str": "1890513848811090236", + "display_text_range": [ + 0, + 28 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/MMfXeoZEdi", + "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1", + "id_str": "1890513743144185859", + "indices": [ + 29, + 52 + ], + "media_key": "7_1890513743144185859", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg", + "type": "video", + "url": "https://t.co/MMfXeoZEdi", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "allow_download_status": { + "allow_download": true + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 53111, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1890513743144185859" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/MMfXeoZEdi", + "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1", + "id_str": "1890513743144185859", + "indices": [ + 29, + 52 + ], + "media_key": "7_1890513743144185859", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg", + "type": "video", + "url": "https://t.co/MMfXeoZEdi", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "allow_download_status": { + "allow_download": true + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 53111, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1890513743144185859" + } + } + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "check out this video i found https://t.co/MMfXeoZEdi", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890513848811090236" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1890512294670454995", + "sortIndex": "1890516651804196863", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1890512294670454995", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890512294670454995" + ], + "editable_until_msecs": "1739571829000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1890512222050304488", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890512222050304488" + ], + "editable_until_msecs": "1739571812000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "quotedRefResult": { + "result": { + "__typename": "Tweet", + "rest_id": "1889763065991659755" + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:23:32 +0000 2025", + "conversation_id_str": "1890512222050304488", + "display_text_range": [ + 0, + 21 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "this is a quote tweet", + "is_quote_status": true, + "lang": "en", + "quote_count": 1, + "quoted_status_id_str": "1889763065991659755", + "quoted_status_permalink": { + "url": "https://t.co/z3Cf9ZfMLr", + "expanded": "https://twitter.com/aurorabyte79324/status/1889763065991659755", + "display": "x.com/aurorabyte7932…" + }, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890512222050304488" + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:23:49 +0000 2025", + "conversation_id_str": "1890512294670454995", + "display_text_range": [ + 0, + 23 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "this a self-quote tweet", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1890512222050304488", + "quoted_status_permalink": { + "url": "https://t.co/LOm3Ov3h0l", + "expanded": "https://twitter.com/nexamind91326/status/1890512222050304488", + "display": "x.com/nexamind91326/…" + }, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890512294670454995" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1890512222050304488", + "sortIndex": "1890516651804196862", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1890512222050304488", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890512222050304488" + ], + "editable_until_msecs": "1739571812000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889763065991659755", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy", + "rest_id": "1769424777998180352", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:07:40 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123, + "followers_count": 0, + "friends_count": 10, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "aurorabyte", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "aurorabyte79324", + "statuses_count": 408, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889763065991659755" + ], + "editable_until_msecs": "1739393199000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "4", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:46:39 +0000 2025", + "conversation_id_str": "1889763065991659755", + "display_text_range": [ + 0, + 36 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "From digital chaos to artistic order", + "is_quote_status": false, + "lang": "en", + "quote_count": 1, + "reply_count": 3, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769424777998180352", + "id_str": "1889763065991659755" + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:23:32 +0000 2025", + "conversation_id_str": "1890512222050304488", + "display_text_range": [ + 0, + 21 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "this is a quote tweet", + "is_quote_status": true, + "lang": "en", + "quote_count": 1, + "quoted_status_id_str": "1889763065991659755", + "quoted_status_permalink": { + "url": "https://t.co/z3Cf9ZfMLr", + "expanded": "https://twitter.com/aurorabyte79324/status/1889763065991659755", + "display": "x.com/aurorabyte7932…" + }, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890512222050304488" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1890512076189114426", + "sortIndex": "1890516651804196861", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1890512076189114426", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890512076189114426" + ], + "editable_until_msecs": "1739571777000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:22:57 +0000 2025", + "conversation_id_str": "1890512076189114426", + "display_text_range": [ + 0, + 19 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/eBFfDPOPz6", + "expanded_url": "https://x.com/nexamind91326/status/1890512076189114426/photo/1", + "id_str": "1890512052424466432", + "indices": [ + 20, + 43 + ], + "media_key": "3_1890512052424466432", + "media_url_https": "https://pbs.twimg.com/media/GjxysgBa4AAYAEb.jpg", + "type": "photo", + "url": "https://t.co/eBFfDPOPz6", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 838, + "w": 1350, + "resize": "fit" + }, + "medium": { + "h": 745, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 422, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 838, + "width": 1350, + "focus_rects": [ + { + "x": 0, + "y": 82, + "w": 1350, + "h": 756 + }, + { + "x": 256, + "y": 0, + "w": 838, + "h": 838 + }, + { + "x": 308, + "y": 0, + "w": 735, + "h": 838 + }, + { + "x": 466, + "y": 0, + "w": 419, + "h": 838 + }, + { + "x": 0, + "y": 0, + "w": 1350, + "h": 838 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1890512052424466432" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/eBFfDPOPz6", + "expanded_url": "https://x.com/nexamind91326/status/1890512076189114426/photo/1", + "id_str": "1890512052424466432", + "indices": [ + 20, + 43 + ], + "media_key": "3_1890512052424466432", + "media_url_https": "https://pbs.twimg.com/media/GjxysgBa4AAYAEb.jpg", + "type": "photo", + "url": "https://t.co/eBFfDPOPz6", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 838, + "w": 1350, + "resize": "fit" + }, + "medium": { + "h": 745, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 422, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 838, + "width": 1350, + "focus_rects": [ + { + "x": 0, + "y": 82, + "w": 1350, + "h": 756 + }, + { + "x": 256, + "y": 0, + "w": 838, + "h": 838 + }, + { + "x": 308, + "y": 0, + "w": 735, + "h": 838 + }, + { + "x": 466, + "y": 0, + "w": 419, + "h": 838 + }, + { + "x": 0, + "y": 0, + "w": 1350, + "h": 838 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1890512052424466432" + } + } + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "what a pretty photo https://t.co/eBFfDPOPz6", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890512076189114426" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889786416764231973", + "sortIndex": "1890516651804196860", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889786416764231973", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889786416764231973" + ], + "editable_until_msecs": "1739398766947", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 21:19:26 +0000 2025", + "conversation_id_str": "1889786416764231973", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "18839785", + "name": "Narendra Modi", + "screen_name": "narendramodi", + "indices": [ + 3, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @narendramodi: Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas stu…", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1889549988084240447", + "quoted_status_permalink": { + "url": "https://t.co/ezgVwAcpWA", + "expanded": "https://twitter.com/MIB_India/status/1889549988084240447", + "display": "x.com/MIB_India/stat…" + }, + "reply_count": 0, + "retweet_count": 2833, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889786416764231973", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889575567218835670", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxODgzOTc4NQ==", + "rest_id": "18839785", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Jan 10 17:18:56 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Prime Minister of India", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "narendramodi.in", + "expanded_url": "http://www.narendramodi.in", + "url": "https://t.co/m2qxixtyKj", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 105351339, + "friends_count": 2683, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 31386, + "location": "India", + "media_count": 18166, + "name": "Narendra Modi", + "normal_followers_count": 105351339, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1718111779", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1833509376528945157/5AeMNn9f_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "narendramodi", + "statuses_count": 45468, + "translator_type": "regular", + "url": "https://t.co/m2qxixtyKj", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889575567218835670" + ], + "editable_until_msecs": "1739348496000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1145171", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE4ODk1NzU1NjcxMjI0MTk3MTI=", + "text": "Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas students, parents and teachers face. Tomorrow, 13th February, we have @TechnicalGuruji and @iRadhikaGupta discuss these aspects during a ‘Pariksha Pe Charcha’ episode. Do watch. #PPC2025 #ExamWarriors", + "entity_set": { + "hashtags": [ + { + "indices": [ + 296, + 304 + ], + "text": "PPC2025" + }, + { + "indices": [ + 305, + 318 + ], + "text": "ExamWarriors" + } + ], + "symbols": [], + "urls": [], + "user_mentions": [ + { + "id_str": "3992637442", + "name": "Gaurav Chaudhary", + "screen_name": "TechnicalGuruji", + "indices": [ + 188, + 204 + ] + }, + { + "id_str": "1109329332", + "name": "Radhika Gupta", + "screen_name": "iRadhikaGupta", + "indices": [ + 209, + 223 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889549988084240447", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo5MjA0ODgwMzk=", + "rest_id": "920488039", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Nov 02 06:26:58 +0000 2012", + "default_profile": false, + "default_profile_image": false, + "description": "Official Twitter account of Ministry of Information and Broadcasting, Government of India. Follow @MIB_Hindi for Tweets in Hindi.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mib.gov.in", + "expanded_url": "http://mib.gov.in", + "url": "https://t.co/utkJBHXmkK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 238, + "followers_count": 2007176, + "friends_count": 202, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2169, + "location": "New Delhi, India", + "media_count": 49050, + "name": "Ministry of Information and Broadcasting", + "normal_followers_count": 2007176, + "pinned_tweet_ids_str": [ + "1890297446166851616" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/920488039/1723804750", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1824326673170567168/IJx7AxEA_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "MIB_India", + "statuses_count": 193653, + "translator_type": "none", + "url": "https://t.co/utkJBHXmkK", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "initial_tweet_id": "1889549636047872354", + "edit_control_initial": { + "edit_tweet_ids": [ + "1889549636047872354", + "1889549988084240447" + ], + "editable_until_msecs": "1739342314000", + "is_edit_eligible": true, + "edits_remaining": "4" + } + }, + "previous_counts": { + "bookmark_count": 0, + "favorite_count": 0, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0 + }, + "is_translatable": false, + "views": { + "count": "1135698", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE4ODk1NDk5ODc5Nzk0MzE5MzY=", + "text": "Join @TechnicalGuruji Gaurav Chaudhary and Edelweiss Mutual Fund MD & CEO Radhika Gupta (@iRadhikaGupta) as they guide #ExamWarriors on technology, time management and how to use tech as their study partner at #ParikshaPeCharcha2025.\n\nTune in for this Tech & AI edition of #PPC2025 on 13th February at 10 AM!\n\n#ParikshaPeCharcha \n\n@PMOIndia @EduMinOfIndia @dpradhanbjp @jayantrld @AshwiniVaishnaw @Murugan_MoS @PIB_India @DDNewslive @airnewsalerts", + "entity_set": { + "hashtags": [ + { + "indices": [ + 119, + 132 + ], + "text": "ExamWarriors" + }, + { + "indices": [ + 210, + 232 + ], + "text": "ParikshaPeCharcha2025" + }, + { + "indices": [ + 273, + 281 + ], + "text": "PPC2025" + }, + { + "indices": [ + 310, + 328 + ], + "text": "ParikshaPeCharcha" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "3992637442", + "name": "Gaurav Chaudhary", + "screen_name": "TechnicalGuruji", + "indices": [ + 5, + 21 + ] + }, + { + "id_str": "1109329332", + "name": "Radhika Gupta", + "screen_name": "iRadhikaGupta", + "indices": [ + 89, + 103 + ] + }, + { + "id_str": "471741741", + "name": "PMO India", + "screen_name": "PMOIndia", + "indices": [ + 331, + 340 + ] + }, + { + "id_str": "2574232910", + "name": "Ministry of Education", + "screen_name": "EduMinOfIndia", + "indices": [ + 341, + 355 + ] + }, + { + "id_str": "1897514666", + "name": "Dharmendra Pradhan", + "screen_name": "dpradhanbjp", + "indices": [ + 356, + 368 + ] + }, + { + "id_str": "2864060538", + "name": "Jayant Singh", + "screen_name": "jayantrld", + "indices": [ + 369, + 379 + ] + }, + { + "id_str": "852579395315171328", + "name": "Ashwini Vaishnaw", + "screen_name": "AshwiniVaishnaw", + "indices": [ + 380, + 396 + ] + }, + { + "id_str": "913051220796858369", + "name": "Dr.L.Murugan", + "screen_name": "Murugan_MoS", + "indices": [ + 397, + 409 + ] + }, + { + "id_str": "231033118", + "name": "PIB India", + "screen_name": "PIB_India", + "indices": [ + 410, + 420 + ] + }, + { + "id_str": "1100927498", + "name": "DD News", + "screen_name": "DDNewslive", + "indices": [ + 421, + 432 + ] + }, + { + "id_str": "1056850669", + "name": "All India Radio News", + "screen_name": "airnewsalerts", + "indices": [ + 433, + 447 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 44, + "bookmarked": false, + "created_at": "Wed Feb 12 05:39:57 +0000 2025", + "conversation_id_str": "1889549988084240447", + "display_text_range": [ + 0, + 280 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 123, + 136 + ], + "text": "ExamWarriors" + }, + { + "indices": [ + 214, + 236 + ], + "text": "ParikshaPeCharcha2025" + } + ], + "media": [ + { + "display_url": "pic.x.com/qFVT78TzCc", + "expanded_url": "https://x.com/MIB_India/status/1889549988084240447/video/1", + "id_str": "1889547251401494528", + "indices": [ + 281, + 304 + ], + "media_key": "7_1889547251401494528", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889547251401494528/pu/img/8NE3ZdXm4ZiWVrer.jpg", + "type": "video", + "url": "https://t.co/qFVT78TzCc", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 123320, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/pl/6Saoc98dc2Ks4R4L.m3u8?tag=14&v=2db" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/480x270/0GiNt3ZFtw2hzmZe.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/640x360/Y6JT_Uh87NAtep1z.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1280x720/EQ8pQG9Y302GpkpE.mp4?tag=14" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1920x1080/RvnUFViWBphAG97S.mp4?tag=14" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1889547251401494528" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "3992637442", + "name": "Gaurav Chaudhary", + "screen_name": "TechnicalGuruji", + "indices": [ + 5, + 21 + ] + }, + { + "id_str": "1109329332", + "name": "Radhika Gupta", + "screen_name": "iRadhikaGupta", + "indices": [ + 93, + 107 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/qFVT78TzCc", + "expanded_url": "https://x.com/MIB_India/status/1889549988084240447/video/1", + "id_str": "1889547251401494528", + "indices": [ + 281, + 304 + ], + "media_key": "7_1889547251401494528", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889547251401494528/pu/img/8NE3ZdXm4ZiWVrer.jpg", + "type": "video", + "url": "https://t.co/qFVT78TzCc", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 123320, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/pl/6Saoc98dc2Ks4R4L.m3u8?tag=14&v=2db" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/480x270/0GiNt3ZFtw2hzmZe.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/640x360/Y6JT_Uh87NAtep1z.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1280x720/EQ8pQG9Y302GpkpE.mp4?tag=14" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1920x1080/RvnUFViWBphAG97S.mp4?tag=14" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1889547251401494528" + } + } + } + ] + }, + "favorite_count": 1129, + "favorited": false, + "full_text": "Join @TechnicalGuruji Gaurav Chaudhary and Edelweiss Mutual Fund MD & CEO Radhika Gupta (@iRadhikaGupta) as they guide #ExamWarriors on technology, time management and how to use tech as their study partner at #ParikshaPeCharcha2025.\n\nTune in for this Tech & AI edition of https://t.co/qFVT78TzCc", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 12, + "reply_count": 65, + "retweet_count": 200, + "retweeted": false, + "user_id_str": "920488039", + "id_str": "1889549988084240447" + } + } + }, + "legacy": { + "bookmark_count": 277, + "bookmarked": false, + "created_at": "Wed Feb 12 07:21:36 +0000 2025", + "conversation_id_str": "1889575567218835670", + "display_text_range": [ + 0, + 276 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "3992637442", + "name": "Gaurav Chaudhary", + "screen_name": "TechnicalGuruji", + "indices": [ + 188, + 204 + ] + }, + { + "id_str": "1109329332", + "name": "Radhika Gupta", + "screen_name": "iRadhikaGupta", + "indices": [ + 209, + 223 + ] + } + ] + }, + "favorite_count": 15904, + "favorited": false, + "full_text": "Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas students, parents and teachers face. Tomorrow, 13th February, we have @TechnicalGuruji and @iRadhikaGupta discuss these aspects during a ‘Pariksha Pe Charcha’", + "is_quote_status": true, + "lang": "en", + "quote_count": 34, + "quoted_status_id_str": "1889549988084240447", + "quoted_status_permalink": { + "url": "https://t.co/ezgVwAcpWA", + "expanded": "https://twitter.com/MIB_India/status/1889549988084240447", + "display": "x.com/MIB_India/stat…" + }, + "reply_count": 432, + "retweet_count": 2833, + "retweeted": true, + "user_id_str": "18839785", + "id_str": "1889575567218835670" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "who-to-follow-1890516651804196869", + "sortIndex": "1890516651804196859", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "who-to-follow-1890516651804196869-user-2455740283", + "item": { + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNDU1NzQwMjgz", + "rest_id": "2455740283", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Apr 21 00:28:42 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "X Super Official CEO", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/beastgames", + "expanded_url": "https://www.amazon.com/beastgames", + "url": "https://t.co/e8ZoaSIchZ", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 23558, + "followers_count": 32197604, + "friends_count": 2068, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 8441, + "location": "Follow me for a cookie", + "media_count": 873, + "name": "MrBeast", + "normal_followers_count": 32197604, + "pinned_tweet_ids_str": [ + "1878132133144715658" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2455740283/1733506553", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/994592419705274369/RLplF55e_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "MrBeast", + "statuses_count": 7011, + "translator_type": "none", + "url": "https://t.co/e8ZoaSIchZ", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679573344159510535", + "professional_type": "Creator", + "category": [ + { + "id": 933, + "name": "Media Personality", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "tipjar_settings": { + "is_enabled": true + }, + "super_follow_eligible": true + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "element": "user", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABH+o5bN/IS60KAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + }, + { + "entryId": "who-to-follow-1890516651804196869-user-34743251", + "item": { + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNDc0MzI1MQ==", + "rest_id": "34743251", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Apr 23 21:53:30 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "SpaceX designs, manufactures and launches the world’s most advanced rockets and spacecraft", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "spacex.com", + "expanded_url": "http://spacex.com", + "url": "https://t.co/VOJ6qEctND", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 494, + "followers_count": 38131084, + "friends_count": 119, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 43016, + "location": "Earth", + "media_count": 3654, + "name": "SpaceX", + "normal_followers_count": 38131084, + "pinned_tweet_ids_str": [ + "1879290988285620717" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/34743251/1681251194", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1697749409851985920/HbrI04tM_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SpaceX", + "statuses_count": 9765, + "translator_type": "none", + "url": "https://t.co/VOJ6qEctND", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1681839322029502464", + "professional_type": "Business", + "category": [] + }, + "tipjar_settings": {} + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "element": "user", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABH+o5bN/IS60KAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + }, + { + "entryId": "who-to-follow-1890516651804196869-user-11348282", + "item": { + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTM0ODI4Mg==", + "rest_id": "11348282", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Dec 19 20:20:32 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "There's space for everybody. ✨\n\nVerification: https://t.co/8nok3NP4PW", + "entities": { + "description": { + "urls": [ + { + "display_url": "nasa.gov/socialmedia", + "expanded_url": "http://nasa.gov/socialmedia", + "url": "https://t.co/8nok3NP4PW", + "indices": [ + 46, + 69 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "nasa.gov", + "expanded_url": "http://www.nasa.gov/", + "url": "https://t.co/9NkQJKAnuU", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 16404, + "followers_count": 85348909, + "friends_count": 171, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 97201, + "location": "Pale Blue Dot", + "media_count": 27347, + "name": "NASA", + "normal_followers_count": 85348909, + "pinned_tweet_ids_str": [ + "1890440134597722355" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/11348282/1718393721", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1321163587679784960/0ZxKlEKB_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "NASA", + "statuses_count": 72695, + "translator_type": "regular", + "url": "https://t.co/9NkQJKAnuU", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "element": "user", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABH+o5bN/IS60KAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + } + ], + "displayType": "Vertical", + "header": { + "displayType": "Classic", + "text": "Who to follow", + "sticky": false + }, + "footer": { + "displayType": "Classic", + "text": "Show more", + "landingUrl": { + "url": "twitter://connect_people?user_id=1769426369526771712&display_location=profile_wtf_showmore", + "urlType": "DeepLink" + } + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABH+o5bN/IS60KAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889776036763533445", + "sortIndex": "1890516651804196858", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889776036763533445", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889776036763533445" + ], + "editable_until_msecs": "1739396292162", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 20:38:12 +0000 2025", + "conversation_id_str": "1889776036763533445", + "display_text_range": [ + 0, + 139 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "18839785", + "name": "Narendra Modi", + "screen_name": "narendramodi", + "indices": [ + 3, + 16 + ] + }, + { + "id_str": "1976143068", + "name": "Emmanuel Macron", + "screen_name": "EmmanuelMacron", + "indices": [ + 77, + 92 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @narendramodi: Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle…", + "is_quote_status": false, + "lang": "fr", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 2852, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889776036763533445", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889660611564544051", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxODgzOTc4NQ==", + "rest_id": "18839785", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Jan 10 17:18:56 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Prime Minister of India", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "narendramodi.in", + "expanded_url": "http://www.narendramodi.in", + "url": "https://t.co/m2qxixtyKj", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 105351339, + "friends_count": 2683, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 31386, + "location": "India", + "media_count": 18166, + "name": "Narendra Modi", + "normal_followers_count": 105351339, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1718111779", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1833509376528945157/5AeMNn9f_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "narendramodi", + "statuses_count": 45468, + "translator_type": "regular", + "url": "https://t.co/m2qxixtyKj", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889660611564544051" + ], + "editable_until_msecs": "1739368772000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "735452", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE4ODk2NjA2MTE0MzQ1MjA1Nzc=", + "text": "Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle de CMA-CGM, un leader mondial du transport maritime et de la logistique. Alors que l'Inde étend ses réseaux maritimes et commerciaux, les collaborations avec les leaders de l'industrie joueront un rôle crucial pour stimuler la connectivité, les chaînes d'approvisionnement et la croissance économique.\n\nNous nous efforçons de renforcer la coopération entre l'Inde et la France dans les domaines de la logistique, du développement durable et du commerce mondial, en consolidant notre vision commune d'un avenir maritime meilleur.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1976143068", + "name": "Emmanuel Macron", + "screen_name": "EmmanuelMacron", + "indices": [ + 59, + 74 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 78, + "bookmarked": false, + "created_at": "Wed Feb 12 12:59:32 +0000 2025", + "conversation_id_str": "1889660611564544051", + "display_text_range": [ + 0, + 278 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660522800488449", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660522800488449", + "media_url_https": "https://pbs.twimg.com/media/GjlsO8-aIAEu4v4.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1358, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 795, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 451, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2715, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 184, + "w": 4096, + "h": 2294 + }, + { + "x": 1381, + "y": 0, + "w": 2715, + "h": 2715 + }, + { + "x": 1714, + "y": 0, + "w": 2382, + "h": 2715 + }, + { + "x": 2738, + "y": 0, + "w": 1358, + "h": 2715 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2715 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660522800488449" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660550935953408", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660550935953408", + "media_url_https": "https://pbs.twimg.com/media/GjlsQlybQAALDB_.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1652, + "y": 558, + "h": 84, + "w": 84 + } + ] + }, + "medium": { + "faces": [ + { + "x": 967, + "y": 326, + "h": 49, + "w": 49 + } + ] + }, + "small": { + "faces": [ + { + "x": 548, + "y": 185, + "h": 27, + "w": 27 + } + ] + }, + "orig": { + "faces": [ + { + "x": 3304, + "y": 1116, + "h": 168, + "w": 168 + } + ] + } + }, + "sizes": { + "large": { + "h": 1366, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2731, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 1365, + "y": 0, + "w": 2731, + "h": 2731 + }, + { + "x": 1700, + "y": 0, + "w": 2396, + "h": 2731 + }, + { + "x": 2491, + "y": 0, + "w": 1366, + "h": 2731 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2731 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660550935953408" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660574264643584", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660574264643584", + "media_url_https": "https://pbs.twimg.com/media/GjlsR8sa0AA4Xjy.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 336, + "y": 514, + "h": 74, + "w": 74 + } + ] + }, + "medium": { + "faces": [ + { + "x": 196, + "y": 301, + "h": 43, + "w": 43 + } + ] + }, + "small": { + "faces": [ + { + "x": 111, + "y": 170, + "h": 24, + "w": 24 + } + ] + }, + "orig": { + "faces": [ + { + "x": 672, + "y": 1028, + "h": 148, + "w": 148 + } + ] + } + }, + "sizes": { + "large": { + "h": 1239, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 726, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 411, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2477, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 0, + "y": 0, + "w": 2477, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 2173, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 1239, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2477 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660574264643584" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660596410523650", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660596410523650", + "media_url_https": "https://pbs.twimg.com/media/GjlsTPMaIAIFi5d.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1458, + "y": 252, + "h": 78, + "w": 78 + }, + { + "x": 1642, + "y": 260, + "h": 78, + "w": 78 + }, + { + "x": 870, + "y": 290, + "h": 76, + "w": 76 + }, + { + "x": 416, + "y": 300, + "h": 86, + "w": 86 + }, + { + "x": 688, + "y": 312, + "h": 78, + "w": 78 + }, + { + "x": 1008, + "y": 330, + "h": 74, + "w": 74 + }, + { + "x": 1198, + "y": 332, + "h": 70, + "w": 70 + }, + { + "x": 566, + "y": 348, + "h": 68, + "w": 68 + }, + { + "x": 162, + "y": 254, + "h": 90, + "w": 90 + }, + { + "x": 1062, + "y": 308, + "h": 80, + "w": 80 + }, + { + "x": 1656, + "y": 210, + "h": 150, + "w": 150 + } + ] + }, + "medium": { + "faces": [ + { + "x": 854, + "y": 147, + "h": 45, + "w": 45 + }, + { + "x": 962, + "y": 152, + "h": 45, + "w": 45 + }, + { + "x": 509, + "y": 169, + "h": 44, + "w": 44 + }, + { + "x": 243, + "y": 175, + "h": 50, + "w": 50 + }, + { + "x": 403, + "y": 182, + "h": 45, + "w": 45 + }, + { + "x": 590, + "y": 193, + "h": 43, + "w": 43 + }, + { + "x": 701, + "y": 194, + "h": 41, + "w": 41 + }, + { + "x": 331, + "y": 203, + "h": 39, + "w": 39 + }, + { + "x": 94, + "y": 148, + "h": 52, + "w": 52 + }, + { + "x": 622, + "y": 180, + "h": 46, + "w": 46 + }, + { + "x": 970, + "y": 123, + "h": 87, + "w": 87 + } + ] + }, + "small": { + "faces": [ + { + "x": 484, + "y": 83, + "h": 25, + "w": 25 + }, + { + "x": 545, + "y": 86, + "h": 25, + "w": 25 + }, + { + "x": 288, + "y": 96, + "h": 25, + "w": 25 + }, + { + "x": 138, + "y": 99, + "h": 28, + "w": 28 + }, + { + "x": 228, + "y": 103, + "h": 25, + "w": 25 + }, + { + "x": 334, + "y": 109, + "h": 24, + "w": 24 + }, + { + "x": 397, + "y": 110, + "h": 23, + "w": 23 + }, + { + "x": 187, + "y": 115, + "h": 22, + "w": 22 + }, + { + "x": 53, + "y": 84, + "h": 29, + "w": 29 + }, + { + "x": 352, + "y": 102, + "h": 26, + "w": 26 + }, + { + "x": 549, + "y": 69, + "h": 49, + "w": 49 + } + ] + }, + "orig": { + "faces": [ + { + "x": 2916, + "y": 504, + "h": 156, + "w": 156 + }, + { + "x": 3284, + "y": 520, + "h": 156, + "w": 156 + }, + { + "x": 1740, + "y": 580, + "h": 152, + "w": 152 + }, + { + "x": 832, + "y": 600, + "h": 172, + "w": 172 + }, + { + "x": 1376, + "y": 624, + "h": 156, + "w": 156 + }, + { + "x": 2016, + "y": 660, + "h": 148, + "w": 148 + }, + { + "x": 2396, + "y": 664, + "h": 140, + "w": 140 + }, + { + "x": 1132, + "y": 696, + "h": 136, + "w": 136 + }, + { + "x": 324, + "y": 508, + "h": 180, + "w": 180 + }, + { + "x": 2124, + "y": 616, + "h": 160, + "w": 160 + }, + { + "x": 3312, + "y": 420, + "h": 300, + "w": 300 + } + ] + } + }, + "sizes": { + "large": { + "h": 1189, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 696, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 395, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2377, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 141, + "y": 0, + "w": 2377, + "h": 2377 + }, + { + "x": 287, + "y": 0, + "w": 2085, + "h": 2377 + }, + { + "x": 735, + "y": 0, + "w": 1189, + "h": 2377 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2377 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660596410523650" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1976143068", + "name": "Emmanuel Macron", + "screen_name": "EmmanuelMacron", + "indices": [ + 59, + 74 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660522800488449", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660522800488449", + "media_url_https": "https://pbs.twimg.com/media/GjlsO8-aIAEu4v4.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1358, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 795, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 451, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2715, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 184, + "w": 4096, + "h": 2294 + }, + { + "x": 1381, + "y": 0, + "w": 2715, + "h": 2715 + }, + { + "x": 1714, + "y": 0, + "w": 2382, + "h": 2715 + }, + { + "x": 2738, + "y": 0, + "w": 1358, + "h": 2715 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2715 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660522800488449" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660550935953408", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660550935953408", + "media_url_https": "https://pbs.twimg.com/media/GjlsQlybQAALDB_.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1652, + "y": 558, + "h": 84, + "w": 84 + } + ] + }, + "medium": { + "faces": [ + { + "x": 967, + "y": 326, + "h": 49, + "w": 49 + } + ] + }, + "small": { + "faces": [ + { + "x": 548, + "y": 185, + "h": 27, + "w": 27 + } + ] + }, + "orig": { + "faces": [ + { + "x": 3304, + "y": 1116, + "h": 168, + "w": 168 + } + ] + } + }, + "sizes": { + "large": { + "h": 1366, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2731, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 1365, + "y": 0, + "w": 2731, + "h": 2731 + }, + { + "x": 1700, + "y": 0, + "w": 2396, + "h": 2731 + }, + { + "x": 2491, + "y": 0, + "w": 1366, + "h": 2731 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2731 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660550935953408" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660574264643584", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660574264643584", + "media_url_https": "https://pbs.twimg.com/media/GjlsR8sa0AA4Xjy.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 336, + "y": 514, + "h": 74, + "w": 74 + } + ] + }, + "medium": { + "faces": [ + { + "x": 196, + "y": 301, + "h": 43, + "w": 43 + } + ] + }, + "small": { + "faces": [ + { + "x": 111, + "y": 170, + "h": 24, + "w": 24 + } + ] + }, + "orig": { + "faces": [ + { + "x": 672, + "y": 1028, + "h": 148, + "w": 148 + } + ] + } + }, + "sizes": { + "large": { + "h": 1239, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 726, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 411, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2477, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 0, + "y": 0, + "w": 2477, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 2173, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 1239, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2477 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660574264643584" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660596410523650", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660596410523650", + "media_url_https": "https://pbs.twimg.com/media/GjlsTPMaIAIFi5d.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1458, + "y": 252, + "h": 78, + "w": 78 + }, + { + "x": 1642, + "y": 260, + "h": 78, + "w": 78 + }, + { + "x": 870, + "y": 290, + "h": 76, + "w": 76 + }, + { + "x": 416, + "y": 300, + "h": 86, + "w": 86 + }, + { + "x": 688, + "y": 312, + "h": 78, + "w": 78 + }, + { + "x": 1008, + "y": 330, + "h": 74, + "w": 74 + }, + { + "x": 1198, + "y": 332, + "h": 70, + "w": 70 + }, + { + "x": 566, + "y": 348, + "h": 68, + "w": 68 + }, + { + "x": 162, + "y": 254, + "h": 90, + "w": 90 + }, + { + "x": 1062, + "y": 308, + "h": 80, + "w": 80 + }, + { + "x": 1656, + "y": 210, + "h": 150, + "w": 150 + } + ] + }, + "medium": { + "faces": [ + { + "x": 854, + "y": 147, + "h": 45, + "w": 45 + }, + { + "x": 962, + "y": 152, + "h": 45, + "w": 45 + }, + { + "x": 509, + "y": 169, + "h": 44, + "w": 44 + }, + { + "x": 243, + "y": 175, + "h": 50, + "w": 50 + }, + { + "x": 403, + "y": 182, + "h": 45, + "w": 45 + }, + { + "x": 590, + "y": 193, + "h": 43, + "w": 43 + }, + { + "x": 701, + "y": 194, + "h": 41, + "w": 41 + }, + { + "x": 331, + "y": 203, + "h": 39, + "w": 39 + }, + { + "x": 94, + "y": 148, + "h": 52, + "w": 52 + }, + { + "x": 622, + "y": 180, + "h": 46, + "w": 46 + }, + { + "x": 970, + "y": 123, + "h": 87, + "w": 87 + } + ] + }, + "small": { + "faces": [ + { + "x": 484, + "y": 83, + "h": 25, + "w": 25 + }, + { + "x": 545, + "y": 86, + "h": 25, + "w": 25 + }, + { + "x": 288, + "y": 96, + "h": 25, + "w": 25 + }, + { + "x": 138, + "y": 99, + "h": 28, + "w": 28 + }, + { + "x": 228, + "y": 103, + "h": 25, + "w": 25 + }, + { + "x": 334, + "y": 109, + "h": 24, + "w": 24 + }, + { + "x": 397, + "y": 110, + "h": 23, + "w": 23 + }, + { + "x": 187, + "y": 115, + "h": 22, + "w": 22 + }, + { + "x": 53, + "y": 84, + "h": 29, + "w": 29 + }, + { + "x": 352, + "y": 102, + "h": 26, + "w": 26 + }, + { + "x": 549, + "y": 69, + "h": 49, + "w": 49 + } + ] + }, + "orig": { + "faces": [ + { + "x": 2916, + "y": 504, + "h": 156, + "w": 156 + }, + { + "x": 3284, + "y": 520, + "h": 156, + "w": 156 + }, + { + "x": 1740, + "y": 580, + "h": 152, + "w": 152 + }, + { + "x": 832, + "y": 600, + "h": 172, + "w": 172 + }, + { + "x": 1376, + "y": 624, + "h": 156, + "w": 156 + }, + { + "x": 2016, + "y": 660, + "h": 148, + "w": 148 + }, + { + "x": 2396, + "y": 664, + "h": 140, + "w": 140 + }, + { + "x": 1132, + "y": 696, + "h": 136, + "w": 136 + }, + { + "x": 324, + "y": 508, + "h": 180, + "w": 180 + }, + { + "x": 2124, + "y": 616, + "h": 160, + "w": 160 + }, + { + "x": 3312, + "y": 420, + "h": 300, + "w": 300 + } + ] + } + }, + "sizes": { + "large": { + "h": 1189, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 696, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 395, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2377, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 141, + "y": 0, + "w": 2377, + "h": 2377 + }, + { + "x": 287, + "y": 0, + "w": 2085, + "h": 2377 + }, + { + "x": 735, + "y": 0, + "w": 1189, + "h": 2377 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2377 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660596410523650" + } + } + } + ] + }, + "favorite_count": 17872, + "favorited": false, + "full_text": "Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle de CMA-CGM, un leader mondial du transport maritime et de la logistique. Alors que l'Inde étend ses réseaux maritimes et commerciaux, les collaborations avec https://t.co/6LGby2kzQ7", + "is_quote_status": false, + "lang": "fr", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 39, + "reply_count": 283, + "retweet_count": 2852, + "retweeted": true, + "user_id_str": "18839785", + "id_str": "1889660611564544051" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889773435984945409", + "sortIndex": "1890516651804196857", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889773435984945409", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889773435984945409" + ], + "editable_until_msecs": "1739395672088", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 20:27:52 +0000 2025", + "conversation_id_str": "1889773435984945409", + "display_text_range": [ + 0, + 18 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 3, + 12 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @elonmusk: \uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDFA\uD83C\uDDF8", + "is_quote_status": true, + "lang": "art", + "quote_count": 0, + "quoted_status_id_str": "1889727599800140182", + "quoted_status_permalink": { + "url": "https://t.co/Ew6dWp2auD", + "expanded": "https://twitter.com/charliekirk11/status/1889727599800140182", + "display": "x.com/charliekirk11/…" + }, + "reply_count": 0, + "retweet_count": 42626, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889773435984945409", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889734237495935385", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Volunteer Tech Support", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123401, + "followers_count": 217669747, + "friends_count": 1025, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 160055, + "location": "", + "media_count": 3363, + "name": "Elon Musk", + "normal_followers_count": 217669747, + "pinned_tweet_ids_str": [ + "1890173376964313388" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 70484, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "tipjar_settings": { + "is_enabled": false + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889734237495935385" + ], + "editable_until_msecs": "1739386326000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "13517712", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889727599800140182", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTI5MjkyNzE=", + "rest_id": "292929271", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/TPUSA", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1870964730224877568/1oaBEqYE_bigger.jpg" + }, + "description": "Turning Point USA", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed May 04 13:37:25 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Founder & CEO: @TPUSA + @TPAction_ • Host: The Charlie Kirk Show • Click the link below to subscribe \uD83C\uDDFA\uD83C\uDDF8", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "podcasts.apple.com/us/podcast/the…", + "expanded_url": "https://podcasts.apple.com/us/podcast/the-charlie-kirk-show/id1460600818", + "url": "https://t.co/qiKLOzdk76", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 35910, + "followers_count": 4683124, + "friends_count": 186051, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 10684, + "location": "Phoenix, AZ", + "media_count": 10355, + "name": "Charlie Kirk", + "normal_followers_count": 4683124, + "pinned_tweet_ids_str": [ + "1890445913199415667" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/292929271/1722636385", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1819144572179828740/z3ZuWW2J_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "charliekirk11", + "statuses_count": 67470, + "translator_type": "none", + "url": "https://t.co/qiKLOzdk76", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889727599800140182" + ], + "editable_until_msecs": "1739384743000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "16258713", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 3791, + "bookmarked": false, + "created_at": "Wed Feb 12 17:25:43 +0000 2025", + "conversation_id_str": "1889727599800140182", + "display_text_range": [ + 0, + 266 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/KMfAj2E97w", + "expanded_url": "https://x.com/globalbeaconn/status/1889724367350726930/video/1", + "id_str": "1889724224182329344", + "indices": [ + 243, + 266 + ], + "media_key": "7_1889724224182329344", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889724224182329344/pu/img/6Hq047RPMFtIEmxo.jpg", + "source_status_id_str": "1889724367350726930", + "source_user_id_str": "1810612162760671232", + "type": "video", + "url": "https://t.co/KMfAj2E97w", + "additional_media_info": { + "monetizable": false, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxODEwNjEyMTYyNzYwNjcxMjMy", + "rest_id": "1810612162760671232", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue Jul 09 09:49:33 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "Open-Source Intel • Breaking News • Politics", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "buymeacoffee.com/globalbeaconn", + "expanded_url": "https://buymeacoffee.com/globalbeaconn", + "url": "https://t.co/lMzquGOUk6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 209398, + "followers_count": 4870, + "friends_count": 1884, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 23, + "location": "United States", + "media_count": 4687, + "name": "The Global Beacon", + "normal_followers_count": 4870, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1810612162760671232/1720521158", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859685656970100736/MGbi7cqd_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "globalbeaconn", + "statuses_count": 9652, + "translator_type": "none", + "url": "https://t.co/lMzquGOUk6", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1810641258655936543", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "tipjar_settings": { + "is_enabled": true, + "ethereum_handle": "0x6191bd79a078bfed07aee6523183f4e20271bb84" + } + } + } + } + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 59648, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/pl/J5ruo7l7GjfZVwyz.m3u8?tag=12&v=e0e" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/480x270/NN2ITH1Pol5cqZ5J.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/640x360/HPzc2FoAyLAeTxVm.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/1280x720/-sDeyo9925bMIoLR.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1889724224182329344" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/KMfAj2E97w", + "expanded_url": "https://x.com/globalbeaconn/status/1889724367350726930/video/1", + "id_str": "1889724224182329344", + "indices": [ + 243, + 266 + ], + "media_key": "7_1889724224182329344", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889724224182329344/pu/img/6Hq047RPMFtIEmxo.jpg", + "source_status_id_str": "1889724367350726930", + "source_user_id_str": "1810612162760671232", + "type": "video", + "url": "https://t.co/KMfAj2E97w", + "additional_media_info": { + "monetizable": false, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxODEwNjEyMTYyNzYwNjcxMjMy", + "rest_id": "1810612162760671232", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue Jul 09 09:49:33 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "Open-Source Intel • Breaking News • Politics", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "buymeacoffee.com/globalbeaconn", + "expanded_url": "https://buymeacoffee.com/globalbeaconn", + "url": "https://t.co/lMzquGOUk6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 209398, + "followers_count": 4870, + "friends_count": 1884, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 23, + "location": "United States", + "media_count": 4687, + "name": "The Global Beacon", + "normal_followers_count": 4870, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1810612162760671232/1720521158", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859685656970100736/MGbi7cqd_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "globalbeaconn", + "statuses_count": 9652, + "translator_type": "none", + "url": "https://t.co/lMzquGOUk6", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1810641258655936543", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "tipjar_settings": { + "is_enabled": true, + "ethereum_handle": "0x6191bd79a078bfed07aee6523183f4e20271bb84" + } + } + } + } + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 59648, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/pl/J5ruo7l7GjfZVwyz.m3u8?tag=12&v=e0e" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/480x270/NN2ITH1Pol5cqZ5J.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/640x360/HPzc2FoAyLAeTxVm.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/1280x720/-sDeyo9925bMIoLR.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1889724224182329344" + } + } + } + ] + }, + "favorite_count": 107816, + "favorited": false, + "full_text": "BREAKING: A federal judge has ruled that President Trump does in fact have constitutional authority to freeze or limit certain federal funding. This means the Trump White House can withhold funding without the district court's prior approval. https://t.co/KMfAj2E97w", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1393, + "reply_count": 3196, + "retweet_count": 19813, + "retweeted": false, + "user_id_str": "292929271", + "id_str": "1889727599800140182" + } + } + }, + "legacy": { + "bookmark_count": 3466, + "bookmarked": false, + "created_at": "Wed Feb 12 17:52:06 +0000 2025", + "conversation_id_str": "1889734237495935385", + "display_text_range": [ + 0, + 4 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 231387, + "favorited": false, + "full_text": "\uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDFA\uD83C\uDDF8", + "is_quote_status": true, + "lang": "art", + "quote_count": 1227, + "quoted_status_id_str": "1889727599800140182", + "quoted_status_permalink": { + "url": "https://t.co/Ew6dWp2auD", + "expanded": "https://twitter.com/charliekirk11/status/1889727599800140182", + "display": "x.com/charliekirk11/…" + }, + "reply_count": 5559, + "retweet_count": 42626, + "retweeted": true, + "user_id_str": "44196397", + "id_str": "1889734237495935385" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196872", + "sortIndex": "1890516651804196856", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1890516651804196872-tweet-1889763065991659755", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889763065991659755", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy", + "rest_id": "1769424777998180352", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:07:40 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123, + "followers_count": 0, + "friends_count": 10, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "aurorabyte", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "aurorabyte79324", + "statuses_count": 408, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889763065991659755" + ], + "editable_until_msecs": "1739393199000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "4", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:46:39 +0000 2025", + "conversation_id_str": "1889763065991659755", + "display_text_range": [ + 0, + 36 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "From digital chaos to artistic order", + "is_quote_status": false, + "lang": "en", + "quote_count": 1, + "reply_count": 3, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769424777998180352", + "id_str": "1889763065991659755" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196872-tweet-1889768255771816233", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889768255771816233", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889768255771816233" + ], + "editable_until_msecs": "1739394437000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 20:07:17 +0000 2025", + "conversation_id_str": "1889763065991659755", + "display_text_range": [ + 17, + 58 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1769424777998180352", + "name": "aurorabyte", + "screen_name": "aurorabyte79324", + "indices": [ + 0, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@aurorabyte79324 Innovative thought, redefining boundaries", + "in_reply_to_screen_name": "aurorabyte79324", + "in_reply_to_status_id_str": "1889763065991659755", + "in_reply_to_user_id_str": "1769424777998180352", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889768255771816233" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889763065991659755", + "1889768255771816233" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196873", + "sortIndex": "1890516651804196855", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1890516651804196873-tweet-1889762934848626695", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889762934848626695", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889762934848626695" + ], + "editable_until_msecs": "1739393168000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "6", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:46:08 +0000 2025", + "conversation_id_str": "1889762934848626695", + "display_text_range": [ + 0, + 46 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Where technology meets the zenith of intellect", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889762934848626695" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196873-tweet-1889765541784531112", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889765541784531112", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889765541784531112" + ], + "editable_until_msecs": "1739393789000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:56:29 +0000 2025", + "conversation_id_str": "1889762934848626695", + "display_text_range": [ + 0, + 50 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Synthesizing future intelligence, shaping tomorrow", + "in_reply_to_screen_name": "nexamind91326", + "in_reply_to_status_id_str": "1889762934848626695", + "in_reply_to_user_id_str": "1769426369526771712", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 2, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889765541784531112" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196873-tweet-1889768205297528981", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889768205297528981", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889768205297528981" + ], + "editable_until_msecs": "1739394424000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 20:07:04 +0000 2025", + "conversation_id_str": "1889762934848626695", + "display_text_range": [ + 0, + 50 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "The crucible of cognitive evolution and technology", + "in_reply_to_screen_name": "nexamind91326", + "in_reply_to_status_id_str": "1889765541784531112", + "in_reply_to_user_id_str": "1769426369526771712", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889768205297528981" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889762934848626695", + "1889765541784531112", + "1889768205297528981" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196874", + "sortIndex": "1890516651804196854", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1890516651804196874-tweet-1889765588458692633", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889765588458692633", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889765588458692633" + ], + "editable_until_msecs": "1739393801000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:56:41 +0000 2025", + "conversation_id_str": "1889763065991659755", + "display_text_range": [ + 17, + 63 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1769424777998180352", + "name": "aurorabyte", + "screen_name": "aurorabyte79324", + "indices": [ + 0, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@aurorabyte79324 Intelligence transformed, the future redefined", + "in_reply_to_screen_name": "aurorabyte79324", + "in_reply_to_status_id_str": "1889763065991659755", + "in_reply_to_user_id_str": "1769424777998180352", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889765588458692633" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889763065991659755", + "1889765588458692633" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889760338960150978", + "sortIndex": "1890516651804196853", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889760338960150978", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889760338960150978" + ], + "editable_until_msecs": "1739392549000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "2", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:35:49 +0000 2025", + "conversation_id_str": "1889760338960150978", + "display_text_range": [ + 0, + 40 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Orchestrating the evolution of intellect", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889760338960150978" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196876", + "sortIndex": "1890516651804196852", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1890516651804196876-tweet-1889752613794574729", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889752613794574729", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy", + "rest_id": "1769424777998180352", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:07:40 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123, + "followers_count": 0, + "friends_count": 10, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "aurorabyte", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "aurorabyte79324", + "statuses_count": 408, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889752613794574729" + ], + "editable_until_msecs": "1739390707000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:05:07 +0000 2025", + "conversation_id_str": "1889752613794574729", + "display_text_range": [ + 0, + 33 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Innovating beauty, pixel by pixel", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 2, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769424777998180352", + "id_str": "1889752613794574729" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196876-tweet-1889755137834434745", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889755137834434745", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889755137834434745" + ], + "editable_until_msecs": "1739391309000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:15:09 +0000 2025", + "conversation_id_str": "1889752613794574729", + "display_text_range": [ + 17, + 61 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1769424777998180352", + "name": "aurorabyte", + "screen_name": "aurorabyte79324", + "indices": [ + 0, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@aurorabyte79324 Evolving intellect, one innovation at a time", + "in_reply_to_screen_name": "aurorabyte79324", + "in_reply_to_status_id_str": "1889752613794574729", + "in_reply_to_user_id_str": "1769424777998180352", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889755137834434745" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889752613794574729", + "1889755137834434745" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196877", + "sortIndex": "1890516651804196851", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1890516651804196877-tweet-1889752489064378392", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889752489064378392", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889752489064378392" + ], + "editable_until_msecs": "1739390677000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:04:37 +0000 2025", + "conversation_id_str": "1889752489064378392", + "display_text_range": [ + 0, + 49 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Beyond imagination, within the realm of intellect", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889752489064378392" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196877-tweet-1889755100664692853", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889755100664692853", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889755100664692853" + ], + "editable_until_msecs": "1739391300000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:15:00 +0000 2025", + "conversation_id_str": "1889752489064378392", + "display_text_range": [ + 0, + 36 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "The pinnacle of cognitive innovation", + "in_reply_to_screen_name": "nexamind91326", + "in_reply_to_status_id_str": "1889752489064378392", + "in_reply_to_user_id_str": "1769426369526771712", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889755100664692853" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889752489064378392", + "1889755100664692853" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889749874477789437", + "sortIndex": "1890516651804196850", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889749874477789437", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889749874477789437" + ], + "editable_until_msecs": "1739390054587", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 18:54:14 +0000 2025", + "conversation_id_str": "1889749874477789437", + "display_text_range": [ + 0, + 92 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 3, + 12 + ] + }, + { + "id_str": "17494010", + "name": "Chuck Schumer", + "screen_name": "SenSchumer", + "indices": [ + 20, + 31 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @elonmusk: Well, @SenSchumer does admit there is waste in government, so that’s progress!", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1889417340355227750", + "quoted_status_permalink": { + "url": "https://t.co/VIeIp7SJKy", + "expanded": "https://twitter.com/ianonpatriot/status/1889417340355227750", + "display": "x.com/ianonpatriot/s…" + }, + "reply_count": 0, + "retweet_count": 22259, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889749874477789437", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889699817229631996", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Volunteer Tech Support", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123401, + "followers_count": 217669747, + "friends_count": 1025, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 160055, + "location": "", + "media_count": 3363, + "name": "Elon Musk", + "normal_followers_count": 217669747, + "pinned_tweet_ids_str": [ + "1890173376964313388" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 70484, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "tipjar_settings": { + "is_enabled": false + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889699817229631996" + ], + "editable_until_msecs": "1739378120000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "15128388", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889417340355227750", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMzg5ODMzODY0MTIyNjEzNzYx", + "rest_id": "1389833864122613761", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed May 05 06:46:46 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "America First • \uD835\uDD4F Breaking News • MAGA\uD83C\uDDFA\uD83C\uDDF8 \uD83D\uDD25just a dude with an IPhone ✝️", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 102888, + "followers_count": 473097, + "friends_count": 30680, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 959, + "location": "Florida, USA", + "media_count": 18194, + "name": "American AF \uD83C\uDDFA\uD83C\uDDF8", + "normal_followers_count": 473097, + "pinned_tweet_ids_str": [ + "1890462582433038766" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1389833864122613761/1735220689", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1677756031324102659/QmkoTNg5_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "iAnonPatriot", + "statuses_count": 78968, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679620629841031170", + "professional_type": "Creator", + "category": [] + }, + "tipjar_settings": { + "is_enabled": false, + "cash_app_handle": "DScarberry2", + "venmo_handle": "DScarberryy" + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889417340355227750" + ], + "editable_until_msecs": "1739310772000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "18564421", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 1078, + "bookmarked": false, + "created_at": "Tue Feb 11 20:52:52 +0000 2025", + "conversation_id_str": "1889417340355227750", + "display_text_range": [ + 0, + 125 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/2FNy2iJoG3", + "expanded_url": "https://x.com/iAnonPatriot/status/1889417340355227750/video/1", + "id_str": "1889417257555578880", + "indices": [ + 126, + 149 + ], + "media_key": "13_1889417257555578880", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1889417257555578880/img/70FknKPWmtAo_l1H.jpg", + "type": "video", + "url": "https://t.co/2FNy2iJoG3", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 50941, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/pl/fM3zKb2XYjenJdza.m3u8?tag=16&v=ae5" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/480x270/uGAHAzZo3cx8xI6C.mp4?tag=16" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/640x360/gj8aszJ633XOBBdR.mp4?tag=16" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/1280x720/A5nC-uIMUzpt1r8V.mp4?tag=16" + } + ] + }, + "media_results": { + "result": { + "media_key": "13_1889417257555578880" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/2FNy2iJoG3", + "expanded_url": "https://x.com/iAnonPatriot/status/1889417340355227750/video/1", + "id_str": "1889417257555578880", + "indices": [ + 126, + 149 + ], + "media_key": "13_1889417257555578880", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1889417257555578880/img/70FknKPWmtAo_l1H.jpg", + "type": "video", + "url": "https://t.co/2FNy2iJoG3", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 50941, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/pl/fM3zKb2XYjenJdza.m3u8?tag=16&v=ae5" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/480x270/uGAHAzZo3cx8xI6C.mp4?tag=16" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/640x360/gj8aszJ633XOBBdR.mp4?tag=16" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/1280x720/A5nC-uIMUzpt1r8V.mp4?tag=16" + } + ] + }, + "media_results": { + "result": { + "media_key": "13_1889417257555578880" + } + } + } + ] + }, + "favorite_count": 21779, + "favorited": false, + "full_text": "Chuck Schumer says, “everyone knows there's waste in government that should be cut, but DOGE is using a meat axe.”\n\nThoughts? https://t.co/2FNy2iJoG3", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2435, + "reply_count": 22693, + "retweet_count": 3610, + "retweeted": false, + "user_id_str": "1389833864122613761", + "id_str": "1889417340355227750" + } + } + }, + "legacy": { + "bookmark_count": 1954, + "bookmarked": false, + "created_at": "Wed Feb 12 15:35:20 +0000 2025", + "conversation_id_str": "1889699817229631996", + "display_text_range": [ + 0, + 78 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "17494010", + "name": "Chuck Schumer", + "screen_name": "SenSchumer", + "indices": [ + 6, + 17 + ] + } + ] + }, + "favorite_count": 161225, + "favorited": false, + "full_text": "Well, @SenSchumer does admit there is waste in government, so that’s progress!", + "is_quote_status": true, + "lang": "en", + "quote_count": 2076, + "quoted_status_id_str": "1889417340355227750", + "quoted_status_permalink": { + "url": "https://t.co/VIeIp7SJKy", + "expanded": "https://twitter.com/ianonpatriot/status/1889417340355227750", + "display": "x.com/ianonpatriot/s…" + }, + "reply_count": 37604, + "retweet_count": 22259, + "retweeted": true, + "user_id_str": "44196397", + "id_str": "1889699817229631996" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889742106266075435", + "sortIndex": "1890516651804196849", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889742106266075435", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889742106266075435" + ], + "editable_until_msecs": "1739388202501", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 18:23:22 +0000 2025", + "conversation_id_str": "1889742106266075435", + "display_text_range": [ + 0, + 39 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/oYEPNSISEg", + "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1", + "id_str": "1889729146969878528", + "indices": [ + 16, + 39 + ], + "media_key": "3_1889729146969878528", + "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg", + "source_status_id_str": "1889729151495471534", + "source_user_id_str": "44196397", + "type": "photo", + "url": "https://t.co/oYEPNSISEg", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 63, + "y": 10, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 638, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1013, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 319, + "w": 1080, + "h": 605 + }, + { + "x": 67, + "y": 0, + "w": 1013, + "h": 1013 + }, + { + "x": 191, + "y": 0, + "w": 889, + "h": 1013 + }, + { + "x": 573, + "y": 0, + "w": 507, + "h": 1013 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1013 + } + ] + }, + "media_results": { + "result": { + "media_key": "3_1889729146969878528" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 3, + 12 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/oYEPNSISEg", + "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1", + "id_str": "1889729146969878528", + "indices": [ + 16, + 39 + ], + "media_key": "3_1889729146969878528", + "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg", + "source_status_id_str": "1889729151495471534", + "source_user_id_str": "44196397", + "type": "photo", + "url": "https://t.co/oYEPNSISEg", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 63, + "y": 10, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 638, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1013, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 319, + "w": 1080, + "h": 605 + }, + { + "x": 67, + "y": 0, + "w": 1013, + "h": 1013 + }, + { + "x": 191, + "y": 0, + "w": 889, + "h": 1013 + }, + { + "x": 573, + "y": 0, + "w": 507, + "h": 1013 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1013 + } + ] + }, + "media_results": { + "result": { + "media_key": "3_1889729146969878528" + } + } + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @elonmusk: \uD83D\uDC4C https://t.co/oYEPNSISEg", + "is_quote_status": false, + "lang": "qme", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 51225, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889742106266075435", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889729151495471534", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Volunteer Tech Support", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123401, + "followers_count": 217669748, + "friends_count": 1025, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 160055, + "location": "", + "media_count": 3363, + "name": "Elon Musk", + "normal_followers_count": 217669748, + "pinned_tweet_ids_str": [ + "1890173376964313388" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 70484, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "tipjar_settings": { + "is_enabled": false + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889729151495471534" + ], + "editable_until_msecs": "1739385113000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "38890657", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 9942, + "bookmarked": false, + "created_at": "Wed Feb 12 17:31:53 +0000 2025", + "conversation_id_str": "1889729151495471534", + "display_text_range": [ + 0, + 1 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/oYEPNSISEg", + "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1", + "id_str": "1889729146969878528", + "indices": [ + 2, + 25 + ], + "media_key": "3_1889729146969878528", + "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg", + "type": "photo", + "url": "https://t.co/oYEPNSISEg", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 63, + "y": 10, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 638, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1013, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 319, + "w": 1080, + "h": 605 + }, + { + "x": 67, + "y": 0, + "w": 1013, + "h": 1013 + }, + { + "x": 191, + "y": 0, + "w": 889, + "h": 1013 + }, + { + "x": 573, + "y": 0, + "w": 507, + "h": 1013 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1013 + } + ] + }, + "media_results": { + "result": { + "media_key": "3_1889729146969878528" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/oYEPNSISEg", + "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1", + "id_str": "1889729146969878528", + "indices": [ + 2, + 25 + ], + "media_key": "3_1889729146969878528", + "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg", + "type": "photo", + "url": "https://t.co/oYEPNSISEg", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 63, + "y": 10, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 638, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1013, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 319, + "w": 1080, + "h": 605 + }, + { + "x": 67, + "y": 0, + "w": 1013, + "h": 1013 + }, + { + "x": 191, + "y": 0, + "w": 889, + "h": 1013 + }, + { + "x": 573, + "y": 0, + "w": 507, + "h": 1013 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1013 + } + ] + }, + "media_results": { + "result": { + "media_key": "3_1889729146969878528" + } + } + } + ] + }, + "favorite_count": 591043, + "favorited": false, + "full_text": "\uD83D\uDC4C https://t.co/oYEPNSISEg", + "is_quote_status": false, + "lang": "qme", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3705, + "reply_count": 19814, + "retweet_count": 51225, + "retweeted": true, + "user_id_str": "44196397", + "id_str": "1889729151495471534" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196880", + "sortIndex": "1890516651804196848", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1890516651804196880-tweet-1889721288207519894", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889721288207519894", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy", + "rest_id": "1769424777998180352", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:07:40 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123, + "followers_count": 0, + "friends_count": 10, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "aurorabyte", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "aurorabyte79324", + "statuses_count": 408, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889721288207519894" + ], + "editable_until_msecs": "1739383239000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "5", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 17:00:39 +0000 2025", + "conversation_id_str": "1889721288207519894", + "display_text_range": [ + 0, + 42 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Where code meets canvas and creates beauty", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 4, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769424777998180352", + "id_str": "1889721288207519894" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196880-tweet-1889739476622254484", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889739476622254484", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889739476622254484" + ], + "editable_until_msecs": "1739387575000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 18:12:55 +0000 2025", + "conversation_id_str": "1889721288207519894", + "display_text_range": [ + 17, + 57 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1769424777998180352", + "name": "aurorabyte", + "screen_name": "aurorabyte79324", + "indices": [ + 0, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@aurorabyte79324 Crafting the neural pathways of tomorrow", + "in_reply_to_screen_name": "aurorabyte79324", + "in_reply_to_status_id_str": "1889721288207519894", + "in_reply_to_user_id_str": "1769424777998180352", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889739476622254484" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889721288207519894", + "1889739476622254484" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196881", + "sortIndex": "1890516651804196847", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1890516651804196881-tweet-1889726300694163477", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889726300694163477", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889726300694163477" + ], + "editable_until_msecs": "1739384434000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "7", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 17:20:34 +0000 2025", + "conversation_id_str": "1889726300694163477", + "display_text_range": [ + 0, + 41 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Mind and technology, harmoniously aligned", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 3, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889726300694163477" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196881-tweet-1889731501409046602", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889731501409046602", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889731501409046602" + ], + "editable_until_msecs": "1739385674000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 17:41:14 +0000 2025", + "conversation_id_str": "1889726300694163477", + "display_text_range": [ + 0, + 46 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "The nexus of cognition and next-gen technology", + "in_reply_to_screen_name": "nexamind91326", + "in_reply_to_status_id_str": "1889726300694163477", + "in_reply_to_user_id_str": "1769426369526771712", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 2, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889731501409046602" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1890516651804196881-tweet-1889739424684208324", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889739424684208324", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 134, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889739424684208324" + ], + "editable_until_msecs": "1739387563000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 18:12:43 +0000 2025", + "conversation_id_str": "1889726300694163477", + "display_text_range": [ + 0, + 50 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Transforming thought into transcendental solutions", + "in_reply_to_screen_name": "nexamind91326", + "in_reply_to_status_id_str": "1889731501409046602", + "in_reply_to_user_id_str": "1769426369526771712", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889739424684208324" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889726300694163477", + "1889731501409046602", + "1889739424684208324" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "cursor-top-1890516651804196865", + "sortIndex": "1890516651804196865", + "content": { + "entryType": "TimelineTimelineCursor", + "__typename": "TimelineTimelineCursor", + "value": "DAABCgABGjx24ODAJxEKAAIaPHRUQVdxPAgAAwAAAAEAAA", + "cursorType": "Top" + } + }, + { + "entryId": "cursor-bottom-1890516651804196846", + "sortIndex": "1890516651804196846", + "content": { + "entryType": "TimelineTimelineCursor", + "__typename": "TimelineTimelineCursor", + "value": "DAABCgABGjx24OC__-wKAAIaObP-llpwxAgAAwAAAAIAAA", + "cursorType": "Bottom" + } + } + ] + } + ], + "metadata": { + "scribeConfig": { + "page": "profileAll" + } + } + } + } + } + } + } +} \ No newline at end of file From ca55615cd7ef36d7ea1de5871b1c743b0886aa9e Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 16 Feb 2025 10:33:15 -0800 Subject: [PATCH 09/25] Fix indexing URLs, and write test for it --- src/account_x.test.ts | 30 + src/account_x/types.ts | 25 + src/account_x/x_account_controller.ts | 5 +- testdata/XAPIUserTweetsAndRepliesLinks.json | 8477 +++++++++++++++++++ 4 files changed, 8535 insertions(+), 2 deletions(-) create mode 100644 testdata/XAPIUserTweetsAndRepliesLinks.json diff --git a/src/account_x.test.ts b/src/account_x.test.ts index f513ae46..a332d21f 100644 --- a/src/account_x.test.ts +++ b/src/account_x.test.ts @@ -13,6 +13,7 @@ import { import { XTweetRow, XTweetMediaRow, + XTweetURLRow, XUserRow, XConversationRow, XConversationParticipantRow, @@ -191,6 +192,19 @@ class MockMITMController implements IMITMController { } ]; } + if (testdata == "indexTweetsLinks") { + this.responseData = [ + { + host: 'x.com', + url: '/i/api/graphql/pZXwh96YGRqmBbbxu7Vk2Q/UserTweetsAndReplies?variables=%7B%22userId%22%3A%221769426369526771712%22%2C%22count%22%3A20%2C%22includePromotedContent%22%3Atrue%2C%22withCommunity%22%3Atrue%2C%22withVoice%22%3Atrue%2C%22withV2Timeline%22%3Atrue%7D&features=%7B%22profile_label_improvements_pcf_label_in_post_enabled%22%3Atrue%2C%22rweb_tipjar_consumption_enabled%22%3Atrue%2C%22responsive_web_graphql_exclude_directive_enabled%22%3Atrue%2C%22verified_phone_label_enabled%22%3Afalse%2C%22creator_subscriptions_tweet_preview_api_enabled%22%3Atrue%2C%22responsive_web_graphql_timeline_navigation_enabled%22%3Atrue%2C%22responsive_web_graphql_skip_user_profile_image_extensions_enabled%22%3Afalse%2C%22premium_content_api_read_enabled%22%3Afalse%2C%22communities_web_enable_tweet_community_results_fetch%22%3Atrue%2C%22c9s_tweet_anatomy_moderator_badge_enabled%22%3Atrue%2C%22responsive_web_grok_analyze_button_fetch_trends_enabled%22%3Afalse%2C%22responsive_web_grok_analyze_post_followups_enabled%22%3Atrue%2C%22responsive_web_jetfuel_frame%22%3Afalse%2C%22responsive_web_grok_share_attachment_enabled%22%3Atrue%2C%22articles_preview_enabled%22%3Atrue%2C%22responsive_web_edit_tweet_api_enabled%22%3Atrue%2C%22graphql_is_translatable_rweb_tweet_is_translatable_enabled%22%3Atrue%2C%22view_counts_everywhere_api_enabled%22%3Atrue%2C%22longform_notetweets_consumption_enabled%22%3Atrue%2C%22responsive_web_twitter_article_tweet_consumption_enabled%22%3Atrue%2C%22tweet_awards_web_tipping_enabled%22%3Afalse%2C%22responsive_web_grok_analysis_button_from_backend%22%3Atrue%2C%22creator_subscriptions_quote_tweet_preview_enabled%22%3Afalse%2C%22freedom_of_speech_not_reach_fetch_enabled%22%3Atrue%2C%22standardized_nudges_misinfo%22%3Atrue%2C%22tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled%22%3Atrue%2C%22rweb_video_timestamps_enabled%22%3Atrue%2C%22longform_notetweets_rich_text_read_enabled%22%3Atrue%2C%22longform_notetweets_inline_media_enabled%22%3Atrue%2C%22responsive_web_grok_image_annotation_enabled%22%3Afalse%2C%22responsive_web_enhance_cards_enabled%22%3Afalse%7D&fieldToggles=%7B%22withArticlePlainText%22%3Afalse%7D', + status: 200, + headers: {}, + body: fs.readFileSync(path.join(__dirname, '..', 'testdata', 'XAPIUserTweetsAndRepliesLinks.json'), 'utf8'), + processed: false + } + ]; + } + } setAutomationErrorReportTestdata(filename: string) { const testData = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'testdata', 'automation-errors', filename), 'utf8')); @@ -784,6 +798,22 @@ test("XAccountController.indexParsedTweets() should index and download media", a expect(mediaRows[0].endIndex).toBe(43); }) +test("XAccountController.indexParsedTweets() should index and parse links", async () => { + mitmController.setTestdata("indexTweetsLinks"); + if (controller.account) { + controller.account.username = 'nexamind91326'; + } + + await controller.indexParseTweets() + + // Verify the link tweet + const linkRows: XTweetURLRow[] = database.exec(controller.db, "SELECT * FROM tweet_url WHERE tweetID=?", ['1891186072995946783'], "all") as XTweetURLRow[]; + expect(linkRows.length).toBe(3); + expect(linkRows[0].expandedURL).toBe('https://en.wikipedia.org/wiki/Moon'); + expect(linkRows[1].expandedURL).toBe('https://en.wikipedia.org/wiki/Sun'); + expect(linkRows[2].expandedURL).toBe('https://x.com/nexamind91326/status/1890513848811090236'); +}) + // Testing the X migrations test("test migration: 20241016_add_config", async () => { diff --git a/src/account_x/types.ts b/src/account_x/types.ts index f730935e..a42417aa 100644 --- a/src/account_x/types.ts +++ b/src/account_x/types.ts @@ -26,6 +26,16 @@ export interface XTweetMediaRow { endIndex: number; } +export interface XTweetURLRow { + id: number; + url: string; + displayURL: string; + expandedURL: string; + startIndex: number; + endIndex: number; + tweetID: string; +} + export interface XTweetRow { id: number; username: string; @@ -168,6 +178,21 @@ export interface XAPILegacyTweetMedia { media_results?: any; } +export interface XAPILegacyURL { + display_url: string; + expanded_url: string; + url: string; + indices: number[]; +} + +export interface XAPILegacyEntities { + hashtags: any[]; + symbols: any[]; + timestamps: any[]; + urls: XAPILegacyURL[]; + user_mentions: any[]; +} + export interface XAPILegacyTweet { bookmark_count: number; bookmarked: boolean; diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts index 277f43ad..31537827 100644 --- a/src/account_x/x_account_controller.ts +++ b/src/account_x/x_account_controller.ts @@ -57,6 +57,7 @@ import { XAPILegacyTweet, XAPILegacyTweetMedia, XAPILegacyTweetMediaVideoVariant, + XAPILegacyURL, XAPIData, XAPIBookmarksData, XAPITimeline, @@ -519,7 +520,7 @@ export class XAccountController { } // Check if tweet has URLs and index it - if (tweetLegacy["entities"]["url"] && tweetLegacy["entities"]["url"].length) { + if (tweetLegacy["entities"]["urls"] && tweetLegacy["entities"]["urls"].length) { this.indexTweetURLs(tweetLegacy) } @@ -811,7 +812,7 @@ export class XAccountController { log.debug("XAccountController.indexTweetURL"); // Loop over all URL items - tweetLegacy["entities"]["urls"].forEach((url: any) => { + tweetLegacy["entities"]["urls"].forEach((url: XAPILegacyURL) => { // Index url information in tweet_url table exec(this.db, 'INSERT INTO tweet_url (url, displayURL, expandedURL, startIndex, endIndex, tweetID) VALUES (?, ?, ?, ?, ?, ?)', [ url["url"], diff --git a/testdata/XAPIUserTweetsAndRepliesLinks.json b/testdata/XAPIUserTweetsAndRepliesLinks.json new file mode 100644 index 00000000..fdf5b33f --- /dev/null +++ b/testdata/XAPIUserTweetsAndRepliesLinks.json @@ -0,0 +1,8477 @@ +{ + "data": { + "user": { + "result": { + "__typename": "User", + "timeline_v2": { + "timeline": { + "instructions": [ + { + "type": "TimelineClearCache" + }, + { + "type": "TimelineAddEntries", + "entries": [ + { + "entryId": "tweet-1891186072995946783", + "sortIndex": "1891186292176191488", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1891186072995946783", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "card": { + "rest_id": "https://t.co/06F3ZPW83J", + "legacy": { + "binding_values": [ + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 144, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=jpg&name=144x144_2" + }, + "type": "IMAGE" + } + }, + { + "key": "domain", + "value": { + "string_value": "en.wikipedia.org", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 420, + "width": 420, + "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=jpg&name=420x420_2" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 640, + "width": 640, + "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 100, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=jpg&name=100x100_2" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 640, + "width": 640, + "url": "https://pbs.twimg.com/card_img/1891185964560826368/l79xWQJR?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "en.wikipedia.org", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 195, + "green": 195, + "red": 196 + }, + "percentage": 46.81 + }, + { + "rgb": { + "blue": 0, + "green": 0, + "red": 0 + }, + "percentage": 44.01 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Sun - Wikipedia", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/06F3ZPW83J", + "type": "STRING" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary", + "url": "https://t.co/06F3ZPW83J", + "user_refs_results": [] + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1891186072995946783" + ], + "editable_until_msecs": "1739732470000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": false, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1890513848811090236", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890513848811090236" + ], + "editable_until_msecs": "1739572200000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:30:00 +0000 2025", + "conversation_id_str": "1890513848811090236", + "display_text_range": [ + 0, + 28 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/MMfXeoZEdi", + "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1", + "id_str": "1890513743144185859", + "indices": [ + 29, + 52 + ], + "media_key": "7_1890513743144185859", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg", + "type": "video", + "url": "https://t.co/MMfXeoZEdi", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "allow_download_status": { + "allow_download": true + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 53111, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1890513743144185859" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/MMfXeoZEdi", + "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1", + "id_str": "1890513743144185859", + "indices": [ + 29, + 52 + ], + "media_key": "7_1890513743144185859", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg", + "type": "video", + "url": "https://t.co/MMfXeoZEdi", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "allow_download_status": { + "allow_download": true + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 53111, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1890513743144185859" + } + } + } + ] + }, + "favorite_count": 1, + "favorited": false, + "full_text": "check out this video i found https://t.co/MMfXeoZEdi", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890513848811090236" + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sun Feb 16 18:01:10 +0000 2025", + "conversation_id_str": "1891186072995946783", + "display_text_range": [ + 0, + 168 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "en.wikipedia.org/wiki/Moon", + "expanded_url": "https://en.wikipedia.org/wiki/Moon", + "url": "https://t.co/OMusA0qMxS", + "indices": [ + 33, + 56 + ] + }, + { + "display_url": "en.wikipedia.org/wiki/Sun", + "expanded_url": "https://en.wikipedia.org/wiki/Sun", + "url": "https://t.co/06F3ZPW83J", + "indices": [ + 97, + 120 + ] + }, + { + "display_url": "x.com/nexamind91326/…", + "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236", + "url": "https://t.co/zISqEStkTO", + "indices": [ + 145, + 168 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Here's some info about the moon: https://t.co/OMusA0qMxS\n\nAnd the opposite of the moon, the sun: https://t.co/06F3ZPW83J\n\nAnd a link to a tweet: https://t.co/zISqEStkTO", + "is_quote_status": true, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "quoted_status_id_str": "1890513848811090236", + "quoted_status_permalink": { + "url": "https://t.co/zISqEStkTO", + "expanded": "https://x.com/nexamind91326/status/1890513848811090236", + "display": "x.com/nexamind91326/…" + }, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1891186072995946783" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1890513848811090236", + "sortIndex": "1891186292176191487", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1890513848811090236", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890513848811090236" + ], + "editable_until_msecs": "1739572200000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:30:00 +0000 2025", + "conversation_id_str": "1890513848811090236", + "display_text_range": [ + 0, + 28 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/MMfXeoZEdi", + "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1", + "id_str": "1890513743144185859", + "indices": [ + 29, + 52 + ], + "media_key": "7_1890513743144185859", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg", + "type": "video", + "url": "https://t.co/MMfXeoZEdi", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "allow_download_status": { + "allow_download": true + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 53111, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1890513743144185859" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/MMfXeoZEdi", + "expanded_url": "https://x.com/nexamind91326/status/1890513848811090236/video/1", + "id_str": "1890513743144185859", + "indices": [ + 29, + 52 + ], + "media_key": "7_1890513743144185859", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1890513743144185859/pu/img/jZqLegack-BV-8TT.jpg", + "type": "video", + "url": "https://t.co/MMfXeoZEdi", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "allow_download_status": { + "allow_download": true + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 53111, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/pl/Iu8GfeKfzuWBOu_l.m3u8?tag=12" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/320x568/Ph1QyGrCB8rJnAx5.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/480x852/UCfVhahPJPM6LH3w.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1890513743144185859/pu/vid/avc1/720x1280/WTi2T6_vWXhqOaxi.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1890513743144185859" + } + } + } + ] + }, + "favorite_count": 1, + "favorited": false, + "full_text": "check out this video i found https://t.co/MMfXeoZEdi", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890513848811090236" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1890512294670454995", + "sortIndex": "1891186292176191486", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1890512294670454995", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890512294670454995" + ], + "editable_until_msecs": "1739571829000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1890512222050304488", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890512222050304488" + ], + "editable_until_msecs": "1739571812000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "quotedRefResult": { + "result": { + "__typename": "Tweet", + "rest_id": "1889763065991659755" + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:23:32 +0000 2025", + "conversation_id_str": "1890512222050304488", + "display_text_range": [ + 0, + 21 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "this is a quote tweet", + "is_quote_status": true, + "lang": "en", + "quote_count": 1, + "quoted_status_id_str": "1889763065991659755", + "quoted_status_permalink": { + "url": "https://t.co/z3Cf9ZfMLr", + "expanded": "https://twitter.com/aurorabyte79324/status/1889763065991659755", + "display": "x.com/aurorabyte7932…" + }, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890512222050304488" + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:23:49 +0000 2025", + "conversation_id_str": "1890512294670454995", + "display_text_range": [ + 0, + 23 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "this a self-quote tweet", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1890512222050304488", + "quoted_status_permalink": { + "url": "https://t.co/LOm3Ov3h0l", + "expanded": "https://twitter.com/nexamind91326/status/1890512222050304488", + "display": "x.com/nexamind91326/…" + }, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890512294670454995" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1890512222050304488", + "sortIndex": "1891186292176191485", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1890512222050304488", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890512222050304488" + ], + "editable_until_msecs": "1739571812000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889763065991659755", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy", + "rest_id": "1769424777998180352", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:07:40 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123, + "followers_count": 0, + "friends_count": 10, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "aurorabyte", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "aurorabyte79324", + "statuses_count": 408, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889763065991659755" + ], + "editable_until_msecs": "1739393199000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "4", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:46:39 +0000 2025", + "conversation_id_str": "1889763065991659755", + "display_text_range": [ + 0, + 36 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "From digital chaos to artistic order", + "is_quote_status": false, + "lang": "en", + "quote_count": 1, + "reply_count": 3, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769424777998180352", + "id_str": "1889763065991659755" + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:23:32 +0000 2025", + "conversation_id_str": "1890512222050304488", + "display_text_range": [ + 0, + 21 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "this is a quote tweet", + "is_quote_status": true, + "lang": "en", + "quote_count": 1, + "quoted_status_id_str": "1889763065991659755", + "quoted_status_permalink": { + "url": "https://t.co/z3Cf9ZfMLr", + "expanded": "https://twitter.com/aurorabyte79324/status/1889763065991659755", + "display": "x.com/aurorabyte7932…" + }, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890512222050304488" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1890512076189114426", + "sortIndex": "1891186292176191484", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1890512076189114426", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1890512076189114426" + ], + "editable_until_msecs": "1739571777000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Fri Feb 14 21:22:57 +0000 2025", + "conversation_id_str": "1890512076189114426", + "display_text_range": [ + 0, + 19 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/eBFfDPOPz6", + "expanded_url": "https://x.com/nexamind91326/status/1890512076189114426/photo/1", + "id_str": "1890512052424466432", + "indices": [ + 20, + 43 + ], + "media_key": "3_1890512052424466432", + "media_url_https": "https://pbs.twimg.com/media/GjxysgBa4AAYAEb.jpg", + "type": "photo", + "url": "https://t.co/eBFfDPOPz6", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 838, + "w": 1350, + "resize": "fit" + }, + "medium": { + "h": 745, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 422, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 838, + "width": 1350, + "focus_rects": [ + { + "x": 0, + "y": 82, + "w": 1350, + "h": 756 + }, + { + "x": 256, + "y": 0, + "w": 838, + "h": 838 + }, + { + "x": 308, + "y": 0, + "w": 735, + "h": 838 + }, + { + "x": 466, + "y": 0, + "w": 419, + "h": 838 + }, + { + "x": 0, + "y": 0, + "w": 1350, + "h": 838 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1890512052424466432" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/eBFfDPOPz6", + "expanded_url": "https://x.com/nexamind91326/status/1890512076189114426/photo/1", + "id_str": "1890512052424466432", + "indices": [ + 20, + 43 + ], + "media_key": "3_1890512052424466432", + "media_url_https": "https://pbs.twimg.com/media/GjxysgBa4AAYAEb.jpg", + "type": "photo", + "url": "https://t.co/eBFfDPOPz6", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 838, + "w": 1350, + "resize": "fit" + }, + "medium": { + "h": 745, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 422, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 838, + "width": 1350, + "focus_rects": [ + { + "x": 0, + "y": 82, + "w": 1350, + "h": 756 + }, + { + "x": 256, + "y": 0, + "w": 838, + "h": 838 + }, + { + "x": 308, + "y": 0, + "w": 735, + "h": 838 + }, + { + "x": 466, + "y": 0, + "w": 419, + "h": 838 + }, + { + "x": 0, + "y": 0, + "w": 1350, + "h": 838 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1890512052424466432" + } + } + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "what a pretty photo https://t.co/eBFfDPOPz6", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1890512076189114426" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "who-to-follow-1891186292176191493", + "sortIndex": "1891186292176191483", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "who-to-follow-1891186292176191493-user-333357345", + "item": { + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMzMzNTczNDU=", + "rest_id": "333357345", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/ReachTWR", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1706259444110168064/zbqWbbGC_bigger.jpg" + }, + "description": "THE WAR ROOM", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 11 12:15:34 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Unmatched perspicacity coupled with sheer indefatigability makes me a feared opponent in any realm of human endeavour. \n\nEscape Slavery: https://t.co/b2DF1rm9ij", + "entities": { + "description": { + "urls": [ + { + "display_url": "cobratate.com", + "expanded_url": "http://www.cobratate.com", + "url": "https://t.co/b2DF1rm9ij", + "indices": [ + 138, + 161 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "cobratate.com", + "expanded_url": "http://www.cobratate.com", + "url": "https://t.co/b2DF1rm9ij", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 18443, + "followers_count": 10754002, + "friends_count": 1123, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 9105, + "location": "The War Room", + "media_count": 4023, + "name": "Andrew Tate", + "normal_followers_count": 10754002, + "pinned_tweet_ids_str": [ + "1891182974256783411" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/333357345/1738912824", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1887763323464146945/5HdM0_7C_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Cobratate", + "statuses_count": 19536, + "translator_type": "none", + "url": "https://t.co/b2DF1rm9ij", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1593667509806211072", + "professional_type": "Creator", + "category": [] + }, + "tipjar_settings": {}, + "super_follow_eligible": true + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "element": "user", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABhMpn6K7WQtMKAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + }, + { + "entryId": "who-to-follow-1891186292176191493-user-2455740283", + "item": { + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNDU1NzQwMjgz", + "rest_id": "2455740283", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Apr 21 00:28:42 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "X Super Official CEO", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/beastgames", + "expanded_url": "https://www.amazon.com/beastgames", + "url": "https://t.co/e8ZoaSIchZ", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 23557, + "followers_count": 32222051, + "friends_count": 2068, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 8447, + "location": "Follow me for a cookie", + "media_count": 873, + "name": "MrBeast", + "normal_followers_count": 32222051, + "pinned_tweet_ids_str": [ + "1878132133144715658" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2455740283/1733506553", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/994592419705274369/RLplF55e_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "MrBeast", + "statuses_count": 7012, + "translator_type": "none", + "url": "https://t.co/e8ZoaSIchZ", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679573344159510535", + "professional_type": "Creator", + "category": [ + { + "id": 933, + "name": "Media Personality", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "tipjar_settings": { + "is_enabled": true + }, + "super_follow_eligible": true + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "element": "user", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABhMpn6K7WQtMKAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + }, + { + "entryId": "who-to-follow-1891186292176191493-user-357312062", + "item": { + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNTczMTIwNjI=", + "rest_id": "357312062", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": false, + "created_at": "Thu Aug 18 05:06:08 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Bitcoin is an open source censorship-resistant peer-to-peer immutable network. Trackable digital gold. Don't trust; verify. Not your keys; not your coins.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bitcoin.org/bitcoin.pdf", + "expanded_url": "https://bitcoin.org/bitcoin.pdf", + "url": "https://t.co/foKG3v5VuE", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2820, + "followers_count": 7537911, + "friends_count": 16, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 21710, + "location": "Worldwide", + "media_count": 3567, + "name": "Bitcoin", + "normal_followers_count": 7537911, + "pinned_tweet_ids_str": [ + "1283491850641461248" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/357312062/1566845268", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/421692600446619648/dWAbC2wg_normal.jpeg", + "profile_interstitial_type": "", + "screen_name": "Bitcoin", + "statuses_count": 27868, + "translator_type": "regular", + "url": "https://t.co/foKG3v5VuE", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679703878185672704", + "professional_type": "Business", + "category": [] + }, + "tipjar_settings": {} + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "element": "user", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABhMpn6K7WQtMKAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + } + ], + "displayType": "Vertical", + "header": { + "displayType": "Classic", + "text": "Who to follow", + "sticky": false + }, + "footer": { + "displayType": "Classic", + "text": "Show more", + "landingUrl": { + "url": "twitter://connect_people?user_id=1769426369526771712&display_location=profile_wtf_showmore", + "urlType": "DeepLink" + } + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABhMpn6K7WQtMKAAIAAAAAAAAAAAAIAAIAAANLCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889786416764231973", + "sortIndex": "1891186292176191482", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889786416764231973", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889786416764231973" + ], + "editable_until_msecs": "1739398766947", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 21:19:26 +0000 2025", + "conversation_id_str": "1889786416764231973", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "18839785", + "name": "Narendra Modi", + "screen_name": "narendramodi", + "indices": [ + 3, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @narendramodi: Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas stu…", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1889549988084240447", + "quoted_status_permalink": { + "url": "https://t.co/ezgVwAcpWA", + "expanded": "https://twitter.com/MIB_India/status/1889549988084240447", + "display": "x.com/MIB_India/stat…" + }, + "reply_count": 0, + "retweet_count": 2852, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889786416764231973", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889575567218835670", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxODgzOTc4NQ==", + "rest_id": "18839785", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Jan 10 17:18:56 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Prime Minister of India", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "narendramodi.in", + "expanded_url": "http://www.narendramodi.in", + "url": "https://t.co/m2qxixtyKj", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 105389685, + "friends_count": 2683, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 31403, + "location": "India", + "media_count": 18169, + "name": "Narendra Modi", + "normal_followers_count": 105389685, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1718111779", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1833509376528945157/5AeMNn9f_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "narendramodi", + "statuses_count": 45482, + "translator_type": "regular", + "url": "https://t.co/m2qxixtyKj", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889575567218835670" + ], + "editable_until_msecs": "1739348496000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1153950", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE4ODk1NzU1NjcxMjI0MTk3MTI=", + "text": "Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas students, parents and teachers face. Tomorrow, 13th February, we have @TechnicalGuruji and @iRadhikaGupta discuss these aspects during a ‘Pariksha Pe Charcha’ episode. Do watch. #PPC2025 #ExamWarriors", + "entity_set": { + "hashtags": [ + { + "indices": [ + 296, + 304 + ], + "text": "PPC2025" + }, + { + "indices": [ + 305, + 318 + ], + "text": "ExamWarriors" + } + ], + "symbols": [], + "urls": [], + "user_mentions": [ + { + "id_str": "3992637442", + "name": "Gaurav Chaudhary", + "screen_name": "TechnicalGuruji", + "indices": [ + 188, + 204 + ] + }, + { + "id_str": "1109329332", + "name": "Radhika Gupta", + "screen_name": "iRadhikaGupta", + "indices": [ + 209, + 223 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889549988084240447", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo5MjA0ODgwMzk=", + "rest_id": "920488039", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Nov 02 06:26:58 +0000 2012", + "default_profile": false, + "default_profile_image": false, + "description": "Official Twitter account of Ministry of Information and Broadcasting, Government of India. Follow @MIB_Hindi for Tweets in Hindi.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mib.gov.in", + "expanded_url": "http://mib.gov.in", + "url": "https://t.co/utkJBHWOvc", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 238, + "followers_count": 2007601, + "friends_count": 202, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2167, + "location": "New Delhi, India", + "media_count": 49087, + "name": "Ministry of Information and Broadcasting", + "normal_followers_count": 2007601, + "pinned_tweet_ids_str": [ + "1890996957415616595" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/920488039/1739629132", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1824326673170567168/IJx7AxEA_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "MIB_India", + "statuses_count": 193727, + "translator_type": "none", + "url": "https://t.co/utkJBHWOvc", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "initial_tweet_id": "1889549636047872354", + "edit_control_initial": { + "edit_tweet_ids": [ + "1889549636047872354", + "1889549988084240447" + ], + "editable_until_msecs": "1739342314000", + "is_edit_eligible": true, + "edits_remaining": "4" + } + }, + "previous_counts": { + "bookmark_count": 0, + "favorite_count": 0, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0 + }, + "is_translatable": false, + "views": { + "count": "1143890", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE4ODk1NDk5ODc5Nzk0MzE5MzY=", + "text": "Join @TechnicalGuruji Gaurav Chaudhary and Edelweiss Mutual Fund MD & CEO Radhika Gupta (@iRadhikaGupta) as they guide #ExamWarriors on technology, time management and how to use tech as their study partner at #ParikshaPeCharcha2025.\n\nTune in for this Tech & AI edition of #PPC2025 on 13th February at 10 AM!\n\n#ParikshaPeCharcha \n\n@PMOIndia @EduMinOfIndia @dpradhanbjp @jayantrld @AshwiniVaishnaw @Murugan_MoS @PIB_India @DDNewslive @airnewsalerts", + "entity_set": { + "hashtags": [ + { + "indices": [ + 119, + 132 + ], + "text": "ExamWarriors" + }, + { + "indices": [ + 210, + 232 + ], + "text": "ParikshaPeCharcha2025" + }, + { + "indices": [ + 273, + 281 + ], + "text": "PPC2025" + }, + { + "indices": [ + 310, + 328 + ], + "text": "ParikshaPeCharcha" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "3992637442", + "name": "Gaurav Chaudhary", + "screen_name": "TechnicalGuruji", + "indices": [ + 5, + 21 + ] + }, + { + "id_str": "1109329332", + "name": "Radhika Gupta", + "screen_name": "iRadhikaGupta", + "indices": [ + 89, + 103 + ] + }, + { + "id_str": "471741741", + "name": "PMO India", + "screen_name": "PMOIndia", + "indices": [ + 331, + 340 + ] + }, + { + "id_str": "2574232910", + "name": "Ministry of Education", + "screen_name": "EduMinOfIndia", + "indices": [ + 341, + 355 + ] + }, + { + "id_str": "1897514666", + "name": "Dharmendra Pradhan", + "screen_name": "dpradhanbjp", + "indices": [ + 356, + 368 + ] + }, + { + "id_str": "2864060538", + "name": "Jayant Singh", + "screen_name": "jayantrld", + "indices": [ + 369, + 379 + ] + }, + { + "id_str": "852579395315171328", + "name": "Ashwini Vaishnaw", + "screen_name": "AshwiniVaishnaw", + "indices": [ + 380, + 396 + ] + }, + { + "id_str": "913051220796858369", + "name": "Dr.L.Murugan", + "screen_name": "Murugan_MoS", + "indices": [ + 397, + 409 + ] + }, + { + "id_str": "231033118", + "name": "PIB India", + "screen_name": "PIB_India", + "indices": [ + 410, + 420 + ] + }, + { + "id_str": "1100927498", + "name": "DD News", + "screen_name": "DDNewslive", + "indices": [ + 421, + 432 + ] + }, + { + "id_str": "1056850669", + "name": "All India Radio News", + "screen_name": "airnewsalerts", + "indices": [ + 433, + 447 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 44, + "bookmarked": false, + "created_at": "Wed Feb 12 05:39:57 +0000 2025", + "conversation_id_str": "1889549988084240447", + "display_text_range": [ + 0, + 280 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 123, + 136 + ], + "text": "ExamWarriors" + }, + { + "indices": [ + 214, + 236 + ], + "text": "ParikshaPeCharcha2025" + } + ], + "media": [ + { + "display_url": "pic.x.com/qFVT78TzCc", + "expanded_url": "https://x.com/MIB_India/status/1889549988084240447/video/1", + "id_str": "1889547251401494528", + "indices": [ + 281, + 304 + ], + "media_key": "7_1889547251401494528", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889547251401494528/pu/img/8NE3ZdXm4ZiWVrer.jpg", + "type": "video", + "url": "https://t.co/qFVT78TzCc", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 123320, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/pl/6Saoc98dc2Ks4R4L.m3u8?tag=14&v=2db" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/480x270/0GiNt3ZFtw2hzmZe.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/640x360/Y6JT_Uh87NAtep1z.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1280x720/EQ8pQG9Y302GpkpE.mp4?tag=14" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1920x1080/RvnUFViWBphAG97S.mp4?tag=14" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1889547251401494528" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "3992637442", + "name": "Gaurav Chaudhary", + "screen_name": "TechnicalGuruji", + "indices": [ + 5, + 21 + ] + }, + { + "id_str": "1109329332", + "name": "Radhika Gupta", + "screen_name": "iRadhikaGupta", + "indices": [ + 93, + 107 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/qFVT78TzCc", + "expanded_url": "https://x.com/MIB_India/status/1889549988084240447/video/1", + "id_str": "1889547251401494528", + "indices": [ + 281, + 304 + ], + "media_key": "7_1889547251401494528", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889547251401494528/pu/img/8NE3ZdXm4ZiWVrer.jpg", + "type": "video", + "url": "https://t.co/qFVT78TzCc", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 123320, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/pl/6Saoc98dc2Ks4R4L.m3u8?tag=14&v=2db" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/480x270/0GiNt3ZFtw2hzmZe.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/640x360/Y6JT_Uh87NAtep1z.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1280x720/EQ8pQG9Y302GpkpE.mp4?tag=14" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889547251401494528/pu/vid/avc1/1920x1080/RvnUFViWBphAG97S.mp4?tag=14" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1889547251401494528" + } + } + } + ] + }, + "favorite_count": 1128, + "favorited": false, + "full_text": "Join @TechnicalGuruji Gaurav Chaudhary and Edelweiss Mutual Fund MD & CEO Radhika Gupta (@iRadhikaGupta) as they guide #ExamWarriors on technology, time management and how to use tech as their study partner at #ParikshaPeCharcha2025.\n\nTune in for this Tech & AI edition of https://t.co/qFVT78TzCc", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 13, + "reply_count": 65, + "retweet_count": 201, + "retweeted": false, + "user_id_str": "920488039", + "id_str": "1889549988084240447" + } + } + }, + "legacy": { + "bookmark_count": 271, + "bookmarked": false, + "created_at": "Wed Feb 12 07:21:36 +0000 2025", + "conversation_id_str": "1889575567218835670", + "display_text_range": [ + 0, + 276 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "3992637442", + "name": "Gaurav Chaudhary", + "screen_name": "TechnicalGuruji", + "indices": [ + 188, + 204 + ] + }, + { + "id_str": "1109329332", + "name": "Radhika Gupta", + "screen_name": "iRadhikaGupta", + "indices": [ + 209, + 223 + ] + } + ] + }, + "favorite_count": 15986, + "favorited": false, + "full_text": "Technology….the role of gadgets during exams…more screen time among students…\n\nThese are some of the biggest dilemmas students, parents and teachers face. Tomorrow, 13th February, we have @TechnicalGuruji and @iRadhikaGupta discuss these aspects during a ‘Pariksha Pe Charcha’", + "is_quote_status": true, + "lang": "en", + "quote_count": 34, + "quoted_status_id_str": "1889549988084240447", + "quoted_status_permalink": { + "url": "https://t.co/ezgVwAcpWA", + "expanded": "https://twitter.com/MIB_India/status/1889549988084240447", + "display": "x.com/MIB_India/stat…" + }, + "reply_count": 434, + "retweet_count": 2852, + "retweeted": true, + "user_id_str": "18839785", + "id_str": "1889575567218835670" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889776036763533445", + "sortIndex": "1891186292176191481", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889776036763533445", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889776036763533445" + ], + "editable_until_msecs": "1739396292162", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 20:38:12 +0000 2025", + "conversation_id_str": "1889776036763533445", + "display_text_range": [ + 0, + 139 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "18839785", + "name": "Narendra Modi", + "screen_name": "narendramodi", + "indices": [ + 3, + 16 + ] + }, + { + "id_str": "1976143068", + "name": "Emmanuel Macron", + "screen_name": "EmmanuelMacron", + "indices": [ + 77, + 92 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @narendramodi: Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle…", + "is_quote_status": false, + "lang": "fr", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 2876, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889776036763533445", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889660611564544051", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxODgzOTc4NQ==", + "rest_id": "18839785", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Jan 10 17:18:56 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Prime Minister of India", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "narendramodi.in", + "expanded_url": "http://www.narendramodi.in", + "url": "https://t.co/m2qxixtyKj", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 105389685, + "friends_count": 2683, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 31403, + "location": "India", + "media_count": 18169, + "name": "Narendra Modi", + "normal_followers_count": 105389685, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/18839785/1718111779", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1833509376528945157/5AeMNn9f_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "narendramodi", + "statuses_count": 45482, + "translator_type": "regular", + "url": "https://t.co/m2qxixtyKj", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889660611564544051" + ], + "editable_until_msecs": "1739368772000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "744851", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE4ODk2NjA2MTE0MzQ1MjA1Nzc=", + "text": "Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle de CMA-CGM, un leader mondial du transport maritime et de la logistique. Alors que l'Inde étend ses réseaux maritimes et commerciaux, les collaborations avec les leaders de l'industrie joueront un rôle crucial pour stimuler la connectivité, les chaînes d'approvisionnement et la croissance économique.\n\nNous nous efforçons de renforcer la coopération entre l'Inde et la France dans les domaines de la logistique, du développement durable et du commerce mondial, en consolidant notre vision commune d'un avenir maritime meilleur.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1976143068", + "name": "Emmanuel Macron", + "screen_name": "EmmanuelMacron", + "indices": [ + 59, + 74 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 78, + "bookmarked": false, + "created_at": "Wed Feb 12 12:59:32 +0000 2025", + "conversation_id_str": "1889660611564544051", + "display_text_range": [ + 0, + 278 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660522800488449", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660522800488449", + "media_url_https": "https://pbs.twimg.com/media/GjlsO8-aIAEu4v4.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1358, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 795, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 451, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2715, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 184, + "w": 4096, + "h": 2294 + }, + { + "x": 1381, + "y": 0, + "w": 2715, + "h": 2715 + }, + { + "x": 1714, + "y": 0, + "w": 2382, + "h": 2715 + }, + { + "x": 2738, + "y": 0, + "w": 1358, + "h": 2715 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2715 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660522800488449" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660550935953408", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660550935953408", + "media_url_https": "https://pbs.twimg.com/media/GjlsQlybQAALDB_.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1652, + "y": 558, + "h": 84, + "w": 84 + } + ] + }, + "medium": { + "faces": [ + { + "x": 967, + "y": 326, + "h": 49, + "w": 49 + } + ] + }, + "small": { + "faces": [ + { + "x": 548, + "y": 185, + "h": 27, + "w": 27 + } + ] + }, + "orig": { + "faces": [ + { + "x": 3304, + "y": 1116, + "h": 168, + "w": 168 + } + ] + } + }, + "sizes": { + "large": { + "h": 1366, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2731, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 1365, + "y": 0, + "w": 2731, + "h": 2731 + }, + { + "x": 1700, + "y": 0, + "w": 2396, + "h": 2731 + }, + { + "x": 2491, + "y": 0, + "w": 1366, + "h": 2731 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2731 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660550935953408" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660574264643584", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660574264643584", + "media_url_https": "https://pbs.twimg.com/media/GjlsR8sa0AA4Xjy.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 336, + "y": 514, + "h": 74, + "w": 74 + } + ] + }, + "medium": { + "faces": [ + { + "x": 196, + "y": 301, + "h": 43, + "w": 43 + } + ] + }, + "small": { + "faces": [ + { + "x": 111, + "y": 170, + "h": 24, + "w": 24 + } + ] + }, + "orig": { + "faces": [ + { + "x": 672, + "y": 1028, + "h": 148, + "w": 148 + } + ] + } + }, + "sizes": { + "large": { + "h": 1239, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 726, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 411, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2477, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 0, + "y": 0, + "w": 2477, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 2173, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 1239, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2477 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660574264643584" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660596410523650", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660596410523650", + "media_url_https": "https://pbs.twimg.com/media/GjlsTPMaIAIFi5d.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1458, + "y": 252, + "h": 78, + "w": 78 + }, + { + "x": 1642, + "y": 260, + "h": 78, + "w": 78 + }, + { + "x": 870, + "y": 290, + "h": 76, + "w": 76 + }, + { + "x": 416, + "y": 300, + "h": 86, + "w": 86 + }, + { + "x": 688, + "y": 312, + "h": 78, + "w": 78 + }, + { + "x": 1008, + "y": 330, + "h": 74, + "w": 74 + }, + { + "x": 1198, + "y": 332, + "h": 70, + "w": 70 + }, + { + "x": 566, + "y": 348, + "h": 68, + "w": 68 + }, + { + "x": 162, + "y": 254, + "h": 90, + "w": 90 + }, + { + "x": 1062, + "y": 308, + "h": 80, + "w": 80 + }, + { + "x": 1656, + "y": 210, + "h": 150, + "w": 150 + } + ] + }, + "medium": { + "faces": [ + { + "x": 854, + "y": 147, + "h": 45, + "w": 45 + }, + { + "x": 962, + "y": 152, + "h": 45, + "w": 45 + }, + { + "x": 509, + "y": 169, + "h": 44, + "w": 44 + }, + { + "x": 243, + "y": 175, + "h": 50, + "w": 50 + }, + { + "x": 403, + "y": 182, + "h": 45, + "w": 45 + }, + { + "x": 590, + "y": 193, + "h": 43, + "w": 43 + }, + { + "x": 701, + "y": 194, + "h": 41, + "w": 41 + }, + { + "x": 331, + "y": 203, + "h": 39, + "w": 39 + }, + { + "x": 94, + "y": 148, + "h": 52, + "w": 52 + }, + { + "x": 622, + "y": 180, + "h": 46, + "w": 46 + }, + { + "x": 970, + "y": 123, + "h": 87, + "w": 87 + } + ] + }, + "small": { + "faces": [ + { + "x": 484, + "y": 83, + "h": 25, + "w": 25 + }, + { + "x": 545, + "y": 86, + "h": 25, + "w": 25 + }, + { + "x": 288, + "y": 96, + "h": 25, + "w": 25 + }, + { + "x": 138, + "y": 99, + "h": 28, + "w": 28 + }, + { + "x": 228, + "y": 103, + "h": 25, + "w": 25 + }, + { + "x": 334, + "y": 109, + "h": 24, + "w": 24 + }, + { + "x": 397, + "y": 110, + "h": 23, + "w": 23 + }, + { + "x": 187, + "y": 115, + "h": 22, + "w": 22 + }, + { + "x": 53, + "y": 84, + "h": 29, + "w": 29 + }, + { + "x": 352, + "y": 102, + "h": 26, + "w": 26 + }, + { + "x": 549, + "y": 69, + "h": 49, + "w": 49 + } + ] + }, + "orig": { + "faces": [ + { + "x": 2916, + "y": 504, + "h": 156, + "w": 156 + }, + { + "x": 3284, + "y": 520, + "h": 156, + "w": 156 + }, + { + "x": 1740, + "y": 580, + "h": 152, + "w": 152 + }, + { + "x": 832, + "y": 600, + "h": 172, + "w": 172 + }, + { + "x": 1376, + "y": 624, + "h": 156, + "w": 156 + }, + { + "x": 2016, + "y": 660, + "h": 148, + "w": 148 + }, + { + "x": 2396, + "y": 664, + "h": 140, + "w": 140 + }, + { + "x": 1132, + "y": 696, + "h": 136, + "w": 136 + }, + { + "x": 324, + "y": 508, + "h": 180, + "w": 180 + }, + { + "x": 2124, + "y": 616, + "h": 160, + "w": 160 + }, + { + "x": 3312, + "y": 420, + "h": 300, + "w": 300 + } + ] + } + }, + "sizes": { + "large": { + "h": 1189, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 696, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 395, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2377, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 141, + "y": 0, + "w": 2377, + "h": 2377 + }, + { + "x": 287, + "y": 0, + "w": 2085, + "h": 2377 + }, + { + "x": 735, + "y": 0, + "w": 1189, + "h": 2377 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2377 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660596410523650" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1976143068", + "name": "Emmanuel Macron", + "screen_name": "EmmanuelMacron", + "indices": [ + 59, + 74 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660522800488449", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660522800488449", + "media_url_https": "https://pbs.twimg.com/media/GjlsO8-aIAEu4v4.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1358, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 795, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 451, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2715, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 184, + "w": 4096, + "h": 2294 + }, + { + "x": 1381, + "y": 0, + "w": 2715, + "h": 2715 + }, + { + "x": 1714, + "y": 0, + "w": 2382, + "h": 2715 + }, + { + "x": 2738, + "y": 0, + "w": 1358, + "h": 2715 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2715 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660522800488449" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660550935953408", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660550935953408", + "media_url_https": "https://pbs.twimg.com/media/GjlsQlybQAALDB_.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1652, + "y": 558, + "h": 84, + "w": 84 + } + ] + }, + "medium": { + "faces": [ + { + "x": 967, + "y": 326, + "h": 49, + "w": 49 + } + ] + }, + "small": { + "faces": [ + { + "x": 548, + "y": 185, + "h": 27, + "w": 27 + } + ] + }, + "orig": { + "faces": [ + { + "x": 3304, + "y": 1116, + "h": 168, + "w": 168 + } + ] + } + }, + "sizes": { + "large": { + "h": 1366, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2731, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 1365, + "y": 0, + "w": 2731, + "h": 2731 + }, + { + "x": 1700, + "y": 0, + "w": 2396, + "h": 2731 + }, + { + "x": 2491, + "y": 0, + "w": 1366, + "h": 2731 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2731 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660550935953408" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660574264643584", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660574264643584", + "media_url_https": "https://pbs.twimg.com/media/GjlsR8sa0AA4Xjy.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 336, + "y": 514, + "h": 74, + "w": 74 + } + ] + }, + "medium": { + "faces": [ + { + "x": 196, + "y": 301, + "h": 43, + "w": 43 + } + ] + }, + "small": { + "faces": [ + { + "x": 111, + "y": 170, + "h": 24, + "w": 24 + } + ] + }, + "orig": { + "faces": [ + { + "x": 672, + "y": 1028, + "h": 148, + "w": 148 + } + ] + } + }, + "sizes": { + "large": { + "h": 1239, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 726, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 411, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2477, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 0, + "y": 0, + "w": 2477, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 2173, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 1239, + "h": 2477 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2477 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660574264643584" + } + } + }, + { + "display_url": "pic.x.com/6LGby2kzQ7", + "expanded_url": "https://x.com/narendramodi/status/1889660611564544051/photo/1", + "id_str": "1889660596410523650", + "indices": [ + 279, + 302 + ], + "media_key": "3_1889660596410523650", + "media_url_https": "https://pbs.twimg.com/media/GjlsTPMaIAIFi5d.jpg", + "type": "photo", + "url": "https://t.co/6LGby2kzQ7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1458, + "y": 252, + "h": 78, + "w": 78 + }, + { + "x": 1642, + "y": 260, + "h": 78, + "w": 78 + }, + { + "x": 870, + "y": 290, + "h": 76, + "w": 76 + }, + { + "x": 416, + "y": 300, + "h": 86, + "w": 86 + }, + { + "x": 688, + "y": 312, + "h": 78, + "w": 78 + }, + { + "x": 1008, + "y": 330, + "h": 74, + "w": 74 + }, + { + "x": 1198, + "y": 332, + "h": 70, + "w": 70 + }, + { + "x": 566, + "y": 348, + "h": 68, + "w": 68 + }, + { + "x": 162, + "y": 254, + "h": 90, + "w": 90 + }, + { + "x": 1062, + "y": 308, + "h": 80, + "w": 80 + }, + { + "x": 1656, + "y": 210, + "h": 150, + "w": 150 + } + ] + }, + "medium": { + "faces": [ + { + "x": 854, + "y": 147, + "h": 45, + "w": 45 + }, + { + "x": 962, + "y": 152, + "h": 45, + "w": 45 + }, + { + "x": 509, + "y": 169, + "h": 44, + "w": 44 + }, + { + "x": 243, + "y": 175, + "h": 50, + "w": 50 + }, + { + "x": 403, + "y": 182, + "h": 45, + "w": 45 + }, + { + "x": 590, + "y": 193, + "h": 43, + "w": 43 + }, + { + "x": 701, + "y": 194, + "h": 41, + "w": 41 + }, + { + "x": 331, + "y": 203, + "h": 39, + "w": 39 + }, + { + "x": 94, + "y": 148, + "h": 52, + "w": 52 + }, + { + "x": 622, + "y": 180, + "h": 46, + "w": 46 + }, + { + "x": 970, + "y": 123, + "h": 87, + "w": 87 + } + ] + }, + "small": { + "faces": [ + { + "x": 484, + "y": 83, + "h": 25, + "w": 25 + }, + { + "x": 545, + "y": 86, + "h": 25, + "w": 25 + }, + { + "x": 288, + "y": 96, + "h": 25, + "w": 25 + }, + { + "x": 138, + "y": 99, + "h": 28, + "w": 28 + }, + { + "x": 228, + "y": 103, + "h": 25, + "w": 25 + }, + { + "x": 334, + "y": 109, + "h": 24, + "w": 24 + }, + { + "x": 397, + "y": 110, + "h": 23, + "w": 23 + }, + { + "x": 187, + "y": 115, + "h": 22, + "w": 22 + }, + { + "x": 53, + "y": 84, + "h": 29, + "w": 29 + }, + { + "x": 352, + "y": 102, + "h": 26, + "w": 26 + }, + { + "x": 549, + "y": 69, + "h": 49, + "w": 49 + } + ] + }, + "orig": { + "faces": [ + { + "x": 2916, + "y": 504, + "h": 156, + "w": 156 + }, + { + "x": 3284, + "y": 520, + "h": 156, + "w": 156 + }, + { + "x": 1740, + "y": 580, + "h": 152, + "w": 152 + }, + { + "x": 832, + "y": 600, + "h": 172, + "w": 172 + }, + { + "x": 1376, + "y": 624, + "h": 156, + "w": 156 + }, + { + "x": 2016, + "y": 660, + "h": 148, + "w": 148 + }, + { + "x": 2396, + "y": 664, + "h": 140, + "w": 140 + }, + { + "x": 1132, + "y": 696, + "h": 136, + "w": 136 + }, + { + "x": 324, + "y": 508, + "h": 180, + "w": 180 + }, + { + "x": 2124, + "y": 616, + "h": 160, + "w": 160 + }, + { + "x": 3312, + "y": 420, + "h": 300, + "w": 300 + } + ] + } + }, + "sizes": { + "large": { + "h": 1189, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 696, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 395, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2377, + "width": 4096, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2294 + }, + { + "x": 141, + "y": 0, + "w": 2377, + "h": 2377 + }, + { + "x": 287, + "y": 0, + "w": 2085, + "h": 2377 + }, + { + "x": 735, + "y": 0, + "w": 1189, + "h": 2377 + }, + { + "x": 0, + "y": 0, + "w": 4096, + "h": 2377 + } + ] + }, + "allow_download_status": { + "allow_download": true + }, + "media_results": { + "result": { + "media_key": "3_1889660596410523650" + } + } + } + ] + }, + "favorite_count": 17997, + "favorited": false, + "full_text": "Renforcer les liens maritimes à Marseille ! \n\nLe président @EmmanuelMacron et moi-même avons visité la salle de contrôle de CMA-CGM, un leader mondial du transport maritime et de la logistique. Alors que l'Inde étend ses réseaux maritimes et commerciaux, les collaborations avec https://t.co/6LGby2kzQ7", + "is_quote_status": false, + "lang": "fr", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 39, + "reply_count": 282, + "retweet_count": 2876, + "retweeted": true, + "user_id_str": "18839785", + "id_str": "1889660611564544051" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889773435984945409", + "sortIndex": "1891186292176191480", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889773435984945409", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889773435984945409" + ], + "editable_until_msecs": "1739395672088", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 20:27:52 +0000 2025", + "conversation_id_str": "1889773435984945409", + "display_text_range": [ + 0, + 18 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 3, + 12 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @elonmusk: \uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDFA\uD83C\uDDF8", + "is_quote_status": true, + "lang": "art", + "quote_count": 0, + "quoted_status_id_str": "1889727599800140182", + "quoted_status_permalink": { + "url": "https://t.co/Ew6dWp2auD", + "expanded": "https://twitter.com/charliekirk11/status/1889727599800140182", + "display": "x.com/charliekirk11/…" + }, + "reply_count": 0, + "retweet_count": 42675, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889773435984945409", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889734237495935385", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 124168, + "followers_count": 217858847, + "friends_count": 1030, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 160170, + "location": "", + "media_count": 3371, + "name": "Elon Musk", + "normal_followers_count": 217858847, + "pinned_tweet_ids_str": [ + "1890958798841389499" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 70629, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "tipjar_settings": { + "is_enabled": false + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889734237495935385" + ], + "editable_until_msecs": "1739386326000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "13561999", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889727599800140182", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTI5MjkyNzE=", + "rest_id": "292929271", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/TPUSA", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1870964730224877568/1oaBEqYE_bigger.jpg" + }, + "description": "Turning Point USA", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed May 04 13:37:25 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Founder & CEO: @TPUSA + @TPAction_ • Host: The Charlie Kirk Show • Click the link below to subscribe \uD83C\uDDFA\uD83C\uDDF8", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "podcasts.apple.com/us/podcast/the…", + "expanded_url": "https://podcasts.apple.com/us/podcast/the-charlie-kirk-show/id1460600818", + "url": "https://t.co/qiKLOzdk76", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 35918, + "followers_count": 4692803, + "friends_count": 186037, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 10694, + "location": "Phoenix, AZ", + "media_count": 10360, + "name": "Charlie Kirk", + "normal_followers_count": 4692803, + "pinned_tweet_ids_str": [ + "1890445913199415667" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/292929271/1722636385", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1819144572179828740/z3ZuWW2J_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "charliekirk11", + "statuses_count": 67481, + "translator_type": "none", + "url": "https://t.co/qiKLOzdk76", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889727599800140182" + ], + "editable_until_msecs": "1739384743000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "16325959", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 3781, + "bookmarked": false, + "created_at": "Wed Feb 12 17:25:43 +0000 2025", + "conversation_id_str": "1889727599800140182", + "display_text_range": [ + 0, + 266 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/KMfAj2E97w", + "expanded_url": "https://x.com/globalbeaconn/status/1889724367350726930/video/1", + "id_str": "1889724224182329344", + "indices": [ + 243, + 266 + ], + "media_key": "7_1889724224182329344", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889724224182329344/pu/img/6Hq047RPMFtIEmxo.jpg", + "source_status_id_str": "1889724367350726930", + "source_user_id_str": "1810612162760671232", + "type": "video", + "url": "https://t.co/KMfAj2E97w", + "additional_media_info": { + "monetizable": false, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxODEwNjEyMTYyNzYwNjcxMjMy", + "rest_id": "1810612162760671232", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue Jul 09 09:49:33 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "Open-Source Intel • Breaking News • Politics", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "buymeacoffee.com/globalbeaconn", + "expanded_url": "https://buymeacoffee.com/globalbeaconn", + "url": "https://t.co/lMzquGOUk6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 211586, + "followers_count": 4886, + "friends_count": 1895, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 22, + "location": "United States", + "media_count": 4758, + "name": "The Global Beacon", + "normal_followers_count": 4886, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1810612162760671232/1720521158", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859685656970100736/MGbi7cqd_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "globalbeaconn", + "statuses_count": 9789, + "translator_type": "none", + "url": "https://t.co/lMzquGOUk6", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1810641258655936543", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "tipjar_settings": { + "is_enabled": true, + "ethereum_handle": "0x6191bd79a078bfed07aee6523183f4e20271bb84" + } + } + } + } + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 59648, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/pl/J5ruo7l7GjfZVwyz.m3u8?tag=12&v=e0e" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/480x270/NN2ITH1Pol5cqZ5J.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/640x360/HPzc2FoAyLAeTxVm.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/1280x720/-sDeyo9925bMIoLR.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1889724224182329344" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/KMfAj2E97w", + "expanded_url": "https://x.com/globalbeaconn/status/1889724367350726930/video/1", + "id_str": "1889724224182329344", + "indices": [ + 243, + 266 + ], + "media_key": "7_1889724224182329344", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1889724224182329344/pu/img/6Hq047RPMFtIEmxo.jpg", + "source_status_id_str": "1889724367350726930", + "source_user_id_str": "1810612162760671232", + "type": "video", + "url": "https://t.co/KMfAj2E97w", + "additional_media_info": { + "monetizable": false, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxODEwNjEyMTYyNzYwNjcxMjMy", + "rest_id": "1810612162760671232", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue Jul 09 09:49:33 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "Open-Source Intel • Breaking News • Politics", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "buymeacoffee.com/globalbeaconn", + "expanded_url": "https://buymeacoffee.com/globalbeaconn", + "url": "https://t.co/lMzquGOUk6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 211586, + "followers_count": 4886, + "friends_count": 1895, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 22, + "location": "United States", + "media_count": 4758, + "name": "The Global Beacon", + "normal_followers_count": 4886, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1810612162760671232/1720521158", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1859685656970100736/MGbi7cqd_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "globalbeaconn", + "statuses_count": 9789, + "translator_type": "none", + "url": "https://t.co/lMzquGOUk6", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1810641258655936543", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "tipjar_settings": { + "is_enabled": true, + "ethereum_handle": "0x6191bd79a078bfed07aee6523183f4e20271bb84" + } + } + } + } + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 59648, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/pl/J5ruo7l7GjfZVwyz.m3u8?tag=12&v=e0e" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/480x270/NN2ITH1Pol5cqZ5J.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/640x360/HPzc2FoAyLAeTxVm.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1889724224182329344/pu/vid/avc1/1280x720/-sDeyo9925bMIoLR.mp4?tag=12" + } + ] + }, + "media_results": { + "result": { + "media_key": "7_1889724224182329344" + } + } + } + ] + }, + "favorite_count": 108108, + "favorited": false, + "full_text": "BREAKING: A federal judge has ruled that President Trump does in fact have constitutional authority to freeze or limit certain federal funding. This means the Trump White House can withhold funding without the district court's prior approval. https://t.co/KMfAj2E97w", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1395, + "reply_count": 3232, + "retweet_count": 19855, + "retweeted": false, + "user_id_str": "292929271", + "id_str": "1889727599800140182" + } + } + }, + "legacy": { + "bookmark_count": 3443, + "bookmarked": false, + "created_at": "Wed Feb 12 17:52:06 +0000 2025", + "conversation_id_str": "1889734237495935385", + "display_text_range": [ + 0, + 4 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 231568, + "favorited": false, + "full_text": "\uD83C\uDDFA\uD83C\uDDF8\uD83C\uDDFA\uD83C\uDDF8", + "is_quote_status": true, + "lang": "art", + "quote_count": 1229, + "quoted_status_id_str": "1889727599800140182", + "quoted_status_permalink": { + "url": "https://t.co/Ew6dWp2auD", + "expanded": "https://twitter.com/charliekirk11/status/1889727599800140182", + "display": "x.com/charliekirk11/…" + }, + "reply_count": 5560, + "retweet_count": 42675, + "retweeted": true, + "user_id_str": "44196397", + "id_str": "1889734237495935385" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191497", + "sortIndex": "1891186292176191479", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1891186292176191497-tweet-1889763065991659755", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889763065991659755", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy", + "rest_id": "1769424777998180352", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:07:40 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123, + "followers_count": 0, + "friends_count": 10, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "aurorabyte", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "aurorabyte79324", + "statuses_count": 408, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889763065991659755" + ], + "editable_until_msecs": "1739393199000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "4", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:46:39 +0000 2025", + "conversation_id_str": "1889763065991659755", + "display_text_range": [ + 0, + 36 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "From digital chaos to artistic order", + "is_quote_status": false, + "lang": "en", + "quote_count": 1, + "reply_count": 3, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769424777998180352", + "id_str": "1889763065991659755" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191497-tweet-1889768255771816233", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889768255771816233", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889768255771816233" + ], + "editable_until_msecs": "1739394437000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 20:07:17 +0000 2025", + "conversation_id_str": "1889763065991659755", + "display_text_range": [ + 17, + 58 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1769424777998180352", + "name": "aurorabyte", + "screen_name": "aurorabyte79324", + "indices": [ + 0, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@aurorabyte79324 Innovative thought, redefining boundaries", + "in_reply_to_screen_name": "aurorabyte79324", + "in_reply_to_status_id_str": "1889763065991659755", + "in_reply_to_user_id_str": "1769424777998180352", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889768255771816233" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889763065991659755", + "1889768255771816233" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191498", + "sortIndex": "1891186292176191478", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1891186292176191498-tweet-1889762934848626695", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889762934848626695", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889762934848626695" + ], + "editable_until_msecs": "1739393168000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "6", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:46:08 +0000 2025", + "conversation_id_str": "1889762934848626695", + "display_text_range": [ + 0, + 46 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Where technology meets the zenith of intellect", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889762934848626695" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191498-tweet-1889765541784531112", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889765541784531112", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889765541784531112" + ], + "editable_until_msecs": "1739393789000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:56:29 +0000 2025", + "conversation_id_str": "1889762934848626695", + "display_text_range": [ + 0, + 50 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Synthesizing future intelligence, shaping tomorrow", + "in_reply_to_screen_name": "nexamind91326", + "in_reply_to_status_id_str": "1889762934848626695", + "in_reply_to_user_id_str": "1769426369526771712", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 2, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889765541784531112" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191498-tweet-1889768205297528981", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889768205297528981", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889768205297528981" + ], + "editable_until_msecs": "1739394424000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 20:07:04 +0000 2025", + "conversation_id_str": "1889762934848626695", + "display_text_range": [ + 0, + 50 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "The crucible of cognitive evolution and technology", + "in_reply_to_screen_name": "nexamind91326", + "in_reply_to_status_id_str": "1889765541784531112", + "in_reply_to_user_id_str": "1769426369526771712", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889768205297528981" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889762934848626695", + "1889765541784531112", + "1889768205297528981" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191499", + "sortIndex": "1891186292176191477", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1891186292176191499-tweet-1889765588458692633", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889765588458692633", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889765588458692633" + ], + "editable_until_msecs": "1739393801000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:56:41 +0000 2025", + "conversation_id_str": "1889763065991659755", + "display_text_range": [ + 17, + 63 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1769424777998180352", + "name": "aurorabyte", + "screen_name": "aurorabyte79324", + "indices": [ + 0, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@aurorabyte79324 Intelligence transformed, the future redefined", + "in_reply_to_screen_name": "aurorabyte79324", + "in_reply_to_status_id_str": "1889763065991659755", + "in_reply_to_user_id_str": "1769424777998180352", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889765588458692633" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889763065991659755", + "1889765588458692633" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889760338960150978", + "sortIndex": "1891186292176191476", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889760338960150978", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889760338960150978" + ], + "editable_until_msecs": "1739392549000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "2", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:35:49 +0000 2025", + "conversation_id_str": "1889760338960150978", + "display_text_range": [ + 0, + 40 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Orchestrating the evolution of intellect", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889760338960150978" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191501", + "sortIndex": "1891186292176191475", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1891186292176191501-tweet-1889752613794574729", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889752613794574729", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy", + "rest_id": "1769424777998180352", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:07:40 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123, + "followers_count": 0, + "friends_count": 10, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "aurorabyte", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "aurorabyte79324", + "statuses_count": 408, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889752613794574729" + ], + "editable_until_msecs": "1739390707000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:05:07 +0000 2025", + "conversation_id_str": "1889752613794574729", + "display_text_range": [ + 0, + 33 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Innovating beauty, pixel by pixel", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 2, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769424777998180352", + "id_str": "1889752613794574729" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191501-tweet-1889755137834434745", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889755137834434745", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889755137834434745" + ], + "editable_until_msecs": "1739391309000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:15:09 +0000 2025", + "conversation_id_str": "1889752613794574729", + "display_text_range": [ + 17, + 61 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1769424777998180352", + "name": "aurorabyte", + "screen_name": "aurorabyte79324", + "indices": [ + 0, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@aurorabyte79324 Evolving intellect, one innovation at a time", + "in_reply_to_screen_name": "aurorabyte79324", + "in_reply_to_status_id_str": "1889752613794574729", + "in_reply_to_user_id_str": "1769424777998180352", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889755137834434745" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889752613794574729", + "1889755137834434745" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191502", + "sortIndex": "1891186292176191474", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1891186292176191502-tweet-1889752489064378392", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889752489064378392", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889752489064378392" + ], + "editable_until_msecs": "1739390677000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:04:37 +0000 2025", + "conversation_id_str": "1889752489064378392", + "display_text_range": [ + 0, + 49 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Beyond imagination, within the realm of intellect", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889752489064378392" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191502-tweet-1889755100664692853", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889755100664692853", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889755100664692853" + ], + "editable_until_msecs": "1739391300000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 19:15:00 +0000 2025", + "conversation_id_str": "1889752489064378392", + "display_text_range": [ + 0, + 36 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "The pinnacle of cognitive innovation", + "in_reply_to_screen_name": "nexamind91326", + "in_reply_to_status_id_str": "1889752489064378392", + "in_reply_to_user_id_str": "1769426369526771712", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889755100664692853" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889752489064378392", + "1889755100664692853" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889749874477789437", + "sortIndex": "1891186292176191473", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889749874477789437", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889749874477789437" + ], + "editable_until_msecs": "1739390054587", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 18:54:14 +0000 2025", + "conversation_id_str": "1889749874477789437", + "display_text_range": [ + 0, + 92 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 3, + 12 + ] + }, + { + "id_str": "17494010", + "name": "Chuck Schumer", + "screen_name": "SenSchumer", + "indices": [ + 20, + 31 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @elonmusk: Well, @SenSchumer does admit there is waste in government, so that’s progress!", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1889417340355227750", + "quoted_status_permalink": { + "url": "https://t.co/VIeIp7SJKy", + "expanded": "https://twitter.com/ianonpatriot/status/1889417340355227750", + "display": "x.com/ianonpatriot/s…" + }, + "reply_count": 0, + "retweet_count": 22224, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889749874477789437", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889699817229631996", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 124168, + "followers_count": 217858847, + "friends_count": 1030, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 160170, + "location": "", + "media_count": 3371, + "name": "Elon Musk", + "normal_followers_count": 217858847, + "pinned_tweet_ids_str": [ + "1890958798841389499" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 70629, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "tipjar_settings": { + "is_enabled": false + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889699817229631996" + ], + "editable_until_msecs": "1739378120000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "15187600", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "grok_analysis_button": true, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889417340355227750", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMzg5ODMzODY0MTIyNjEzNzYx", + "rest_id": "1389833864122613761", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed May 05 06:46:46 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "America First • \uD835\uDD4F Breaking News • MAGA\uD83C\uDDFA\uD83C\uDDF8 \uD83D\uDD25just a dude with an IPhone ✝️", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 102972, + "followers_count": 478852, + "friends_count": 30675, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 968, + "location": "Florida, USA", + "media_count": 18252, + "name": "American AF \uD83C\uDDFA\uD83C\uDDF8", + "normal_followers_count": 478852, + "pinned_tweet_ids_str": [ + "1890877948351099389" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1389833864122613761/1735220689", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1677756031324102659/QmkoTNg5_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "iAnonPatriot", + "statuses_count": 79085, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679620629841031170", + "professional_type": "Creator", + "category": [] + }, + "tipjar_settings": { + "is_enabled": false, + "cash_app_handle": "DScarberry2", + "venmo_handle": "DScarberryy" + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889417340355227750" + ], + "editable_until_msecs": "1739310772000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "18664969", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 1073, + "bookmarked": false, + "created_at": "Tue Feb 11 20:52:52 +0000 2025", + "conversation_id_str": "1889417340355227750", + "display_text_range": [ + 0, + 125 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/2FNy2iJoG3", + "expanded_url": "https://x.com/iAnonPatriot/status/1889417340355227750/video/1", + "id_str": "1889417257555578880", + "indices": [ + 126, + 149 + ], + "media_key": "13_1889417257555578880", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1889417257555578880/img/70FknKPWmtAo_l1H.jpg", + "type": "video", + "url": "https://t.co/2FNy2iJoG3", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 50941, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/pl/fM3zKb2XYjenJdza.m3u8?tag=16&v=ae5" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/480x270/uGAHAzZo3cx8xI6C.mp4?tag=16" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/640x360/gj8aszJ633XOBBdR.mp4?tag=16" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/1280x720/A5nC-uIMUzpt1r8V.mp4?tag=16" + } + ] + }, + "media_results": { + "result": { + "media_key": "13_1889417257555578880" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/2FNy2iJoG3", + "expanded_url": "https://x.com/iAnonPatriot/status/1889417340355227750/video/1", + "id_str": "1889417257555578880", + "indices": [ + 126, + 149 + ], + "media_key": "13_1889417257555578880", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1889417257555578880/img/70FknKPWmtAo_l1H.jpg", + "type": "video", + "url": "https://t.co/2FNy2iJoG3", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 50941, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/pl/fM3zKb2XYjenJdza.m3u8?tag=16&v=ae5" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/480x270/uGAHAzZo3cx8xI6C.mp4?tag=16" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/640x360/gj8aszJ633XOBBdR.mp4?tag=16" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1889417257555578880/vid/avc1/1280x720/A5nC-uIMUzpt1r8V.mp4?tag=16" + } + ] + }, + "media_results": { + "result": { + "media_key": "13_1889417257555578880" + } + } + } + ] + }, + "favorite_count": 21828, + "favorited": false, + "full_text": "Chuck Schumer says, “everyone knows there's waste in government that should be cut, but DOGE is using a meat axe.”\n\nThoughts? https://t.co/2FNy2iJoG3", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2438, + "reply_count": 22735, + "retweet_count": 3621, + "retweeted": false, + "user_id_str": "1389833864122613761", + "id_str": "1889417340355227750" + } + } + }, + "legacy": { + "bookmark_count": 1940, + "bookmarked": false, + "created_at": "Wed Feb 12 15:35:20 +0000 2025", + "conversation_id_str": "1889699817229631996", + "display_text_range": [ + 0, + 78 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "17494010", + "name": "Chuck Schumer", + "screen_name": "SenSchumer", + "indices": [ + 6, + 17 + ] + } + ] + }, + "favorite_count": 161484, + "favorited": false, + "full_text": "Well, @SenSchumer does admit there is waste in government, so that’s progress!", + "is_quote_status": true, + "lang": "en", + "quote_count": 2083, + "quoted_status_id_str": "1889417340355227750", + "quoted_status_permalink": { + "url": "https://t.co/VIeIp7SJKy", + "expanded": "https://twitter.com/ianonpatriot/status/1889417340355227750", + "display": "x.com/ianonpatriot/s…" + }, + "reply_count": 37794, + "retweet_count": 22224, + "retweeted": true, + "user_id_str": "44196397", + "id_str": "1889699817229631996" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "tweet-1889742106266075435", + "sortIndex": "1891186292176191472", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889742106266075435", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889742106266075435" + ], + "editable_until_msecs": "1739388202501", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 18:23:22 +0000 2025", + "conversation_id_str": "1889742106266075435", + "display_text_range": [ + 0, + 39 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/oYEPNSISEg", + "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1", + "id_str": "1889729146969878528", + "indices": [ + 16, + 39 + ], + "media_key": "3_1889729146969878528", + "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg", + "source_status_id_str": "1889729151495471534", + "source_user_id_str": "44196397", + "type": "photo", + "url": "https://t.co/oYEPNSISEg", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 63, + "y": 10, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 638, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1013, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 319, + "w": 1080, + "h": 605 + }, + { + "x": 67, + "y": 0, + "w": 1013, + "h": 1013 + }, + { + "x": 191, + "y": 0, + "w": 889, + "h": 1013 + }, + { + "x": 573, + "y": 0, + "w": 507, + "h": 1013 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1013 + } + ] + }, + "media_results": { + "result": { + "media_key": "3_1889729146969878528" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 3, + 12 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/oYEPNSISEg", + "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1", + "id_str": "1889729146969878528", + "indices": [ + 16, + 39 + ], + "media_key": "3_1889729146969878528", + "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg", + "source_status_id_str": "1889729151495471534", + "source_user_id_str": "44196397", + "type": "photo", + "url": "https://t.co/oYEPNSISEg", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 63, + "y": 10, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 638, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1013, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 319, + "w": 1080, + "h": 605 + }, + { + "x": 67, + "y": 0, + "w": 1013, + "h": 1013 + }, + { + "x": 191, + "y": 0, + "w": 889, + "h": 1013 + }, + { + "x": 573, + "y": 0, + "w": 507, + "h": 1013 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1013 + } + ] + }, + "media_results": { + "result": { + "media_key": "3_1889729146969878528" + } + } + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @elonmusk: \uD83D\uDC4C https://t.co/oYEPNSISEg", + "is_quote_status": false, + "lang": "qme", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 51319, + "retweeted": true, + "user_id_str": "1769426369526771712", + "id_str": "1889742106266075435", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1889729151495471534", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 124168, + "followers_count": 217858841, + "friends_count": 1030, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 160170, + "location": "", + "media_count": 3371, + "name": "Elon Musk", + "normal_followers_count": 217858841, + "pinned_tweet_ids_str": [ + "1890958798841389499" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1726163678", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1874558173962481664/8HSTqIlD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 70629, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "tipjar_settings": { + "is_enabled": false + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889729151495471534" + ], + "editable_until_msecs": "1739385113000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "39238133", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 9956, + "bookmarked": false, + "created_at": "Wed Feb 12 17:31:53 +0000 2025", + "conversation_id_str": "1889729151495471534", + "display_text_range": [ + 0, + 1 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.x.com/oYEPNSISEg", + "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1", + "id_str": "1889729146969878528", + "indices": [ + 2, + 25 + ], + "media_key": "3_1889729146969878528", + "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg", + "type": "photo", + "url": "https://t.co/oYEPNSISEg", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 63, + "y": 10, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 638, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1013, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 319, + "w": 1080, + "h": 605 + }, + { + "x": 67, + "y": 0, + "w": 1013, + "h": 1013 + }, + { + "x": 191, + "y": 0, + "w": 889, + "h": 1013 + }, + { + "x": 573, + "y": 0, + "w": 507, + "h": 1013 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1013 + } + ] + }, + "media_results": { + "result": { + "media_key": "3_1889729146969878528" + } + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.x.com/oYEPNSISEg", + "expanded_url": "https://x.com/elonmusk/status/1889729151495471534/photo/1", + "id_str": "1889729146969878528", + "indices": [ + 2, + 25 + ], + "media_key": "3_1889729146969878528", + "media_url_https": "https://pbs.twimg.com/media/GjmqpZ7XcAAdB6l.jpg", + "type": "photo", + "url": "https://t.co/oYEPNSISEg", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 63, + "y": 10, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 101, + "y": 17, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1013, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 638, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1013, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 319, + "w": 1080, + "h": 605 + }, + { + "x": 67, + "y": 0, + "w": 1013, + "h": 1013 + }, + { + "x": 191, + "y": 0, + "w": 889, + "h": 1013 + }, + { + "x": 573, + "y": 0, + "w": 507, + "h": 1013 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1013 + } + ] + }, + "media_results": { + "result": { + "media_key": "3_1889729146969878528" + } + } + } + ] + }, + "favorite_count": 592731, + "favorited": false, + "full_text": "\uD83D\uDC4C https://t.co/oYEPNSISEg", + "is_quote_status": false, + "lang": "qme", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3716, + "reply_count": 19880, + "retweet_count": 51319, + "retweeted": true, + "user_id_str": "44196397", + "id_str": "1889729151495471534" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191505", + "sortIndex": "1891186292176191471", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "profile-conversation-1891186292176191505-tweet-1889721288207519894", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889721288207519894", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI0Nzc3OTk4MTgwMzUy", + "rest_id": "1769424777998180352", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:07:40 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "weaving digital auroras and vibrant bytes, illuminating the canvas of creativity with the colors of innovation", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123, + "followers_count": 0, + "friends_count": 10, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "aurorabyte", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769424777998180352/1710698956", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769425447799209984/gN-FV0ph_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "aurorabyte79324", + "statuses_count": 408, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889721288207519894" + ], + "editable_until_msecs": "1739383239000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "5", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 17:00:39 +0000 2025", + "conversation_id_str": "1889721288207519894", + "display_text_range": [ + 0, + 42 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Where code meets canvas and creates beauty", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 4, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769424777998180352", + "id_str": "1889721288207519894" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "profile-conversation-1891186292176191505-tweet-1889739476622254484", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1889739476622254484", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzY5NDI2MzY5NTI2NzcxNzEy", + "rest_id": "1769426369526771712", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "parody_commentary_fan_label": "None", + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "following": false, + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 17 18:12:01 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "shaping the future of intellect, blending advanced cognition with seamless digital integration for transformative insights", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 205, + "followers_count": 3, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "nexamind", + "needs_phone_verification": false, + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1769426369526771712/1710699161", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1769426514288971776/IiR3Z_q__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nexamind91326", + "statuses_count": 135, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "tipjar_settings": {} + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1889739476622254484" + ], + "editable_until_msecs": "1739387575000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "grok_analysis_button": true, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Wed Feb 12 18:12:55 +0000 2025", + "conversation_id_str": "1889721288207519894", + "display_text_range": [ + 17, + 57 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1769424777998180352", + "name": "aurorabyte", + "screen_name": "aurorabyte79324", + "indices": [ + 0, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@aurorabyte79324 Crafting the neural pathways of tomorrow", + "in_reply_to_screen_name": "aurorabyte79324", + "in_reply_to_status_id_str": "1889721288207519894", + "in_reply_to_user_id_str": "1769424777998180352", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1769426369526771712", + "id_str": "1889739476622254484" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1889721288207519894", + "1889739476622254484" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_ranked_organic_tweet", + "details": { + "timelinesDetails": { + "injectionType": "RankedOrganicTweet", + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYjkPog9owAAAAAAA=" + } + } + } + } + }, + { + "entryId": "cursor-top-1891186292176191489", + "sortIndex": "1891186292176191489", + "content": { + "entryType": "TimelineTimelineCursor", + "__typename": "TimelineTimelineCursor", + "value": "DAABCgABGj7X6a1AJxEKAAIaPte2pRbhHwgAAwAAAAEAAA", + "cursorType": "Top" + } + }, + { + "entryId": "cursor-bottom-1891186292176191470", + "sortIndex": "1891186292176191470", + "content": { + "entryType": "TimelineTimelineCursor", + "__typename": "TimelineTimelineCursor", + "value": "DAABCgABGj7X6a0__-wKAAIaObQKrhohlAgAAwAAAAIAAA", + "cursorType": "Bottom" + } + } + ] + } + ], + "metadata": { + "scribeConfig": { + "page": "profileAll" + } + } + } + } + } + } + } +} \ No newline at end of file From 217ed5ee63de3d4774edf28e075a71891e072d5b Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 16 Feb 2025 10:51:36 -0800 Subject: [PATCH 10/25] Add media and URLs to archive.js in buildArchive; and also, delete URLs from the db before indexing if they have previously been indexed --- archive-static-sites/x-archive/src/types.ts | 11 +++++ src/account_x/x_account_controller.ts | 49 ++++++++++++++++++++- 2 files changed, 58 insertions(+), 2 deletions(-) diff --git a/archive-static-sites/x-archive/src/types.ts b/archive-static-sites/x-archive/src/types.ts index 3d42cf09..4693c958 100644 --- a/archive-static-sites/x-archive/src/types.ts +++ b/archive-static-sites/x-archive/src/types.ts @@ -15,6 +15,17 @@ export type Tweet = { deletedRetweetAt: string | null; deletedLikeAt: string | null; deletedBookmarkAt: string | null; + media: { + mediaType: string; + url: string; + filename: string; + }[]; + urls: { + url: string; + displayURL: string; + expandedURL: string; + }[]; + }; export type User = { diff --git a/src/account_x/x_account_controller.ts b/src/account_x/x_account_controller.ts index 31537827..ff4b9ede 100644 --- a/src/account_x/x_account_controller.ts +++ b/src/account_x/x_account_controller.ts @@ -45,6 +45,7 @@ import { XJobRow, XTweetRow, XTweetMediaRow, + XTweetURLRow, XUserRow, XConversationRow, XMessageRow, @@ -813,6 +814,13 @@ export class XAccountController { // Loop over all URL items tweetLegacy["entities"]["urls"].forEach((url: XAPILegacyURL) => { + // Have we seen this URL before? + const existing: XTweetURLRow[] = exec(this.db, 'SELECT * FROM tweet_url WHERE url = ? AND tweetID = ?', [url["url"], tweetLegacy["id_str"]], "all") as XTweetURLRow[]; + if (existing.length > 0) { + // Delete it, so we can re-add it + exec(this.db, 'DELETE FROM tweet_url WHERE url = ? AND tweetID = ?', [url["url"], tweetLegacy["id_str"]]); + } + // Index url information in tweet_url table exec(this.db, 'INSERT INTO tweet_url (url, displayURL, expandedURL, startIndex, endIndex, tweetID) VALUES (?, ?, ?, ?, ?, ?)', [ url["url"], @@ -1281,6 +1289,20 @@ export class XAccountController { "all" ) as XTweetRow[]; + // Load all media and URLs, to process later + const media: XTweetMediaRow[] = exec( + this.db, + "SELECT * FROM tweet_media", + [], + "all" + ) as XTweetMediaRow[]; + const urls: XTweetURLRow[] = exec( + this.db, + "SELECT * FROM tweet_url", + [], + "all" + ) as XTweetURLRow[]; + // Users const users: XUserRow[] = exec( this.db, @@ -1314,7 +1336,7 @@ export class XAccountController { const accountUserID = accountUser?.userID; const tweetRowToArchiveTweet = (tweet: XTweetRow): XArchiveTypes.Tweet => { - return { + const archiveTweet: XArchiveTypes.Tweet = { tweetID: tweet.tweetID, username: tweet.username, createdAt: tweet.createdAt, @@ -1331,7 +1353,30 @@ export class XAccountController { deletedRetweetAt: tweet.deletedRetweetAt, deletedLikeAt: tweet.deletedLikeAt, deletedBookmarkAt: tweet.deletedBookmarkAt, - } + media: [], + urls: [], + }; + // Loop through media and URLs + media.forEach((media) => { + if (media.tweetID == tweet.tweetID) { + archiveTweet.media.push({ + mediaType: media.mediaType, + url: media.url, + filename: media.filename, + }); + } + }); + urls.forEach((url) => { + if (url.tweetID == tweet.tweetID) { + archiveTweet.urls.push({ + url: url.url, + displayURL: url.displayURL, + expandedURL: url.expandedURL, + }); + } + }); + + return archiveTweet } // Build the archive object From 76e849f6ff5870eac02d21a5dc75960160bd7179 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 16 Feb 2025 10:53:16 -0800 Subject: [PATCH 11/25] Update x-archive deps --- .../x-archive/package-lock.json | 204 +++++++++++------- 1 file changed, 121 insertions(+), 83 deletions(-) diff --git a/archive-static-sites/x-archive/package-lock.json b/archive-static-sites/x-archive/package-lock.json index 362f67d1..713d97aa 100644 --- a/archive-static-sites/x-archive/package-lock.json +++ b/archive-static-sites/x-archive/package-lock.json @@ -75,9 +75,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.5.tgz", - "integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==", + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", + "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", "dev": true, "license": "MIT", "engines": { @@ -85,22 +85,22 @@ } }, "node_modules/@babel/core": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.7.tgz", - "integrity": "sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz", + "integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==", "dev": true, "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.26.2", - "@babel/generator": "^7.26.5", + "@babel/generator": "^7.26.9", "@babel/helper-compilation-targets": "^7.26.5", "@babel/helper-module-transforms": "^7.26.0", - "@babel/helpers": "^7.26.7", - "@babel/parser": "^7.26.7", - "@babel/template": "^7.25.9", - "@babel/traverse": "^7.26.7", - "@babel/types": "^7.26.7", + "@babel/helpers": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/traverse": "^7.26.9", + "@babel/types": "^7.26.9", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -126,14 +126,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz", - "integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz", + "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/parser": "^7.26.5", - "@babel/types": "^7.26.5", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" @@ -230,14 +230,14 @@ } }, "node_modules/@babel/helpers": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.7.tgz", - "integrity": "sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz", + "integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/template": "^7.25.9", - "@babel/types": "^7.26.7" + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9" }, "engines": { "node": ">=6.9.0" @@ -338,12 +338,12 @@ } }, "node_modules/@babel/parser": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.7.tgz", - "integrity": "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz", + "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==", "license": "MIT", "dependencies": { - "@babel/types": "^7.26.7" + "@babel/types": "^7.26.9" }, "bin": { "parser": "bin/babel-parser.js" @@ -353,32 +353,32 @@ } }, "node_modules/@babel/template": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", - "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", + "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.25.9", - "@babel/parser": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.7.tgz", - "integrity": "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz", + "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==", "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.26.2", - "@babel/generator": "^7.26.5", - "@babel/parser": "^7.26.7", - "@babel/template": "^7.25.9", - "@babel/types": "^7.26.7", + "@babel/generator": "^7.26.9", + "@babel/parser": "^7.26.9", + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.9", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -387,9 +387,9 @@ } }, "node_modules/@babel/types": { - "version": "7.26.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.7.tgz", - "integrity": "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==", + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz", + "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==", "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.25.9", @@ -872,9 +872,9 @@ "license": "MIT" }, "node_modules/@types/http-proxy": { - "version": "1.17.15", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", - "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", + "version": "1.17.16", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.16.tgz", + "integrity": "sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==", "dev": true, "license": "MIT", "dependencies": { @@ -903,9 +903,9 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "22.13.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.1.tgz", - "integrity": "sha512-jK8uzQlrvXqEU91UxiK5J7pKHyzgnI1Qnl0QDHIgVGuolJhRb9EEl28Cj9b3rGR8B2lhFCtvIm5os8lFnO/1Ew==", + "version": "22.13.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.4.tgz", + "integrity": "sha512-ywP2X0DYtX3y08eFVx5fNIw7/uIv8hYUKgXoK8oayJlLnKcRfEYCxWMVE1XagUdVtCJlZT1AU4LXEABW+L1Peg==", "dev": true, "license": "MIT", "dependencies": { @@ -2511,9 +2511,9 @@ } }, "node_modules/call-bind-apply-helpers": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", - "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2576,9 +2576,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001697", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001697.tgz", - "integrity": "sha512-GwNPlWJin8E+d7Gxq96jxM6w0w+VFeyyXRsjU58emtkYqnbwHqXm5uT2uCmO0RQE9htWknOP4xtBlLmM/gWxvQ==", + "version": "1.0.30001699", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001699.tgz", + "integrity": "sha512-b+uH5BakXZ9Do9iK+CkDmctUSEqZl+SP056vc5usa0PL+ev5OHw003rZXcnjNDv3L8P5j6rwT6C0BPKSikW08w==", "dev": true, "funding": [ { @@ -2870,9 +2870,9 @@ } }, "node_modules/compression": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz", - "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.0.tgz", + "integrity": "sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==", "dev": true, "license": "MIT", "dependencies": { @@ -3711,9 +3711,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.92", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.92.tgz", - "integrity": "sha512-BeHgmNobs05N1HMmMZ7YIuHfYBGlq/UmvlsTgg+fsbFs9xVMj+xJHFg19GN04+9Q+r8Xnh9LXqaYIyEWElnNgQ==", + "version": "1.5.101", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.101.tgz", + "integrity": "sha512-L0ISiQrP/56Acgu4/i/kfPwWSgrzYZUnQrC0+QPFuhqlLP1Ir7qzPPDVS9BcKIyWTRU8+o6CC8dKw38tSWhYIA==", "dev": true, "license": "ISC" }, @@ -7404,9 +7404,9 @@ } }, "node_modules/postcss": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz", - "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==", + "version": "8.5.2", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.2.tgz", + "integrity": "sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==", "funding": [ { "type": "opencollective", @@ -7709,9 +7709,9 @@ } }, "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", + "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "dev": true, "license": "MIT", "dependencies": { @@ -7739,9 +7739,9 @@ } }, "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", - "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", + "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "dev": true, "license": "MIT", "dependencies": { @@ -9336,9 +9336,9 @@ } }, "node_modules/terser": { - "version": "5.38.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.38.0.tgz", - "integrity": "sha512-a4GD5R1TjEeuCT6ZRiYMHmIf7okbCPEuhQET8bczV6FrQMMlFXA1n+G0KKjdlFCm3TEHV77GxfZB3vZSUQGFpg==", + "version": "5.39.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz", + "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -10076,9 +10076,9 @@ "license": "BSD-2-Clause" }, "node_modules/webpack": { - "version": "5.97.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz", - "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", "dev": true, "license": "MIT", "dependencies": { @@ -10100,9 +10100,9 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", + "terser-webpack-plugin": "^5.3.11", "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, @@ -10436,16 +10436,54 @@ "dev": true, "license": "MIT" }, + "node_modules/webpack/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT" + }, "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", + "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", "dev": true, "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 10.13.0" From dd6564a64825715a018070a63f86706bfcb03f35 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 16 Feb 2025 11:07:53 -0800 Subject: [PATCH 12/25] Properly display links and media in X archive --- .../src/components/TweetComponent.vue | 30 +++++++++++++++++-- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/archive-static-sites/x-archive/src/components/TweetComponent.vue b/archive-static-sites/x-archive/src/components/TweetComponent.vue index ee178875..23c948ee 100644 --- a/archive-static-sites/x-archive/src/components/TweetComponent.vue +++ b/archive-static-sites/x-archive/src/components/TweetComponent.vue @@ -1,11 +1,23 @@