From a58612d4c4336a8c4fe545a5bf7d8c8f58f56640 Mon Sep 17 00:00:00 2001 From: JW Date: Sat, 5 Aug 2023 18:15:37 +0200 Subject: [PATCH] Initial commit --- .gitignore | 3 + API/pom.xml | 28 + .../jwdeveloper/tiktok/ClientSettings.java | 71 + .../github/jwdeveloper/tiktok/Constants.java | 121 + .../Resource/ClientFetchDataResponse.java | 7 + .../tiktok/http/TikTokHttpRequest.java | 13 + .../tiktok/live/ConnectionState.java | 6 + .../jwdeveloper/tiktok/live/LiveClient.java | 9 + .../jwdeveloper/tiktok/live/LiveMeta.java | 9 + .../jwdeveloper/tiktok/live/LiveRoomInfo.java | 9 + .../tiktok/live/TikTokLiveMeta.java | 19 + .../live/models/gift/DefaultFormat.java | 16 + .../tiktok/live/models/gift/DisplayText.java | 14 + .../live/models/gift/GiftLabelIcon.java | 18 + .../live/models/gift/GiftPanelBanner.java | 15 + .../tiktok/live/models/gift/Icon.java | 18 + .../tiktok/live/models/gift/Image.java | 18 + .../tiktok/live/models/gift/LeftIcon.java | 26 + .../tiktok/live/models/gift/LockInfo.java | 6 + .../live/models/gift/SpecialEffects.java | 4 + .../tiktok/live/models/gift/TikTokGift.java | 50 + .../live/models/gift/TrackerParams.java | 4 + Client/pom.xml | 109 + .../io/github/jwdeveloper/tiktok/Main.java | 11 + .../tiktok/TikTokClientBuilder.java | 95 + .../jwdeveloper/tiktok/TikTokGiftManager.java | 36 + .../github/jwdeveloper/tiktok/TikTokLive.java | 11 + .../jwdeveloper/tiktok/TikTokLiveClient.java | 93 + .../tiktok/TikTokLiveException.java | 23 + .../tiktok/events/TikTokChatEvent.java | 4 + .../tiktok/events/TikTokEvent.java | 6 + .../tiktok/events/TikTokGiftEvent.java | 4 + .../jwdeveloper/tiktok/http/HttpUtils.java | 57 + .../tiktok/http/TikTokApiService.java | 127 + .../tiktok/http/TikTokCookieJar.java | 44 + .../tiktok/http/TikTokHttpApiClient.java | 106 + .../tiktok/http/TikTokHttpRequestFactory.java | 136 + .../websocket/TikTokWebSocketListener.java | 31 + .../websocket/TikTokWebsocketClient.java | 83 + Client/src/main/proto/tiktokSchema.proto | 310 + .../jwdeveloper/tiktok/TikTokLiveTest.java | 23 + .../tiktok/http/TikTokApiServiceTest.java | 88 + Client/src/test/resources/gifts.json | 20456 ++++++++++++++++ pom.xml | 22 + 44 files changed, 22359 insertions(+) create mode 100644 .gitignore create mode 100644 API/pom.xml create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/ClientSettings.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/Constants.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/http/Resource/ClientFetchDataResponse.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpRequest.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/ConnectionState.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveClient.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveMeta.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveRoomInfo.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/TikTokLiveMeta.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/DefaultFormat.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/DisplayText.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/GiftLabelIcon.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/GiftPanelBanner.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/Icon.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/Image.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/LeftIcon.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/LockInfo.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/SpecialEffects.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/TikTokGift.java create mode 100644 API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/TrackerParams.java create mode 100644 Client/pom.xml create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/Main.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokClientBuilder.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokGiftManager.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLive.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLiveClient.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLiveException.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokChatEvent.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokEvent.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokGiftEvent.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/http/HttpUtils.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokApiService.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokCookieJar.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpApiClient.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpRequestFactory.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/websocket/TikTokWebSocketListener.java create mode 100644 Client/src/main/java/io/github/jwdeveloper/tiktok/websocket/TikTokWebsocketClient.java create mode 100644 Client/src/main/proto/tiktokSchema.proto create mode 100644 Client/src/test/java/io/github/jwdeveloper/tiktok/TikTokLiveTest.java create mode 100644 Client/src/test/java/io/github/jwdeveloper/tiktok/http/TikTokApiServiceTest.java create mode 100644 Client/src/test/resources/gifts.json create mode 100644 pom.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3efc327 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Project exclude paths +/API/target/ +/Client/target/ \ No newline at end of file diff --git a/API/pom.xml b/API/pom.xml new file mode 100644 index 0000000..46b39fa --- /dev/null +++ b/API/pom.xml @@ -0,0 +1,28 @@ + + + + TikTokLiveJava + org.example + 1.0-SNAPSHOT + + 4.0.0 + + API + + + org.projectlombok + lombok + 1.18.22 + compile + + + + + 16 + 16 + UTF-8 + + + \ No newline at end of file diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/ClientSettings.java b/API/src/main/java/io/github/jwdeveloper/tiktok/ClientSettings.java new file mode 100644 index 0000000..fa72993 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/ClientSettings.java @@ -0,0 +1,71 @@ +package io.github.jwdeveloper.tiktok; + +import lombok.Data; + +import java.time.Duration; +import java.util.logging.Level; + +@Data +public class ClientSettings { + /// + /// Timeout for Connections + /// + + private Duration Timeout; + /// + /// Polling-Interval for Socket-Connection + /// + /// Proxy for Connection + /// + + // public RotatingProxy Proxy; + /// + /// ISO-Language for Client + /// + + private String ClientLanguage; + /// + /// Size for Buffer for Socket-Connection + /// + + private int SocketBufferSize; + + /// + /// Whether to Retry if Connection Fails + /// + private boolean RetryOnConnectionFailure; + + + /// + /// Whether to handle Messages received from Room when Connecting + /// + private boolean HandleExistingMessagesOnConnect; + /// + /// Whether to download List of Gifts for Room when Connecting + /// + private boolean DownloadGiftInfo; + + /// + /// Whether to print Logs to Console + /// + + private boolean PrintToConsole; + /// + /// LoggingLevel for Logs + /// + private Level LogLevel; + + /// + /// Whether to print Base64-Data for Messages to Console + /// + private boolean PrintMessageData; + + /// + /// Whether to check Messages for Unparsed Data + /// + private boolean CheckForUnparsedData; +} + diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/Constants.java b/API/src/main/java/io/github/jwdeveloper/tiktok/Constants.java new file mode 100644 index 0000000..438e305 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/Constants.java @@ -0,0 +1,121 @@ +package io.github.jwdeveloper.tiktok; + +import java.time.Duration; +import java.util.HashMap; +import java.util.Map; +import java.util.TreeMap; +import java.util.logging.Level; + +public class Constants { + + /// + /// Web-URL for TikTok + /// + public static final String TIKTOK_URL_WEB = "https://www.tiktok.com/"; + /// + /// WebCast-BaseURL for TikTok + /// + public static final String TIKTOK_URL_WEBCAST = "https://webcast.tiktok.com/webcast/"; + /// + /// Signing API by Isaac Kogan + /// https://github-wiki-see.page/m/isaackogan/TikTokLive/wiki/All-About-Signatures + /// + public static final String TIKTOK_SIGN_API = "https://tiktok.eulerstream.com/webcast/sign_url"; + + /// + /// Default TimeOut for Connections + /// + public static final int DEFAULT_TIMEOUT = 20; + /// + /// Default Polling-Time for Socket-Connection + /// + public static final int DEFAULT_POLLTIME = 1; + + /// + /// Default Settings for Client + /// + + + + public static ClientSettings DefaultClientSettings() { + var clientSettings = new ClientSettings(); + + clientSettings.setTimeout(Duration.ofSeconds(DEFAULT_TIMEOUT)); + clientSettings.setPollingInterval(Duration.ofSeconds(DEFAULT_POLLTIME)); + clientSettings.setClientLanguage("en-US"); + clientSettings.setHandleExistingMessagesOnConnect(true); + clientSettings.setDownloadGiftInfo(true); + clientSettings.setRetryOnConnectionFailure(true); + clientSettings.setSocketBufferSize(500_000); + clientSettings.setPrintToConsole(true); + clientSettings.setLogLevel(Level.ALL); + clientSettings.setCheckForUnparsedData(false); + clientSettings.setPrintMessageData(false); + return clientSettings; + } + + + + + /// + /// Default Parameters for HTTP-Request + /// + + + public static Map DefaultClientParams() { + var clientParams = new TreeMap(); + clientParams.put("aid", 1988); + clientParams.put("app_language", "en-US"); + clientParams.put("app_name", "tiktok_web"); + clientParams.put("browser_language", "en"); + clientParams.put("browser_name", "Mozilla"); + clientParams.put("browser_online", true); + clientParams.put("browser_platform", "Win32"); + clientParams.put("browser_version", "5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36"); + clientParams.put("cookie_enabled", true); + clientParams.put("cursor", ""); + clientParams.put("internal_ext", ""); + clientParams.put("device_platform", "web"); + clientParams.put("focus_state", true); + clientParams.put("from_page", "user"); + clientParams.put("history_len", 4); + clientParams.put("is_fullscreen", false); + clientParams.put("is_page_visible", true); + clientParams.put("did_rule", 3); + clientParams.put("fetch_rule", 1); + clientParams.put("identity", "audience"); + clientParams.put("last_rtt", 0); + clientParams.put("live_id", 12); + clientParams.put("resp_content_type", "protobuf"); + clientParams.put("screen_height", 1152); + clientParams.put("screen_width", 2048); + clientParams.put("tz_name", "Europe/Berlin"); + clientParams.put("referer", "https, //www.tiktok.com/"); + clientParams.put("root_referer", "https, //www.tiktok.com/"); + clientParams.put("msToken", ""); + clientParams.put("version_code", 180800); + clientParams.put("webcast_sdk_version", "1.3.0"); + clientParams.put("update_version_code", "1.3.0"); + + + return clientParams; + } + + + /// + /// Default Headers for HTTP-Request + /// + public static Map DefaultRequestHeaders() { + var headers = new HashMap(); + + // headers.put("Connection", "keep-alive"); + headers.put("Cache-Control", "max-age=0"); + headers.put("Accept", "text/html,application/json,application/protobuf"); + headers.put("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36"); + headers.put("Referer", "https://www.tiktok.com/"); + headers.put("Origin", "https://www.tiktok.com"); + headers.put("Accept-Language", "en-US,en; q=0.9"); + // headers.put("Accept-Encoding", "gzip, deflate"); + return headers; + } +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/http/Resource/ClientFetchDataResponse.java b/API/src/main/java/io/github/jwdeveloper/tiktok/http/Resource/ClientFetchDataResponse.java new file mode 100644 index 0000000..bfe2e6a --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/http/Resource/ClientFetchDataResponse.java @@ -0,0 +1,7 @@ +package io.github.jwdeveloper.tiktok.http.Resource; + +import lombok.Data; + +@Data +public class ClientFetchDataResponse { +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpRequest.java b/API/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpRequest.java new file mode 100644 index 0000000..1dc0fd3 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpRequest.java @@ -0,0 +1,13 @@ +package io.github.jwdeveloper.tiktok.http; + +import java.net.http.HttpRequest; +import java.util.Map; + +public interface TikTokHttpRequest { + TikTokHttpRequest SetQueries(Map queries); + + TikTokHttpRequest setHeader(String key, String value); + String Get(String url); + + String Post(String url, HttpRequest.BodyPublisher data); +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/ConnectionState.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/ConnectionState.java new file mode 100644 index 0000000..6c7776e --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/ConnectionState.java @@ -0,0 +1,6 @@ +package io.github.jwdeveloper.tiktok.live; + +public enum ConnectionState +{ + CONNECTING,CONNECTED,DISCONNECTED +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveClient.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveClient.java new file mode 100644 index 0000000..c8858bd --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveClient.java @@ -0,0 +1,9 @@ +package io.github.jwdeveloper.tiktok.live; + +public interface LiveClient { + void run(); + + void stop(); + + LiveMeta getMeta(); +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveMeta.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveMeta.java new file mode 100644 index 0000000..bd636eb --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveMeta.java @@ -0,0 +1,9 @@ +package io.github.jwdeveloper.tiktok.live; + +public interface LiveMeta +{ + int getViewersCount(); + + String getRoomId(); + String getUserName(); +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveRoomInfo.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveRoomInfo.java new file mode 100644 index 0000000..68c7201 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/LiveRoomInfo.java @@ -0,0 +1,9 @@ +package io.github.jwdeveloper.tiktok.live; + +import lombok.Data; + +@Data +public class LiveRoomInfo +{ + private int status; +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/TikTokLiveMeta.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/TikTokLiveMeta.java new file mode 100644 index 0000000..9c1b8ec --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/TikTokLiveMeta.java @@ -0,0 +1,19 @@ +package io.github.jwdeveloper.tiktok.live; + +import lombok.Data; + +@Data +public class TikTokLiveMeta implements LiveMeta +{ + private int viewersCount; + + private String roomId; + + private String userName; + private ConnectionState connectionState = ConnectionState.DISCONNECTED; + + public boolean hasConnectionState(ConnectionState state) + { + return connectionState == state; + } +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/DefaultFormat.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/DefaultFormat.java new file mode 100644 index 0000000..7dc36b0 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/DefaultFormat.java @@ -0,0 +1,16 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +import lombok.Data; + +@Data +public class DefaultFormat +{ + private boolean bold ; + private String color ; + private int font_size ; + private boolean italic ; + private int italic_angle ; + private boolean use_highlight_color ; + private boolean use_remote_color ; + private int weight ; +} \ No newline at end of file diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/DisplayText.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/DisplayText.java new file mode 100644 index 0000000..27c3170 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/DisplayText.java @@ -0,0 +1,14 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +import lombok.Data; + +import java.util.List; + +@Data +public class DisplayText +{ + private DefaultFormat default_format ; + private String default_pattern ; + private String key ; + private List pieces ; +} \ No newline at end of file diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/GiftLabelIcon.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/GiftLabelIcon.java new file mode 100644 index 0000000..5124aa7 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/GiftLabelIcon.java @@ -0,0 +1,18 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +import lombok.Data; + +import java.util.List; + +@Data +public class GiftLabelIcon +{ + private String avg_color ; + private int height ; + private int image_type ; + private boolean is_animated ; + private String open_web_url ; + private String uri ; + private List url_list ; + private int width ; +} \ No newline at end of file diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/GiftPanelBanner.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/GiftPanelBanner.java new file mode 100644 index 0000000..0a0320c --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/GiftPanelBanner.java @@ -0,0 +1,15 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +import lombok.Data; + +import java.util.List; + + +@Data +public class GiftPanelBanner +{ + private List bg_color_values ; + private DisplayText display_text ; + private LeftIcon left_icon ; + private String schema_url ; +} \ No newline at end of file diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/Icon.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/Icon.java new file mode 100644 index 0000000..e49a596 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/Icon.java @@ -0,0 +1,18 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +import lombok.Data; + +import java.util.List; + + +@Data +public class Icon { + private String avg_color; + private int height; + private int image_type; + private boolean is_animated; + private String open_web_url; + private String uri; + private List url_list; + private int width; +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/Image.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/Image.java new file mode 100644 index 0000000..8fbff0a --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/Image.java @@ -0,0 +1,18 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +import lombok.Data; + +import java.util.List; + +@Data +public class Image +{ + private String avg_color ; + private int height ; + private int image_type ; + private boolean is_animated ; + private String open_web_url ; + private String uri ; + private List url_list ; + private int width ; +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/LeftIcon.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/LeftIcon.java new file mode 100644 index 0000000..325d398 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/LeftIcon.java @@ -0,0 +1,26 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +import lombok.Data; + +import java.util.List; + +@Data +public class LeftIcon +{ + private String avg_color ; + private int height ; + private int image_type ; + private boolean is_animated ; + private String open_web_url ; + private String uri ; + private List url_list ; + private int width ; +} + + + + + + + + diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/LockInfo.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/LockInfo.java new file mode 100644 index 0000000..6a1ef97 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/LockInfo.java @@ -0,0 +1,6 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +public class LockInfo +{ + public int lock_type; +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/SpecialEffects.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/SpecialEffects.java new file mode 100644 index 0000000..0e854be --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/SpecialEffects.java @@ -0,0 +1,4 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +public class SpecialEffects { +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/TikTokGift.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/TikTokGift.java new file mode 100644 index 0000000..b6a1018 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/TikTokGift.java @@ -0,0 +1,50 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +import lombok.Data; + +import java.util.List; + +@Data +public class TikTokGift +{ + private int action_type; + private int app_id; + private String business_text; + private boolean can_put_in_gift_box; + private List color_infos; + private boolean combo; + private String describe; + private int diamond_count; + private int duration; + private String event_name; + private boolean for_custom; + private boolean for_linkmic; + private GiftLabelIcon gift_label_icon; + private GiftPanelBanner gift_panel_banner; + private String gift_rank_recommend_info; + private int gift_scene; + private String gold_effect; + private String gray_scheme_url; + private String guide_url; + private Icon icon; + private int id; + private Image image; + private boolean is_box_gift; + private boolean is_broadcast_gift; + private boolean is_displayed_on_panel; + private boolean is_effect_befview; + private boolean is_gray; + private boolean is_random_gift; + private int item_type; + private LockInfo lock_info; + private String manual; + private String name; + private boolean notify; + private int primary_effect_id; + private String region; + private String scheme_url; + private SpecialEffects special_effects; + private TrackerParams tracker_params; + private List trigger_words; + private int type; +} diff --git a/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/TrackerParams.java b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/TrackerParams.java new file mode 100644 index 0000000..dbc2ba1 --- /dev/null +++ b/API/src/main/java/io/github/jwdeveloper/tiktok/live/models/gift/TrackerParams.java @@ -0,0 +1,4 @@ +package io.github.jwdeveloper.tiktok.live.models.gift; + +public class TrackerParams { +} diff --git a/Client/pom.xml b/Client/pom.xml new file mode 100644 index 0000000..baf3e61 --- /dev/null +++ b/Client/pom.xml @@ -0,0 +1,109 @@ + + + + TikTokLiveJava + org.example + 1.0-SNAPSHOT + + 4.0.0 + + Client + + + 16 + 16 + UTF-8 + + + + target/generated-sources/protobuf/java + + + kr.motd.maven + os-maven-plugin + 1.7.0 + + + initialize + + detect + + + + + + + org.xolstice.maven.plugins + protobuf-maven-plugin + 0.6.1 + + com.google.protobuf:protoc:3.17.3:exe:${os.detected.classifier} + + + + + compile + + + + + + + + + + + + + org.java-websocket + Java-WebSocket + 1.5.4 + + + com.google.protobuf + protobuf-java + 3.23.0 + + + org.projectlombok + lombok + 1.18.22 + compile + + + org.example + API + 1.0-SNAPSHOT + compile + + + + com.google.code.gson + gson + 2.10.1 + + + + org.mockito + mockito-core + 3.12.4 + test + + + + junit + junit + 4.13.1 + test + + + org.junit.jupiter + junit-jupiter + RELEASE + test + + + + \ No newline at end of file diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/Main.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/Main.java new file mode 100644 index 0000000..41178b1 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/Main.java @@ -0,0 +1,11 @@ +package io.github.jwdeveloper.tiktok; + + + +public class Main +{ + public static void main(String[] args) + { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokClientBuilder.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokClientBuilder.java new file mode 100644 index 0000000..fed05cf --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokClientBuilder.java @@ -0,0 +1,95 @@ +package io.github.jwdeveloper.tiktok; + +import io.github.jwdeveloper.tiktok.http.TikTokApiService; +import io.github.jwdeveloper.tiktok.http.TikTokHttpApiClient; +import io.github.jwdeveloper.tiktok.http.TikTokHttpRequestFactory; +import io.github.jwdeveloper.tiktok.live.LiveClient; +import io.github.jwdeveloper.tiktok.live.TikTokLiveMeta; +import io.github.jwdeveloper.tiktok.websocket.TikTokWebsocketClient; + +import java.time.Duration; +import java.util.Map; +import java.util.function.Consumer; +import java.util.logging.Logger; + +public class TikTokClientBuilder { + private String userName; + private final ClientSettings clientSettings; + private Map clientParameters; + private Logger logger; + + public TikTokClientBuilder(String userName) { + this.userName = userName; + this.clientSettings = Constants.DefaultClientSettings(); + this.clientParameters = Constants.DefaultClientParams(); + this.logger = Logger.getLogger(TikTokLive.class.getName()); + } + + public TikTokClientBuilder clientSettings(Consumer consumer) { + consumer.accept(clientSettings); + return this; + } + + public TikTokClientBuilder hostUserName(String userName) { + this.userName = userName; + return this; + } + + public TikTokClientBuilder clientParameters(Map clientParameters) { + this.clientParameters = clientParameters; + return this; + } + + public TikTokClientBuilder addClientParameters(String key, Object value) { + this.clientParameters.put(key, value); + return this; + } + + private void validate() { + + if (clientSettings.getTimeout() == null) { + clientSettings.setTimeout(Duration.ofSeconds(Constants.DEFAULT_TIMEOUT)); + } + + if (clientSettings.getPollingInterval() == null) { + clientSettings.setPollingInterval(Duration.ofSeconds(Constants.DEFAULT_POLLTIME)); + } + + if (clientSettings.getClientLanguage() == null || clientSettings.getClientLanguage().equals("")) { + clientSettings.setClientLanguage(Constants.DefaultClientSettings().getClientLanguage()); + } + + if (clientSettings.getSocketBufferSize() < 500_000) { + clientSettings.setSocketBufferSize(Constants.DefaultClientSettings().getSocketBufferSize()); + } + + + if (userName == null || userName.equals("")) { + throw new RuntimeException("UserName can not be null"); + } + + if (clientParameters == null) { + clientParameters = Constants.DefaultClientParams(); + } + + clientParameters.put("app_language", clientSettings.getClientLanguage()); + clientParameters.put("webcast_language", clientSettings.getClientLanguage()); + } + + + public LiveClient build() { + validate(); + + + var meta = new TikTokLiveMeta(); + meta.setUserName(userName); + + + var requestFactory = new TikTokHttpRequestFactory(); + var apiClient = new TikTokHttpApiClient(clientSettings, requestFactory); + var apiService = new TikTokApiService(apiClient, logger,clientParameters); + var webSocketClient = new TikTokWebsocketClient(logger,clientParameters, clientSettings); + var giftManager =new TikTokGiftManager(logger, apiService, clientSettings); + return new TikTokLiveClient(meta,apiService, webSocketClient, giftManager, logger); + } +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokGiftManager.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokGiftManager.java new file mode 100644 index 0000000..33e61f6 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokGiftManager.java @@ -0,0 +1,36 @@ +package io.github.jwdeveloper.tiktok; + +import io.github.jwdeveloper.tiktok.http.TikTokApiService; +import io.github.jwdeveloper.tiktok.live.models.gift.TikTokGift; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.logging.Logger; + +public class TikTokGiftManager { + private Logger logger; + private ClientSettings clientSettings; + private TikTokApiService apiService; + private Map gifts; + + public TikTokGiftManager(Logger logger, TikTokApiService apiService, ClientSettings clientSettings) { + this.logger = logger; + this.clientSettings = clientSettings; + this.apiService = apiService; + this.gifts = new HashMap<>(); + } + + public void loadGifts() { + if (!clientSettings.isDownloadGiftInfo()) { + return; + } + logger.info("Fetching gifts"); + gifts =apiService.fetchAvailableGifts(); + } + + public List getGifts() + { + return gifts.values().stream().toList(); + } +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLive.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLive.java new file mode 100644 index 0000000..013f837 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLive.java @@ -0,0 +1,11 @@ +package io.github.jwdeveloper.tiktok; + + + +public class TikTokLive +{ + public static TikTokClientBuilder newClient(String userName) + { + return new TikTokClientBuilder(userName); + } +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLiveClient.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLiveClient.java new file mode 100644 index 0000000..5263699 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLiveClient.java @@ -0,0 +1,93 @@ +package io.github.jwdeveloper.tiktok; + +import io.github.jwdeveloper.tiktok.http.TikTokApiService; +import io.github.jwdeveloper.tiktok.live.ConnectionState; +import io.github.jwdeveloper.tiktok.live.LiveClient; +import io.github.jwdeveloper.tiktok.live.LiveMeta; +import io.github.jwdeveloper.tiktok.live.TikTokLiveMeta; +import io.github.jwdeveloper.tiktok.websocket.TikTokWebsocketClient; + +import java.util.logging.Logger; + +public class TikTokLiveClient implements LiveClient { + private final TikTokLiveMeta meta; + private final TikTokGiftManager giftManager; + private final TikTokApiService apiClient; + private final TikTokWebsocketClient webSocketClient; + private final Logger logger; + + + public TikTokLiveClient(TikTokLiveMeta tikTokLiveMeta, + TikTokApiService tikTokApiService, + TikTokWebsocketClient webSocketClient, + TikTokGiftManager tikTokGiftManager, + Logger logger) { + this.meta = tikTokLiveMeta; + this.giftManager = tikTokGiftManager; + this.apiClient = tikTokApiService; + this.webSocketClient = webSocketClient; + this.logger = logger; + } + + + public void run() { + tryConnect(); + } + + public void stop() { + if (!meta.hasConnectionState(ConnectionState.CONNECTED)) { + return; + } + disconnect(); + setState(ConnectionState.DISCONNECTED); + } + + public void tryConnect() { + try { + connect(); + } catch (Exception e) { + e.printStackTrace(); + setState(ConnectionState.DISCONNECTED); + } + } + + public void connect() { + if (meta.hasConnectionState(ConnectionState.CONNECTED)) + throw new RuntimeException("Already connected"); + if (meta.hasConnectionState(ConnectionState.CONNECTING)) + throw new RuntimeException("Already connecting"); + + logger.info("Connecting"); + setState(ConnectionState.CONNECTING); + + var roomId = apiClient.fetchRoomId(meta.getUserName()); + meta.setRoomId(roomId); + var roomData =apiClient.fetchRoomInfo(); + if (roomData.getStatus() == 0 || roomData.getStatus() == 4) + { + throw new TikTokLiveException("LiveStream for HostID could not be found. Is the Host online?"); + } + + // giftManager.loadGifts(); + var clientData = apiClient.fetchClientData(); + webSocketClient.start(clientData); + setState(ConnectionState.CONNECTED); + } + + public void disconnect() { + + } + + + public LiveMeta getMeta() { + return meta; + } + + + private void setState(ConnectionState connectionState) { + logger.info("TikTokLive client state: " + connectionState.name()); + meta.setConnectionState(connectionState); + } + + +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLiveException.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLiveException.java new file mode 100644 index 0000000..82e12a3 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/TikTokLiveException.java @@ -0,0 +1,23 @@ +package io.github.jwdeveloper.tiktok; + +public class TikTokLiveException extends RuntimeException +{ + public TikTokLiveException() { + } + + public TikTokLiveException(String message) { + super(message); + } + + public TikTokLiveException(String message, Throwable cause) { + super(message, cause); + } + + public TikTokLiveException(Throwable cause) { + super(cause); + } + + public TikTokLiveException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { + super(message, cause, enableSuppression, writableStackTrace); + } +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokChatEvent.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokChatEvent.java new file mode 100644 index 0000000..e22a469 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokChatEvent.java @@ -0,0 +1,4 @@ +package io.github.jwdeveloper.tiktok.events; + +public class TikTokChatEvent { +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokEvent.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokEvent.java new file mode 100644 index 0000000..b713295 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokEvent.java @@ -0,0 +1,6 @@ +package io.github.jwdeveloper.tiktok.events; + +public class TikTokEvent +{ + +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokGiftEvent.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokGiftEvent.java new file mode 100644 index 0000000..d65ed1f --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/events/TikTokGiftEvent.java @@ -0,0 +1,4 @@ +package io.github.jwdeveloper.tiktok.events; + +public class TikTokGiftEvent { +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/http/HttpUtils.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/HttpUtils.java new file mode 100644 index 0000000..49b49dd --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/HttpUtils.java @@ -0,0 +1,57 @@ +package io.github.jwdeveloper.tiktok.http; + +import lombok.SneakyThrows; + +import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; +import java.util.Map; + +public class HttpUtils +{ + public static String parseParameters(String url, Map parameters) + { + var parameterString = ""; + if (!parameters.isEmpty()) { + var builder = new StringBuilder(); + builder.append("?"); + var first = false; + for (var param : parameters.entrySet()) { + + if (first) { + builder.append("&"); + } + builder.append(param.getKey()).append("=").append(param.getValue()); + first = true; + } + parameterString = builder.toString(); + } + + return url+parameterString; + } + + @SneakyThrows + public static String parseParametersEncode(String url, Map parameters) + { + + var parameterString = ""; + if (!parameters.isEmpty()) { + var builder = new StringBuilder(); + builder.append("?"); + var first = false; + for (var param : parameters.entrySet()) { + + if (first) { + builder.append("&"); + } + + final String encodedKey = URLEncoder.encode(param.getKey().toString(), StandardCharsets.UTF_8.toString()); + final String encodedValue = URLEncoder.encode(param.getValue().toString(), StandardCharsets.UTF_8.toString()); + builder.append(encodedKey).append("=").append(encodedValue); + first = true; + } + parameterString = builder.toString(); + } + + return url+parameterString; + } +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokApiService.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokApiService.java new file mode 100644 index 0000000..5138099 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokApiService.java @@ -0,0 +1,127 @@ +package io.github.jwdeveloper.tiktok.http; + +import com.google.gson.Gson; +import com.google.gson.JsonParser; +import io.github.jwdeveloper.generated.WebcastResponse; +import io.github.jwdeveloper.tiktok.TikTokLiveException; +import io.github.jwdeveloper.tiktok.live.LiveRoomInfo; +import io.github.jwdeveloper.tiktok.live.models.gift.TikTokGift; + +import java.util.HashMap; +import java.util.Map; +import java.util.logging.Logger; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +public class TikTokApiService { + private final TikTokHttpApiClient apiClient; + private final Logger logger; + private final Map clientParams; + + public TikTokApiService(TikTokHttpApiClient apiClient, Logger logger, Map clientParams) { + this.apiClient = apiClient; + this.logger = logger; + this.clientParams = clientParams; + } + + public String fetchRoomId(String userName) { + logger.info("Fetching room ID"); + String html; + try { + html = apiClient.GetLivestreamPage(userName); + } catch (Exception e) { + throw new RuntimeException("Failed to fetch room id from WebCast, see stacktrace for more info.", e); + } + + Pattern firstPattern = Pattern.compile("room_id=([0-9]*)"); + Matcher firstMatcher = firstPattern.matcher(html); + String id = ""; + + if (firstMatcher.find()) { + id = firstMatcher.group(1); + } else { + Pattern secondPattern = Pattern.compile("\"roomId\":\"([0-9]*)\""); + Matcher secondMatcher = secondPattern.matcher(html); + + if (secondMatcher.find()) { + id = secondMatcher.group(1); + } + } + + if (id.isEmpty()) { + throw new TikTokLiveException("Unable to fetch room ID"); + } + + clientParams.put("room_id", id); + logger.info("RoomID -> "+id); + return id; + } + + + public LiveRoomInfo fetchRoomInfo() { + logger.info("Fetch RoomInfo"); + try { + var response = apiClient.GetJObjectFromWebcastAPI("room/info/", clientParams); + if (!response.has("data")) { + return new LiveRoomInfo(); + } + + var data = response.getAsJsonObject("data"); + if (!data.has("status")) { + return new LiveRoomInfo(); + } + + var status = data.get("status"); + + var info = new LiveRoomInfo(); + info.setStatus(status.getAsInt()); + + logger.info("RoomInfo status -> "+info.getStatus()); + return info; + } catch (Exception e) { + throw new TikTokLiveException("Failed to fetch room info from WebCast, see stacktrace for more info.", e); + } + } + + public WebcastResponse fetchClientData() + { + logger.info("Fetch ClientData"); + try { + var response = apiClient.GetDeserializedMessage("im/fetch/", clientParams); + clientParams.put("cursor",response.getCursor()); + clientParams.put("internal_ext", response.getInternalExt()); + return response; + } + catch (Exception e) + { + throw new TikTokLiveException("Failed to fetch client data", e); + } + } + + public Map fetchAvailableGifts() { + try { + var response = apiClient.GetJObjectFromWebcastAPI("gift/list/", clientParams); + if(!response.has("data")) + { + return new HashMap<>(); + } + var dataJson = response.getAsJsonObject("data"); + if(!dataJson.has("gifts")) + { + return new HashMap<>(); + } + var giftsJsonList = dataJson.get("gifts").getAsJsonArray(); + var gifts = new HashMap(); + var gson = new Gson(); + for(var jsonGift : giftsJsonList) + { + var gift = gson.fromJson(jsonGift, TikTokGift.class); + logger.info("Found Available Gift "+ gift.getName()+ " with ID "+gift.getId()); + gifts.put(gift.getId(),gift); + } + return gifts; + } catch (Exception e) { + throw new TikTokLiveException("Failed to fetch giftTokens from WebCast, see stacktrace for more info.", e); + } + } +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokCookieJar.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokCookieJar.java new file mode 100644 index 0000000..7762ea5 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokCookieJar.java @@ -0,0 +1,44 @@ +package io.github.jwdeveloper.tiktok.http; + +import java.util.HashMap; +import java.util.Map; +import java.util.Set; + +public class TikTokCookieJar { + /// + /// Cookies in Jar + /// + private final Map cookies; + + /// + /// Create a TikTok cookie jar instance. + /// + public TikTokCookieJar() { + cookies = new HashMap<>(); + } + + + public String get(String key) { + return cookies.get(key); + } + + public void set(String key, String value) { + cookies.put(key, value); + } + + /// + /// Enumerates Cookies + /// + public Set> GetEnumerator() { + return cookies.entrySet(); + } + + /* /// + /// Enumerates Cookies + /// + public IEnumerator GetEnumerator() + { + foreach (var cookie in cookies) + yield return $"{cookie.Key}={cookie.Value};"; + }*/ +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpApiClient.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpApiClient.java new file mode 100644 index 0000000..9c72290 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpApiClient.java @@ -0,0 +1,106 @@ +package io.github.jwdeveloper.tiktok.http; + +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; +import io.github.jwdeveloper.generated.WebcastResponse; +import io.github.jwdeveloper.tiktok.ClientSettings; +import io.github.jwdeveloper.tiktok.Constants; +import io.github.jwdeveloper.tiktok.TikTokLiveException; + +import java.net.URI; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; +import java.nio.charset.StandardCharsets; +import java.util.HashMap; +import java.util.Map; + +public class TikTokHttpApiClient { + private final ClientSettings clientSettings; + private final TikTokHttpRequestFactory requestFactory; + + public TikTokHttpApiClient(ClientSettings clientSettings, TikTokHttpRequestFactory requestFactory) { + this.clientSettings = clientSettings; + this.requestFactory = requestFactory; + } + + + public String GetLivestreamPage(String userName) { + + var url = Constants.TIKTOK_URL_WEB + "@" + userName + "/live/"; + var get = getRequest(url, null, false); + return get; + } + + public JsonObject GetJObjectFromWebcastAPI(String path, Map parameters) { + var get = getRequest(Constants.TIKTOK_URL_WEBCAST + path, parameters, false); + var json = JsonParser.parseString(get); + var jsonObject = json.getAsJsonObject(); + return jsonObject; + } + + public WebcastResponse GetDeserializedMessage(String path, Map parameters) { + var bytes = getSignRequest(Constants.TIKTOK_URL_WEBCAST + path, parameters); + try { + return WebcastResponse.parseFrom(bytes); + } + catch (Exception e) + { + throw new TikTokLiveException("Unable to deserialize message: "+path,e); + } + } + + + private String getRequest(String url, Map parameters, boolean signURL) { + if (parameters == null) { + parameters = new HashMap<>(); + } + + var request = requestFactory.SetQueries(parameters); + return request.Get(url); + } + private byte[] getSignRequest(String url, Map parameters) { + url = GetSignedUrl(url, parameters); + try { + var client = HttpClient.newHttpClient(); + var request = HttpRequest.newBuilder() + .uri(new URI(url)) + .build(); + var response = client.send(request, HttpResponse.BodyHandlers.ofByteArray()); + + return response.body(); + } + catch (Exception e) + { + throw new TikTokLiveException("unabel to send signature"); + } + } + + + private String GetSignedUrl(String url, Map parameters) { + + var fullUrl = HttpUtils.parseParameters(url,parameters); + var singHeaders = new HashMap(); + singHeaders.put("client", "ttlive-net"); + singHeaders.put("uuc", 1); + singHeaders.put("url", fullUrl); + + var request = requestFactory.SetQueries(singHeaders); + var content = request.Get(Constants.TIKTOK_SIGN_API); + + + try { + var json = JsonParser.parseString(content); + var jsonObject = json.getAsJsonObject(); + var signedUrl = jsonObject.get("signedUrl").getAsString(); + var userAgent = jsonObject.get("User-Agent").getAsString(); + + //requestFactory.setHeader() + requestFactory.setAgent(userAgent); + return signedUrl; + } catch (Exception e) { + throw new TikTokLiveException("Insufficent values have been supplied for signing. Likely due to an update. Post an issue on GitHub.", e); + } + } + +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpRequestFactory.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpRequestFactory.java new file mode 100644 index 0000000..93937d2 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/http/TikTokHttpRequestFactory.java @@ -0,0 +1,136 @@ +package io.github.jwdeveloper.tiktok.http; + + +import io.github.jwdeveloper.tiktok.Constants; +import lombok.SneakyThrows; + +import java.net.CookieManager; +import java.net.ProxySelector; +import java.net.URI; +import java.net.URLEncoder; +import java.net.http.HttpClient; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; +import java.nio.charset.StandardCharsets; +import java.time.Duration; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class TikTokHttpRequestFactory implements TikTokHttpRequest +{ + private CookieManager cookieManager; + private HttpClient client; + + private Duration timeout; + + private ProxySelector webProxy; + private String query; + private Boolean sent; + private Map defaultHeaders; + + public TikTokHttpRequestFactory() { + + cookieManager = new CookieManager(); + defaultHeaders = Constants.DefaultRequestHeaders(); + client = HttpClient.newBuilder() + .cookieHandler(cookieManager) + .connectTimeout(Duration.ofSeconds(2)) + .build(); + } + + @SneakyThrows + public String Get(String url) { + var uri = URI.create(url); + var request = HttpRequest.newBuilder().GET(); + for(var header : defaultHeaders.entrySet()) + { + //request.setHeader(header.getKey(),header.getValue()); + } + if (query != null) { + var baseUri = uri.toString(); + var requestUri = URI.create(baseUri + "?" + query); + request.uri(requestUri); + } + + return GetContent(request.build()); + } + + @SneakyThrows + public String Post(String url, HttpRequest.BodyPublisher data) { + var uri = URI.create(url); + var request = HttpRequest.newBuilder().POST(data); + for(var header : defaultHeaders.entrySet()) + { + request.setHeader(header.getKey(),header.getValue()); + } + if (query != null) { + var baseUri = uri.toString(); + var requestUri = URI.create(baseUri + "?" + query); + request.uri(requestUri); + } + return GetContent(request.build()); + } + + public TikTokHttpRequest setHeader(String key, String value) + { + defaultHeaders.put(key,value); + return this; + } + + public TikTokHttpRequest setAgent( String value) + { + defaultHeaders.put("User-Agent", value); + return this; + } + + public TikTokHttpRequest SetQueries(Map queries) { + if (queries == null) + return this; + query = String.join("&", queries.entrySet().stream().map(x -> + { + var key = x.getKey(); + var value = ""; + try { + value = URLEncoder.encode(x.getValue().toString(), StandardCharsets.UTF_8); + } catch (Exception e) { + e.printStackTrace(); + } + return key + "=" + value; + }).toList()); + return this; + } + + + + + + private String GetContent(HttpRequest request) throws Exception { + var response = client.send(request, HttpResponse.BodyHandlers.ofString()); + sent = true; + if (response.statusCode() == 404) + { + throw new RuntimeException("Request responded with 404 NOT_FOUND"); + } + + if(response.statusCode() != 200) + { + throw new RuntimeException("Request was unsuccessful "+response.statusCode()); + } + + + var cookies = response.headers().allValues("Set-Cookie"); + for(var cookie : cookies) + { + var split = cookie.split(";")[0].split("="); + var uri = request.uri(); + var map = new HashMap>(); + map.put(split[0],List.of(split[1])); + cookieManager.put(uri,map); + + } + return response.body(); + } + + +} diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/websocket/TikTokWebSocketListener.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/websocket/TikTokWebSocketListener.java new file mode 100644 index 0000000..a78b5c2 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/websocket/TikTokWebSocketListener.java @@ -0,0 +1,31 @@ +package io.github.jwdeveloper.tiktok.websocket; + +import java.util.concurrent.CompletionStage; + + +public class TikTokWebSocketListener implements java.net.http.WebSocket.Listener { + //Insert Body here + + @Override + public void onOpen(java.net.http.WebSocket webSocket) { + System.out.println("WebSocket opened"); + } + + @Override + public void onError(java.net.http.WebSocket webSocket, Throwable error) { + System.out.println("Error occurred: " + error.getMessage()); + } + + @Override + public CompletionStage onText(java.net.http.WebSocket webSocket, CharSequence data, boolean last) { + System.out.println("Received message: " + data); + return java.net.http.WebSocket.Listener.super.onText(webSocket, data, last); + } + + + @Override + public CompletionStage onClose(java.net.http.WebSocket webSocket, int statusCode, String reason) { + System.out.println("WebSocket closed with status code: " + statusCode + " and reason: " + reason); + return java.net.http.WebSocket.Listener.super.onClose(webSocket, statusCode, reason); + } +} \ No newline at end of file diff --git a/Client/src/main/java/io/github/jwdeveloper/tiktok/websocket/TikTokWebsocketClient.java b/Client/src/main/java/io/github/jwdeveloper/tiktok/websocket/TikTokWebsocketClient.java new file mode 100644 index 0000000..e82a433 --- /dev/null +++ b/Client/src/main/java/io/github/jwdeveloper/tiktok/websocket/TikTokWebsocketClient.java @@ -0,0 +1,83 @@ +package io.github.jwdeveloper.tiktok.websocket; + +import io.github.jwdeveloper.generated.WebcastResponse; +import io.github.jwdeveloper.tiktok.ClientSettings; +import io.github.jwdeveloper.tiktok.TikTokLiveException; +import io.github.jwdeveloper.tiktok.http.HttpUtils; + +import java.net.URI; +import java.net.http.HttpClient; +import java.time.Duration; +import java.util.Map; +import java.util.logging.Logger; + +public class TikTokWebsocketClient { + private final Logger logger; + private final Map clientParams; + private final ClientSettings clientSettings; + + public TikTokWebsocketClient(Logger logger, Map clientParams, ClientSettings clientSettings) { + this.logger = logger; + this.clientParams = clientParams; + this.clientSettings = clientSettings; + } + + public void start(WebcastResponse webcastResponse) { + if (webcastResponse.getWsUrl().isEmpty() || webcastResponse.getWsParam().getAllFields().isEmpty()) { + throw new TikTokLiveException("Could not find Room"); + } + try { + for (var param : webcastResponse.getWsParam().getAllFields().entrySet()) { + var name = param.getKey().getName(); + var value = param.getValue(); + clientParams.put(name, value); + logger.info("Adding Custom Param" + param.getKey().getName() + " " + param.getValue()); + } + + + var url = webcastResponse.getWsUrl(); + var wsUrl = HttpUtils.parseParametersEncode(url, clientParams); + logger.info("Creating Socket with URL " + wsUrl); + //socketClient = new TikTokWebSocket(TikTokHttpRequest.CookieJar, token, settings.SocketBufferSize); + //connectedSocketUrl = url; + //await socketClient.Connect(url); + + logger.info("Starting Socket-Threads"); + //runningTask = Task.Run(WebSocketLoop, token); + //pollingTask = Task.Run(PingLoop, token); + startWS(wsUrl); + } catch (Exception e) { + throw new TikTokLiveException("Failed to connect to the websocket", e); + } + if (clientSettings.isHandleExistingMessagesOnConnect()) { + try { + // HandleWebcastMessages(webcastResponse); + } catch (Exception e) { + throw new TikTokLiveException("Error Handling Initial Messages", e); + } + } + } + + public void startWS(String url) + { + try { + + var cookie = "tt_csrf_token=Fh92faHZ-fVnWZ8CG58Wb_kIC1hb-QzizkRM;ttwid=1%7CergNdYee4w-v_96VkhyDxkJ8NIavveA-NvCEdWF68Ik%7C1691076950%7C154533521f698b079ff5300fbd058e85e81a8ef64c41349f1d218124aa74a6db;"; + // var url = "wss://webcast16-ws-useast1a.tiktok.com/webcast/im/push/?aid=1988&app_language=en-US&app_name=tiktok_web&browser_language=en&browser_name=Mozilla&browser_online=True&browser_platform=Win32&browser_version=5.0+(Windows+NT+10.0%3b+Win64%3b+x64)+AppleWebKit%2f537.36+(KHTML%2c+like+Gecko)+Chrome%2f102.0.5005.63+Safari%2f537.36&cookie_enabled=True&cursor=1691242057374_7263829320139870326_1_1_0_0&internal_ext=fetch_time%3a1691242057374%7cstart_time%3a0%7cack_ids%3a%2c%7cflag%3a0%7cseq%3a1%7cnext_cursor%3a1691242057374_7263829320139870326_1_1_0_0%7cwss_info%3a0-1691242057374-0-0&device_platform=web&focus_state=True&from_page=user&history_len=4&is_fullscreen=False&is_page_visible=True&did_rule=3&fetch_rule=1&identity=audience&last_rtt=0&live_id=12&resp_content_type=protobuf&screen_height=1152&screen_width=2048&tz_name=Europe%2fBerlin&referer=https%2c+%2f%2fwww.tiktok.com%2f&root_referer=https%2c+%2f%2fwww.tiktok.com%2f&msToken=&version_code=180800&webcast_sdk_version=1.3.0&update_version_code=1.3.0&webcast_language=en-US&room_id=7263759223213132577&imprp=u65Ja_b3czc3iEAb4x6oLXindKyTO"; + HttpClient client = HttpClient.newHttpClient(); + var ws = client.newWebSocketBuilder() + .subprotocols("echo-protocol") + .connectTimeout(Duration.ofSeconds(15)) + .header("cookie",cookie) + .buildAsync(URI.create(url),new TikTokWebSocketListener()).get(); + } + catch (Exception e) + { + e.printStackTrace(); + } + } + + public void stop() { + + } +} diff --git a/Client/src/main/proto/tiktokSchema.proto b/Client/src/main/proto/tiktokSchema.proto new file mode 100644 index 0000000..ae89ac8 --- /dev/null +++ b/Client/src/main/proto/tiktokSchema.proto @@ -0,0 +1,310 @@ +syntax = "proto3"; +package TikTok; + +option java_package = "io.github.jwdeveloper.generated"; +option java_multiple_files = true; + +// Data structure from im/fetch/ response +message WebcastResponse { + repeated Message messages = 1; + string cursor = 2; + int32 fetchInterval = 3; + int64 serverTimestamp = 4; + string internalExt = 5; + int32 fetchType = 6; // ws (1) or polling (2) + WebsocketParam wsParam = 7; + int32 heartbeatDuration = 8; + bool needAck = 9; + string wsUrl = 10; +} + +message Message { + string type = 1; + bytes binary = 2; +} + +message WebsocketParam { + string name = 1; + string value = 2; +} + +// Message types depending on Message.tyoe +message WebcastControlMessage { + int32 action = 2; +} + +// Statistics like viewer count +message WebcastRoomUserSeqMessage { + repeated TopUser topViewers = 2; + int32 viewerCount = 3; +} + +message TopUser { + uint64 coinCount = 1; + User user = 2; +} +message WebcastChatMessage { + WebcastMessageEvent event = 1; + User user = 2; + string comment = 3; +} + +message WebcastMemberMessage { + WebcastMessageEvent event = 1; + User user = 2; + int32 actionId = 10; +} + +message WebcastGiftMessage { + WebcastMessageEvent event = 1; + int32 giftId = 2; + int32 repeatCount = 5; + User user = 7; + int32 repeatEnd = 9; + uint64 groupId = 11; + WebcastGiftMessageGiftDetails giftDetails = 15; + string monitorExtra = 22; + WebcastGiftMessageGiftExtra giftExtra = 23; +} + +message WebcastGiftMessageGiftDetails { + WebcastGiftMessageGiftImage giftImage = 1; + string giftName = 16; + string describe = 2; + int32 giftType = 11; + int32 diamondCount = 12; +} + +// Taken from https://github.com/Davincible/gotiktoklive/blob/da4630622bc586629a53faae64e8c53509af29de/proto/tiktok.proto#L57 +message WebcastGiftMessageGiftExtra { + uint64 timestamp = 6; + uint64 receiverUserId = 8; +} + +message WebcastGiftMessageGiftImage { + string giftPictureUrl = 1; +} + + +// Battle start +message WebcastLinkMicBattle { + repeated WebcastLinkMicBattleItems battleUsers = 10; +} + +message WebcastLinkMicBattleItems { + WebcastLinkMicBattleGroup battleGroup = 2; +} + +message WebcastLinkMicBattleGroup { + LinkUser user = 1; +} + + +// Battle status +message WebcastLinkMicArmies { + repeated WebcastLinkMicArmiesItems battleItems = 3; + int32 battleStatus = 7; +} + +message WebcastLinkMicArmiesItems { + uint64 hostUserId = 1; + repeated WebcastLinkMicArmiesGroup battleGroups = 2; +} + +message WebcastLinkMicArmiesGroup { + repeated User users = 1; + int32 points = 2; +} + + +// Follow & share event +message WebcastSocialMessage { + WebcastMessageEvent event = 1; + User user = 2; +} + +// Like event (is only sent from time to time, not with every like) +message WebcastLikeMessage { + WebcastMessageEvent event = 1; + User user = 5; + int32 likeCount = 2; + int32 totalLikeCount = 3; +} + +// New question event +message WebcastQuestionNewMessage { + QuestionDetails questionDetails = 2; +} + +message QuestionDetails { + string questionText = 2; + User user = 5; +} + +message WebcastMessageEvent { + uint64 msgId = 2; + uint64 createTime = 4; + WebcastMessageEventDetails eventDetails = 8; +} + +// Contains UI information +message WebcastMessageEventDetails { + string displayType = 1; + string label = 2; +} + +// Source: Co-opted https://github.com/zerodytrash/TikTok-Livestream-Chat-Connector/issues/19#issuecomment-1074150342 +message WebcastLiveIntroMessage { + uint64 id = 2; + string description = 4; + User user = 5; +} + +message SystemMessage { + string description = 2; +} + +message WebcastInRoomBannerMessage { + string data = 2; +} + +message RankItem { + string colour = 1; + uint64 id = 4; +} + +message WeeklyRanking { + string type = 1; + string label = 2; + RankItem rank = 3; +} + +message RankContainer { + WeeklyRanking rankings = 4; +} + +message WebcastHourlyRankMessage { + RankContainer data = 2; +} + +// Chat Emotes (Subscriber) +message WebcastEmoteChatMessage { + User user = 2; + EmoteDetails emote = 3; +} + +message EmoteDetails { + string emoteId = 1; + EmoteImage image = 2; +} + +message EmoteImage { + string imageUrl = 1; +} + +// Envelope (treasure boxes) +// Taken from https://github.com/ThanoFish/TikTok-Live-Connector/blob/9b215b96792adfddfb638344b152fa9efa581b4c/src/proto/tiktokSchema.proto +message WebcastEnvelopeMessage { + TreasureBoxData treasureBoxData = 2; + TreasureBoxUser treasureBoxUser = 1; +} + +message TreasureBoxUser { + TreasureBoxUser2 user2 = 8; +} + +message TreasureBoxUser2 { + repeated TreasureBoxUser3 user3 = 4; +} + +message TreasureBoxUser3 { + TreasureBoxUser4 user4 = 21; +} + +message TreasureBoxUser4 { + User user = 1; +} + +message TreasureBoxData { + uint32 coins = 5; + uint32 canOpen = 6; + uint64 timestamp = 7; +} + +// New Subscriber message +message WebcastSubNotifyMessage { + WebcastMessageEvent event = 1; + User user = 2; + int32 exhibitionType = 3; + int32 subMonth = 4; + int32 subscribeType = 5; + int32 oldSubscribeStatus = 6; + int32 subscribingStatus = 8; +} + +// ================================== +// Generic stuff + +message User { + uint64 userId = 1; + string nickname = 3; + ProfilePicture profilePicture = 9; + string uniqueId = 38; + string secUid = 46; + repeated UserBadgesAttributes badges = 64; + uint64 createTime = 16; + string bioDescription = 5; + FollowInfo followInfo = 22; +} + +message FollowInfo { + int32 followingCount = 1; + int32 followerCount = 2; + int32 followStatus = 3; + int32 pushStatus = 4; +} + +message LinkUser { + uint64 userId = 1; + string nickname = 2; + ProfilePicture profilePicture = 3; + string uniqueId = 4; +} + +message ProfilePicture { + repeated string urls = 1; +} + + +message UserBadgesAttributes { + int32 badgeSceneType = 3; + repeated UserImageBadge imageBadges = 20; + repeated UserBadge badges = 21; +} + +message UserBadge { + string type = 2; + string name = 3; +} + +message UserImageBadge { + int32 displayType = 1; + UserImageBadgeImage image = 2; +} + +message UserImageBadgeImage { + string url = 1; +} + +// Websocket incoming message structure +message WebcastWebsocketMessage { + uint64 id = 2; + string type = 7; + bytes binary = 8; +} + +// Websocket acknowledgment message +message WebcastWebsocketAck { + uint64 id = 2; + string type = 7; +} \ No newline at end of file diff --git a/Client/src/test/java/io/github/jwdeveloper/tiktok/TikTokLiveTest.java b/Client/src/test/java/io/github/jwdeveloper/tiktok/TikTokLiveTest.java new file mode 100644 index 0000000..69dba3e --- /dev/null +++ b/Client/src/test/java/io/github/jwdeveloper/tiktok/TikTokLiveTest.java @@ -0,0 +1,23 @@ +package io.github.jwdeveloper.tiktok; + +import org.junit.jupiter.api.Test; + +import java.io.IOException; + +public class TikTokLiveTest +{ + public static String TEST_USER_SUBJECT = "moniczkka"; + + + @Test + public void ShouldConnect() throws IOException { + var client = TikTokLive.newClient(TEST_USER_SUBJECT).build(); + client.run(); + + + + System.in.read(); + + } + +} \ No newline at end of file diff --git a/Client/src/test/java/io/github/jwdeveloper/tiktok/http/TikTokApiServiceTest.java b/Client/src/test/java/io/github/jwdeveloper/tiktok/http/TikTokApiServiceTest.java new file mode 100644 index 0000000..3356551 --- /dev/null +++ b/Client/src/test/java/io/github/jwdeveloper/tiktok/http/TikTokApiServiceTest.java @@ -0,0 +1,88 @@ +package io.github.jwdeveloper.tiktok.http; + +import com.google.gson.JsonParser; +import io.github.jwdeveloper.tiktok.live.models.gift.TikTokGift; +import org.java_websocket.WebSocket; +import org.junit.jupiter.api.Test; + +import java.io.IOException; +import java.io.InputStream; +import java.net.URI; +import java.net.http.HttpClient; +import java.net.http.HttpHeaders; +import java.net.http.HttpRequest; +import java.net.http.HttpResponse; +import java.nio.charset.StandardCharsets; +import java.time.Duration; +import java.util.HashMap; +import java.util.Map; +import java.util.Scanner; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.CompletionStage; +import java.util.concurrent.CountDownLatch; +import java.util.logging.Logger; + +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +public class TikTokApiServiceTest { + + @Test + void testFetchAvailableGifts() { + // Arrange + var mockApiClient = mock(TikTokHttpApiClient.class); + var mockLogger = mock(Logger.class); + var clientParams = new HashMap(); + var tikTokApiService = new TikTokApiService(mockApiClient, mockLogger, clientParams); + + var inputStream = getClass().getClassLoader().getResourceAsStream("gifts.json"); + String jsonContent; + try (var scanner = new Scanner(inputStream, StandardCharsets.UTF_8.name())) { + jsonContent = scanner.useDelimiter("\\A").next(); // Read entire content + } + var json = JsonParser.parseString(jsonContent); + var jsonObject = json.getAsJsonObject(); + + when(mockApiClient.GetJObjectFromWebcastAPI("gift/list/", clientParams)) + .thenReturn(jsonObject); + + var gifts = tikTokApiService.fetchAvailableGifts(); + + assertNotNull(gifts); + } + + + @Test + void test() throws Exception { + HttpClient client = HttpClient.newHttpClient(); + HttpRequest request = HttpRequest.newBuilder() + .uri(new URI("https://tiktok.eulerstream.com/webcast/fetch/?room_id=7263690606554188577&client=ttlive-net&uuc=1&apiKey=&isSignRedirect=1&iph=658d90239052e48dabc4e5b61004661e")) + .build(); + + HttpResponse response = client.send(request, HttpResponse.BodyHandlers.ofString()); + + System.out.println("Response code: " + response.statusCode()); + HttpHeaders headers = response.headers(); + headers.map().forEach((k, v) -> System.out.println(k + ":" + v)); + + System.out.println("Response body: " + response.body()); + } + + + @Test + void testws2() + { + + var url = "wss://webcast16-ws-useast1a.tiktok.com/webcast/im/push/?cursor=1691243226540_7263834340956643180_1_1_0_0&room_id=7263759223213132577&app_language=en-US&focus_state=true&last_rtt=0&did_rule=3&is_fullscreen=false&from_page=user&update_version_code=1.3.0&screen_height=1152&tz_name=Europe/Berlin&cookie_enabled=true&identity=audience&browser_platform=Win32&browser_version=5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.63 Safari/537.36&browser_language=en&fetch_rule=1&value=u6Laa_b3czc3iEAb4x6oLXindKyTO&internal_ext=fetch_time:1691243226540|start_time:0|ack_ids:,|flag:0|seq:1|next_cursor:1691243226540_7263834340956643180_1_1_0_0|wss_info:0-1691243226540-0-0&screen_width=2048&version_code=180800&history_len=4&webcast_sdk_version=1.3.0&msToken=&app_name=tiktok_web&browser_name=Mozilla&resp_content_type=protobuf&live_id=12&webcast_language=en-US&name=imprp&device_platform=web&is_page_visible=true&aid=1988&browser_online=true"; + + var split = url.substring(373,url.length()-1); + + var i =0; + + var uri = URI.create(url); + + + + } +} \ No newline at end of file diff --git a/Client/src/test/resources/gifts.json b/Client/src/test/resources/gifts.json new file mode 100644 index 0000000..38ef9ed --- /dev/null +++ b/Client/src/test/resources/gifts.json @@ -0,0 +1,20456 @@ +{ + "data": { + "cold_gift_hash": "129fea7364b92e242465e02a78352666_19b61a0b6e75e02d9514858f9557313b_en_online_v1", + "doodle_templates": [], + "gifts": [ + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Tennis", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/09d9b188294ecf9b210c06f4e984a3bd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/09d9b188294ecf9b210c06f4e984a3bd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/09d9b188294ecf9b210c06f4e984a3bd~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6169, + "image": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/09d9b188294ecf9b210c06f4e984a3bd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/09d9b188294ecf9b210c06f4e984a3bd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/09d9b188294ecf9b210c06f4e984a3bd~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Tennis", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Football", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCA3BE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c043cd9e418f13017793ddf6e0c6ee99", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c043cd9e418f13017793ddf6e0c6ee99~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c043cd9e418f13017793ddf6e0c6ee99~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6093, + "image": { + "avg_color": "#374C52", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c043cd9e418f13017793ddf6e0c6ee99", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c043cd9e418f13017793ddf6e0c6ee99~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c043cd9e418f13017793ddf6e0c6ee99~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Football", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Mini Speaker", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/728cc7436005cace2791aa7500e4bf95", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/728cc7436005cace2791aa7500e4bf95~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/728cc7436005cace2791aa7500e4bf95~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6042, + "image": { + "avg_color": "#3D3D3D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/728cc7436005cace2791aa7500e4bf95", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/728cc7436005cace2791aa7500e4bf95~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/728cc7436005cace2791aa7500e4bf95~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mini Speaker", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Ice Cream Cone", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/968820bc85e274713c795a6aef3f7c67", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/968820bc85e274713c795a6aef3f7c67~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/968820bc85e274713c795a6aef3f7c67~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5827, + "image": { + "avg_color": "#CCA3BE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/968820bc85e274713c795a6aef3f7c67", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/968820bc85e274713c795a6aef3f7c67~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/968820bc85e274713c795a6aef3f7c67~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Ice Cream Cone", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Weights", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a99fc8541c7b91305de1cdcf47714d03", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a99fc8541c7b91305de1cdcf47714d03~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a99fc8541c7b91305de1cdcf47714d03~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5760, + "image": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a99fc8541c7b91305de1cdcf47714d03", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a99fc8541c7b91305de1cdcf47714d03~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a99fc8541c7b91305de1cdcf47714d03~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Weights", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Rose", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/eba3a9bb85c33e017f3648eaf88d7189", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/eba3a9bb85c33e017f3648eaf88d7189~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/eba3a9bb85c33e017f3648eaf88d7189~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5655, + "image": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/eba3a9bb85c33e017f3648eaf88d7189", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/eba3a9bb85c33e017f3648eaf88d7189~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/eba3a9bb85c33e017f3648eaf88d7189~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Rose", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent GG", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6064, + "image": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "GG", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent TikTok", + "diamond_count": 1, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/802a21ae29f9fae5abe3693de9f874bd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/802a21ae29f9fae5abe3693de9f874bd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/802a21ae29f9fae5abe3693de9f874bd~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5269, + "image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/802a21ae29f9fae5abe3693de9f874bd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/802a21ae29f9fae5abe3693de9f874bd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/802a21ae29f9fae5abe3693de9f874bd~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "TikTok", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Cotton's Shell", + "diamond_count": 5, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f034a397a7c555b4885e4892b925c1e4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f034a397a7c555b4885e4892b925c1e4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f034a397a7c555b4885e4892b925c1e4~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8352, + "image": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f034a397a7c555b4885e4892b925c1e4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f034a397a7c555b4885e4892b925c1e4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f034a397a7c555b4885e4892b925c1e4~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cotton's Shell", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Mic", + "diamond_count": 5, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8d4381b7d2272ffc14227c3705832e24", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8d4381b7d2272ffc14227c3705832e24~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8d4381b7d2272ffc14227c3705832e24~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5650, + "image": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8d4381b7d2272ffc14227c3705832e24", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8d4381b7d2272ffc14227c3705832e24~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8d4381b7d2272ffc14227c3705832e24~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mic", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Finger Heart", + "diamond_count": 5, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a4c4dc437fd3a6632aba149769491f49.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a4c4dc437fd3a6632aba149769491f49.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a4c4dc437fd3a6632aba149769491f49.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5487, + "image": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a4c4dc437fd3a6632aba149769491f49.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a4c4dc437fd3a6632aba149769491f49.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a4c4dc437fd3a6632aba149769491f49.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Finger Heart", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Hand Wave", + "diamond_count": 9, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/63135affee2016240473cab8376dfe74", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/63135affee2016240473cab8376dfe74~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/63135affee2016240473cab8376dfe74~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6059, + "image": { + "avg_color": "#3D3D3D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/63135affee2016240473cab8376dfe74", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/63135affee2016240473cab8376dfe74~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/63135affee2016240473cab8376dfe74~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Hand Wave", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Gamepad", + "diamond_count": 10, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8ebe28a907bb6237fa3b11a97deffe96", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8ebe28a907bb6237fa3b11a97deffe96~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8ebe28a907bb6237fa3b11a97deffe96~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6052, + "image": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8ebe28a907bb6237fa3b11a97deffe96", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8ebe28a907bb6237fa3b11a97deffe96~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8ebe28a907bb6237fa3b11a97deffe96~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gamepad", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Lollipop", + "diamond_count": 10, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7d055532898d2060101306de62b89882", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7d055532898d2060101306de62b89882~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7d055532898d2060101306de62b89882~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5657, + "image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7d055532898d2060101306de62b89882", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7d055532898d2060101306de62b89882~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7d055532898d2060101306de62b89882~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Lollipop", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Perfume", + "diamond_count": 20, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/20b8f61246c7b6032777bb81bf4ee055", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/20b8f61246c7b6032777bb81bf4ee055~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/20b8f61246c7b6032777bb81bf4ee055~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5658, + "image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/20b8f61246c7b6032777bb81bf4ee055", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/20b8f61246c7b6032777bb81bf4ee055~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/20b8f61246c7b6032777bb81bf4ee055~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Perfume", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Stars Snap", + "diamond_count": 10, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8581, + "image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Stars Snap", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Mirror", + "diamond_count": 30, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/840b3d6e362053e4eb83af0ca7228762", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/840b3d6e362053e4eb83af0ca7228762~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/840b3d6e362053e4eb83af0ca7228762~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6070, + "image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/840b3d6e362053e4eb83af0ca7228762", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/840b3d6e362053e4eb83af0ca7228762~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/840b3d6e362053e4eb83af0ca7228762~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mirror", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Doughnut", + "diamond_count": 30, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4e7ad6bdf0a1d860c538f38026d4e812", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4e7ad6bdf0a1d860c538f38026d4e812~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4e7ad6bdf0a1d860c538f38026d4e812~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5879, + "image": { + "avg_color": "#C8E0BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4e7ad6bdf0a1d860c538f38026d4e812", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4e7ad6bdf0a1d860c538f38026d4e812~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4e7ad6bdf0a1d860c538f38026d4e812~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Doughnut", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent TikTok Stars", + "diamond_count": 39999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#B8B8B8", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b1667c891ed39fd68ba7252fff7a1e7c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b1667c891ed39fd68ba7252fff7a1e7c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b1667c891ed39fd68ba7252fff7a1e7c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8582, + "image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b1667c891ed39fd68ba7252fff7a1e7c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b1667c891ed39fd68ba7252fff7a1e7c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b1667c891ed39fd68ba7252fff7a1e7c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "TikTok Stars", + "primary_effect_id": 2899, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent TikTok Universe", + "diamond_count": 34999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3743fb917966fea1b4851ed88abab317", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3743fb917966fea1b4851ed88abab317~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3743fb917966fea1b4851ed88abab317~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "A celebratory message will be displayed with the host's and your username as well as the gift name in all LIVE videos in your region.", + "key": "pm_mt_live_gift_panel_note_platform_announcement", + "pieces": [] + }, + "left_icon": { + "avg_color": "#B1CCA3", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_broadcast_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_broadcast_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_broadcast_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ff7d237a26868b9588e0d3fc416cb26b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ff7d237a26868b9588e0d3fc416cb26b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ff7d237a26868b9588e0d3fc416cb26b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6038, + "image": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ff7d237a26868b9588e0d3fc416cb26b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ff7d237a26868b9588e0d3fc416cb26b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ff7d237a26868b9588e0d3fc416cb26b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": true, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "TikTok Universe", + "preview_image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/378b942c2ec8e07de1567619be8bbca6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/378b942c2ec8e07de1567619be8bbca6~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/378b942c2ec8e07de1567619be8bbca6~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 402, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Seal and Whale", + "diamond_count": 34500, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3781e9159ff09272826d3f2216ba36ef.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3781e9159ff09272826d3f2216ba36ef.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3781e9159ff09272826d3f2216ba36ef.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8381, + "image": { + "avg_color": "#FFF8EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3781e9159ff09272826d3f2216ba36ef.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3781e9159ff09272826d3f2216ba36ef.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3781e9159ff09272826d3f2216ba36ef.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Seal and Whale", + "primary_effect_id": 2550, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Leon and Lion", + "diamond_count": 34000, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#E0D4BC", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBD8CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a291aedacf27d22c3fd2d83575d2bee9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a291aedacf27d22c3fd2d83575d2bee9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a291aedacf27d22c3fd2d83575d2bee9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7823, + "image": { + "avg_color": "#EBEBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a291aedacf27d22c3fd2d83575d2bee9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a291aedacf27d22c3fd2d83575d2bee9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a291aedacf27d22c3fd2d83575d2bee9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Leon and Lion", + "primary_effect_id": 2858, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Sam the Whale", + "diamond_count": 30000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f48a1887eb88238738996bb997b31c0f.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f48a1887eb88238738996bb997b31c0f.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f48a1887eb88238738996bb997b31c0f.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8391, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f48a1887eb88238738996bb997b31c0f.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f48a1887eb88238738996bb997b31c0f.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f48a1887eb88238738996bb997b31c0f.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Sam the Whale", + "primary_effect_id": 3256, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Lion", + "diamond_count": 29999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#E0BCBC", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4fb89af2082a290b37d704e20f4fe729", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4fb89af2082a290b37d704e20f4fe729~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4fb89af2082a290b37d704e20f4fe729~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6369, + "image": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4fb89af2082a290b37d704e20f4fe729", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4fb89af2082a290b37d704e20f4fe729~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4fb89af2082a290b37d704e20f4fe729~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Lion", + "primary_effect_id": 2855, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Dragon Flame", + "diamond_count": 26999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#A3967C", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7610, + "image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Dragon Flame", + "primary_effect_id": 2865, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Phoenix", + "diamond_count": 25999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ef248375c4167d70c1642731c732c982", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ef248375c4167d70c1642731c732c982~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ef248375c4167d70c1642731c732c982~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7319, + "image": { + "avg_color": "#8F8F8F", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ef248375c4167d70c1642731c732c982", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ef248375c4167d70c1642731c732c982~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ef248375c4167d70c1642731c732c982~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Phoenix", + "primary_effect_id": 1511, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Adam’s Dream", + "diamond_count": 25999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#7A6D53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#FFF1EB", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#373752", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9a586391fbb1e21621c4203e5563a9e0", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9a586391fbb1e21621c4203e5563a9e0~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9a586391fbb1e21621c4203e5563a9e0~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7400, + "image": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9a586391fbb1e21621c4203e5563a9e0", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9a586391fbb1e21621c4203e5563a9e0~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9a586391fbb1e21621c4203e5563a9e0~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Adam’s Dream", + "primary_effect_id": 2870, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent TikTok Shuttle", + "diamond_count": 20000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8ef48feba8dd293a75ae9d4376fb17c9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8ef48feba8dd293a75ae9d4376fb17c9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8ef48feba8dd293a75ae9d4376fb17c9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6751, + "image": { + "avg_color": "#7A6D53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8ef48feba8dd293a75ae9d4376fb17c9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8ef48feba8dd293a75ae9d4376fb17c9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8ef48feba8dd293a75ae9d4376fb17c9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "TikTok Shuttle", + "primary_effect_id": 1073, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Planet", + "diamond_count": 15000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7d017c1f035b989127b16255398eddc9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7d017c1f035b989127b16255398eddc9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7d017c1f035b989127b16255398eddc9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5954, + "image": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7d017c1f035b989127b16255398eddc9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7d017c1f035b989127b16255398eddc9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7d017c1f035b989127b16255398eddc9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Planet", + "primary_effect_id": 366, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Red Lightning", + "diamond_count": 12000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8419, + "image": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Red Lightning", + "primary_effect_id": 2583, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Interstellar", + "diamond_count": 10000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCA3BE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8520d47b59c202a4534c1560a355ae06", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8520d47b59c202a4534c1560a355ae06~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8520d47b59c202a4534c1560a355ae06~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6149, + "image": { + "avg_color": "#523749", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8520d47b59c202a4534c1560a355ae06", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8520d47b59c202a4534c1560a355ae06~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8520d47b59c202a4534c1560a355ae06~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Interstellar", + "primary_effect_id": 519, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Sunset Speedway", + "diamond_count": 10000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/df63eee488dc0994f6f5cb2e65f2ae49", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/df63eee488dc0994f6f5cb2e65f2ae49~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/df63eee488dc0994f6f5cb2e65f2ae49~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6203, + "image": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/df63eee488dc0994f6f5cb2e65f2ae49", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/df63eee488dc0994f6f5cb2e65f2ae49~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/df63eee488dc0994f6f5cb2e65f2ae49~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Sunset Speedway", + "primary_effect_id": 705, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Yacht", + "diamond_count": 9888, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/070c086c6fc1e40ae3ca9e683c974e4e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/070c086c6fc1e40ae3ca9e683c974e4e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/070c086c6fc1e40ae3ca9e683c974e4e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6103, + "image": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/070c086c6fc1e40ae3ca9e683c974e4e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/070c086c6fc1e40ae3ca9e683c974e4e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/070c086c6fc1e40ae3ca9e683c974e4e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Yacht", + "primary_effect_id": 432, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Star Throne", + "diamond_count": 7999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/30063f6bc45aecc575c49ff3dbc33831", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8420, + "image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/30063f6bc45aecc575c49ff3dbc33831", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Star Throne", + "primary_effect_id": 2584, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 365, + "color_id": 1, + "color_image": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/6db5c098-08d6-4c65-98d2-b5e3a9a44fc5.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/6db5c098-08d6-4c65-98d2-b5e3a9a44fc5.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/6db5c098-08d6-4c65-98d2-b5e3a9a44fc5.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Ruby Red", + "color_values": [ + "#FF5E7A", + "#FF5E7A" + ], + "gift_image": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e7ce188da898772f18aaffe49a7bd7db", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 450, + "color_id": 2, + "color_image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/883d6320-72b3-44c6-86b7-7174eef4a9e7.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/883d6320-72b3-44c6-86b7-7174eef4a9e7.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/883d6320-72b3-44c6-86b7-7174eef4a9e7.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lime Green", + "color_values": [ + "#60E5AE", + "#60E5AE" + ], + "gift_image": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_green.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_green.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_green.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 451, + "color_id": 3, + "color_image": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/920447aa-78d7-45d9-a967-61cf9945a4fe.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/920447aa-78d7-45d9-a967-61cf9945a4fe.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/920447aa-78d7-45d9-a967-61cf9945a4fe.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Electric Blue", + "color_values": [ + "#6699FF", + "#6699FF" + ], + "gift_image": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_blue.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_blue.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_blue.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 452, + "color_id": 4, + "color_image": { + "avg_color": "#FADCF0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a6b08927-99c1-46a9-89ba-e8963d4b6360.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a6b08927-99c1-46a9-89ba-e8963d4b6360.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a6b08927-99c1-46a9-89ba-e8963d4b6360.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Bumblebee Yellow", + "color_values": [ + "#FFE15E", + "#FFE15E" + ], + "gift_image": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_yellow.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_yellow.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_yellow.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 466, + "color_id": 5, + "color_image": { + "avg_color": "#7A536D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/0ffb22c4-cf29-4f2a-9666-a910588d448d.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/0ffb22c4-cf29-4f2a-9666-a910588d448d.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/0ffb22c4-cf29-4f2a-9666-a910588d448d.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Bubblegum Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#EBCECE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_pink.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_pink.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_pink.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 465, + "color_id": 6, + "color_image": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/ae58efb4-850f-49c4-aca4-9c77d0caf14d.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/ae58efb4-850f-49c4-aca4-9c77d0caf14d.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/ae58efb4-850f-49c4-aca4-9c77d0caf14d.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lightning Purple", + "color_values": [ + "#8A8AFF", + "#8A8AFF" + ], + "gift_image": { + "avg_color": "#D6D6D6", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_purple.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_purple.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_purple.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Sports Car", + "diamond_count": 7000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6, + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#523737", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e7ce188da898772f18aaffe49a7bd7db", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6089, + "image": { + "avg_color": "#374C52", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e7ce188da898772f18aaffe49a7bd7db", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Sports Car", + "primary_effect_id": 365, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Celebration Time", + "diamond_count": 6999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#8F8F8F", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e73e786041d8218d8e9dbbc150855f1b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e73e786041d8218d8e9dbbc150855f1b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e73e786041d8218d8e9dbbc150855f1b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6790, + "image": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e73e786041d8218d8e9dbbc150855f1b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e73e786041d8218d8e9dbbc150855f1b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e73e786041d8218d8e9dbbc150855f1b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Celebration Time", + "primary_effect_id": 1237, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Valley Festival", + "diamond_count": 5999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#FFEBF8", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f71e047b000a96f589a7e5ec48152e29", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f71e047b000a96f589a7e5ec48152e29~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f71e047b000a96f589a7e5ec48152e29~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6556, + "image": { + "avg_color": "#EBD8CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f71e047b000a96f589a7e5ec48152e29", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f71e047b000a96f589a7e5ec48152e29~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f71e047b000a96f589a7e5ec48152e29~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Valley Festival", + "primary_effect_id": 1974, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cooper's Home", + "diamond_count": 5999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#CEE5EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#524037", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6864, + "image": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cooper's Home", + "primary_effect_id": 1978, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Unicorn Fantasy", + "diamond_count": 5000, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#89A37C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/483c644e67e9bb1dd5970f2df00b7576.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/483c644e67e9bb1dd5970f2df00b7576.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/483c644e67e9bb1dd5970f2df00b7576.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5483, + "image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/483c644e67e9bb1dd5970f2df00b7576.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/483c644e67e9bb1dd5970f2df00b7576.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/483c644e67e9bb1dd5970f2df00b7576.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Unicorn Fantasy", + "preview_image": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0d1f70d51d9e4b06f336f4aaf5936244", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0d1f70d51d9e4b06f336f4aaf5936244~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0d1f70d51d9e4b06f336f4aaf5936244~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 741, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Dancing Adam", + "diamond_count": 5000, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#E0C8BC", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/31375ed9a150fc227584141637e3c475", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/31375ed9a150fc227584141637e3c475~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/31375ed9a150fc227584141637e3c475~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7468, + "image": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/31375ed9a150fc227584141637e3c475", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/31375ed9a150fc227584141637e3c475~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/31375ed9a150fc227584141637e3c475~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Dancing Adam", + "primary_effect_id": 1982, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Pool Party", + "diamond_count": 4999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4147c5bcfad9623c693f83d5d6cba1f7", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4147c5bcfad9623c693f83d5d6cba1f7~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4147c5bcfad9623c693f83d5d6cba1f7~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5938, + "image": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4147c5bcfad9623c693f83d5d6cba1f7", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4147c5bcfad9623c693f83d5d6cba1f7~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4147c5bcfad9623c693f83d5d6cba1f7~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Pool Party", + "primary_effect_id": 357, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 474, + "color_id": 1, + "color_image": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a6b23da3-2461-4168-bb3b-426a6435cabf.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a6b23da3-2461-4168-bb3b-426a6435cabf.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a6b23da3-2461-4168-bb3b-426a6435cabf.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Champagne Gold", + "color_values": [ + "#FCCD89", + "#FCCD89" + ], + "gift_image": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/airplane_icon_gold.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_gold.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_gold.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 475, + "color_id": 2, + "color_image": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/dd27b357-6411-4eb4-95e0-d8a0e1e4c252.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/dd27b357-6411-4eb4-95e0-d8a0e1e4c252.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/dd27b357-6411-4eb4-95e0-d8a0e1e4c252.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Romantic Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/airplane_icon_pink.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_pink.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_pink.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 476, + "color_id": 3, + "color_image": { + "avg_color": "#3D3D3D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fafec75e-b2e0-4a3f-bc29-f73242cdf2b5.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fafec75e-b2e0-4a3f-bc29-f73242cdf2b5.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fafec75e-b2e0-4a3f-bc29-f73242cdf2b5.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Sky Blue", + "color_values": [ + "#80C4FF", + "#80C4FF" + ], + "gift_image": { + "avg_color": "#7A6D53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/airplane_icon_blue.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_blue.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_blue.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 477, + "color_id": 4, + "color_image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/d0b4b198-69f3-4c22-a27e-7f1acd2745c6.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/d0b4b198-69f3-4c22-a27e-7f1acd2745c6.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/d0b4b198-69f3-4c22-a27e-7f1acd2745c6.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Mystery Purple", + "color_values": [ + "#B689FF", + "#B689FF" + ], + "gift_image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/airplane_icon_purple.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_purple.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_purple.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Private Jet", + "diamond_count": 4888, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5, + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/921c6084acaa2339792052058cbd3fd3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/921c6084acaa2339792052058cbd3fd3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/921c6084acaa2339792052058cbd3fd3~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5767, + "image": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/921c6084acaa2339792052058cbd3fd3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/921c6084acaa2339792052058cbd3fd3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/921c6084acaa2339792052058cbd3fd3~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Private Jet", + "primary_effect_id": 263, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Leon the Kitten", + "diamond_count": 4888, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#EBCECE", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a7748baba012c9e2d98a30dce7cc5a27", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a7748baba012c9e2d98a30dce7cc5a27~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a7748baba012c9e2d98a30dce7cc5a27~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6646, + "image": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a7748baba012c9e2d98a30dce7cc5a27", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a7748baba012c9e2d98a30dce7cc5a27~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a7748baba012c9e2d98a30dce7cc5a27~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Leon the Kitten", + "primary_effect_id": 2860, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Flower Overflow", + "diamond_count": 4000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6148, + "image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Flower Overflow", + "primary_effect_id": 518, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Restaurants", + "diamond_count": 4000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e8764af35b7a390d436b68137541e19c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e8764af35b7a390d436b68137541e19c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e8764af35b7a390d436b68137541e19c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6204, + "image": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e8764af35b7a390d436b68137541e19c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e8764af35b7a390d436b68137541e19c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e8764af35b7a390d436b68137541e19c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Restaurants", + "primary_effect_id": 671, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cooper Swims Home", + "diamond_count": 3999, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Swim Cooper, Swim!", + "key": "gift_description_6863", + "pieces": [] + }, + "left_icon": { + "avg_color": "#B8B8B8", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e3ea82178688e17212581c90d621ae31", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0868b51b798341978b904e8095a4ca47", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0868b51b798341978b904e8095a4ca47~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0868b51b798341978b904e8095a4ca47~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6863, + "image": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0868b51b798341978b904e8095a4ca47", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0868b51b798341978b904e8095a4ca47~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0868b51b798341978b904e8095a4ca47~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cooper Swims Home", + "primary_effect_id": 1195, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Ferris Wheel", + "diamond_count": 3000, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5652, + "image": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Ferris Wheel", + "primary_effect_id": 212, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Meteor Shower", + "diamond_count": 3000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/71883933511237f7eaa1bf8cd12ed575", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/71883933511237f7eaa1bf8cd12ed575~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/71883933511237f7eaa1bf8cd12ed575~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6563, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/71883933511237f7eaa1bf8cd12ed575", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/71883933511237f7eaa1bf8cd12ed575~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/71883933511237f7eaa1bf8cd12ed575~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Meteor Shower", + "primary_effect_id": 932, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 486, + "color_id": 1, + "color_image": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/6cc71705-b286-4e55-a94c-bf50c65ac095.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/6cc71705-b286-4e55-a94c-bf50c65ac095.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/6cc71705-b286-4e55-a94c-bf50c65ac095.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lime Green", + "color_values": [ + "#60E5AE", + "#60E5AE" + ], + "gift_image": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_green.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_green.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_green.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 487, + "color_id": 2, + "color_image": { + "avg_color": "#523737", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/d3f61fde-66f1-43a1-b8da-a7c845b3d3e0.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/d3f61fde-66f1-43a1-b8da-a7c845b3d3e0.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/d3f61fde-66f1-43a1-b8da-a7c845b3d3e0.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Hot Pink", + "color_values": [ + "#FF7ACA", + "#FF7ACA" + ], + "gift_image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_pink.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_pink.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_pink.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 488, + "color_id": 3, + "color_image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/6a7d9f31-e9fc-4936-81b8-4eb57d5e544a.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/6a7d9f31-e9fc-4936-81b8-4eb57d5e544a.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/6a7d9f31-e9fc-4936-81b8-4eb57d5e544a.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Electric Blue", + "color_values": [ + "#6699FF", + "#6699FF" + ], + "gift_image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_blue.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_blue.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_blue.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 489, + "color_id": 4, + "color_image": { + "avg_color": "#7A536D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/f2a84010-3391-49cf-90f8-d1c1f19bbbce.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/f2a84010-3391-49cf-90f8-d1c1f19bbbce.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/f2a84010-3391-49cf-90f8-d1c1f19bbbce.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lightning Purple", + "color_values": [ + "#8A8AFF", + "#8A8AFF" + ], + "gift_image": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_purple.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_purple.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_purple.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 490, + "color_id": 5, + "color_image": { + "avg_color": "#523737", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/9598d54b-04db-4653-90a6-e243a064af8f.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/9598d54b-04db-4653-90a6-e243a064af8f.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/9598d54b-04db-4653-90a6-e243a064af8f.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Flash Silver", + "color_values": [ + "#C0D2DF", + "#C0D2DF" + ], + "gift_image": { + "avg_color": "#523749", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_silver.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_silver.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_silver.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 491, + "color_id": 6, + "color_image": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/ae5da295-a186-4d4e-a569-bf9a14069103.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/ae5da295-a186-4d4e-a569-bf9a14069103.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/ae5da295-a186-4d4e-a569-bf9a14069103.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Ruby Red", + "color_values": [ + "#FF5E7A", + "#FF5E7A" + ], + "gift_image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_red.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_red.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_red.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Motorcycle", + "diamond_count": 2988, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5, + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6517b8f2f76dc75ff0f4f73107f8780e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6517b8f2f76dc75ff0f4f73107f8780e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6517b8f2f76dc75ff0f4f73107f8780e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5765, + "image": { + "avg_color": "#A3967C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6517b8f2f76dc75ff0f4f73107f8780e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6517b8f2f76dc75ff0f4f73107f8780e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6517b8f2f76dc75ff0f4f73107f8780e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Motorcycle", + "primary_effect_id": 261, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Whale diving", + "diamond_count": 2150, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#FFEBEB", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3967C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/46fa70966d8e931497f5289060f9a794", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/46fa70966d8e931497f5289060f9a794~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/46fa70966d8e931497f5289060f9a794~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6820, + "image": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/46fa70966d8e931497f5289060f9a794", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/46fa70966d8e931497f5289060f9a794~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/46fa70966d8e931497f5289060f9a794~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Whale diving", + "primary_effect_id": 2628, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Make-up Box", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a29aa87203ec09c699e3dafa1944b23e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a29aa87203ec09c699e3dafa1944b23e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a29aa87203ec09c699e3dafa1944b23e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6033, + "image": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a29aa87203ec09c699e3dafa1944b23e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a29aa87203ec09c699e3dafa1944b23e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a29aa87203ec09c699e3dafa1944b23e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Make-up Box", + "primary_effect_id": 399, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Rabbit", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/61b42d630091b661e82fc8ed400b1de2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/61b42d630091b661e82fc8ed400b1de2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/61b42d630091b661e82fc8ed400b1de2~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6348, + "image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/61b42d630091b661e82fc8ed400b1de2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/61b42d630091b661e82fc8ed400b1de2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/61b42d630091b661e82fc8ed400b1de2~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Rabbit", + "primary_effect_id": 731, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Red Carpet", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/5b9bf90278f87b9ca0c286d3c8a12936", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/5b9bf90278f87b9ca0c286d3c8a12936~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/5b9bf90278f87b9ca0c286d3c8a12936~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6789, + "image": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/5b9bf90278f87b9ca0c286d3c8a12936", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/5b9bf90278f87b9ca0c286d3c8a12936~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/5b9bf90278f87b9ca0c286d3c8a12936~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Red Carpet", + "primary_effect_id": 1232, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gift Box", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#EBCECE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0ef66437249c64730e551cea6148fb28", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0ef66437249c64730e551cea6148fb28~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0ef66437249c64730e551cea6148fb28~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 3 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9cc22f7c8ac233e129dec7b981b91b76", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9cc22f7c8ac233e129dec7b981b91b76~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9cc22f7c8ac233e129dec7b981b91b76~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6834, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9cc22f7c8ac233e129dec7b981b91b76", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9cc22f7c8ac233e129dec7b981b91b76~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9cc22f7c8ac233e129dec7b981b91b76~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gift Box", + "primary_effect_id": 1147, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cooper Flies Home", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Fly Cooper, Fly!", + "key": "gift_description_6862", + "pieces": [] + }, + "left_icon": { + "avg_color": "#373752", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e3ea82178688e17212581c90d621ae31", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3f1945b0d96e665a759f747e5e0cf7a9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3f1945b0d96e665a759f747e5e0cf7a9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3f1945b0d96e665a759f747e5e0cf7a9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6862, + "image": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3f1945b0d96e665a759f747e5e0cf7a9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3f1945b0d96e665a759f747e5e0cf7a9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3f1945b0d96e665a759f747e5e0cf7a9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cooper Flies Home", + "primary_effect_id": 1194, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Mystery Firework", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#3D3D3D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ea70ae4b6ddb5d69fb52faadd4a6b1c8", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ea70ae4b6ddb5d69fb52faadd4a6b1c8~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ea70ae4b6ddb5d69fb52faadd4a6b1c8~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 2 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c110230c5db903db5f060a432f5a86cd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c110230c5db903db5f060a432f5a86cd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c110230c5db903db5f060a432f5a86cd~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7529, + "image": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c110230c5db903db5f060a432f5a86cd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c110230c5db903db5f060a432f5a86cd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c110230c5db903db5f060a432f5a86cd~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mystery Firework", + "preview_image": { + "avg_color": "#EBCECE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4e85c9fa113131615d4be57419e9b4f7", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4e85c9fa113131615d4be57419e9b4f7~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4e85c9fa113131615d4be57419e9b4f7~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 1709, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Speedboat", + "diamond_count": 1888, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/59c1d54918e6e715b84a4f5387f2ddb9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/59c1d54918e6e715b84a4f5387f2ddb9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/59c1d54918e6e715b84a4f5387f2ddb9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5763, + "image": { + "avg_color": "#FADCF0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/59c1d54918e6e715b84a4f5387f2ddb9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/59c1d54918e6e715b84a4f5387f2ddb9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/59c1d54918e6e715b84a4f5387f2ddb9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Speedboat", + "primary_effect_id": 260, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love Drop", + "diamond_count": 1800, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/42958ef42904682210b15f62ce824e5b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/42958ef42904682210b15f62ce824e5b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/42958ef42904682210b15f62ce824e5b~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Fly the Gift to the creator/guest to support", + "key": "pm_mt_gift_banner_flyingGift", + "pieces": [] + }, + "left_icon": { + "avg_color": "#A3897C", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d0857daaa739c634e07ced7a309c3d8e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d0857daaa739c634e07ced7a309c3d8e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d0857daaa739c634e07ced7a309c3d8e~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 4, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#8F8F8F", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1ea684b3104abb725491a509022f7c02", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea684b3104abb725491a509022f7c02~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea684b3104abb725491a509022f7c02~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8277, + "image": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1ea684b3104abb725491a509022f7c02", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea684b3104abb725491a509022f7c02~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea684b3104abb725491a509022f7c02~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love Drop", + "primary_effect_id": 2419, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Garland", + "diamond_count": 1500, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/69d7dadcd93942bad49d0b9874f69c1b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/69d7dadcd93942bad49d0b9874f69c1b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/69d7dadcd93942bad49d0b9874f69c1b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5651, + "image": { + "avg_color": "#89A37C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/69d7dadcd93942bad49d0b9874f69c1b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/69d7dadcd93942bad49d0b9874f69c1b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/69d7dadcd93942bad49d0b9874f69c1b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Garland ", + "preview_image": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/484f474784770636acca4568c1294cb6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/484f474784770636acca4568c1294cb6~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/484f474784770636acca4568c1294cb6~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 211, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Champion", + "diamond_count": 1500, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/58ce827091411e667dd6ba8a93215f86", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/58ce827091411e667dd6ba8a93215f86~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/58ce827091411e667dd6ba8a93215f86~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5955, + "image": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/58ce827091411e667dd6ba8a93215f86", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/58ce827091411e667dd6ba8a93215f86~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/58ce827091411e667dd6ba8a93215f86~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Champion", + "primary_effect_id": 307, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Chasing the Dream", + "diamond_count": 1500, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFF8EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1ea8dbb805466c4ced19f29e9590040f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea8dbb805466c4ced19f29e9590040f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea8dbb805466c4ced19f29e9590040f~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7467, + "image": { + "avg_color": "#8F8F8F", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1ea8dbb805466c4ced19f29e9590040f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea8dbb805466c4ced19f29e9590040f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea8dbb805466c4ced19f29e9590040f~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Chasing the Dream", + "primary_effect_id": 1874, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Bumper Cars", + "diamond_count": 1288, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0b72093c619aeafe267d04c11ea0b22e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0b72093c619aeafe267d04c11ea0b22e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0b72093c619aeafe267d04c11ea0b22e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5996, + "image": { + "avg_color": "#EBFBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0b72093c619aeafe267d04c11ea0b22e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0b72093c619aeafe267d04c11ea0b22e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0b72093c619aeafe267d04c11ea0b22e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Bumper Cars", + "primary_effect_id": 381, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gaming Chair", + "diamond_count": 1200, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fd53368cacaba5c02fceb38903ed8dd3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fd53368cacaba5c02fceb38903ed8dd3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fd53368cacaba5c02fceb38903ed8dd3~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6031, + "image": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fd53368cacaba5c02fceb38903ed8dd3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fd53368cacaba5c02fceb38903ed8dd3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fd53368cacaba5c02fceb38903ed8dd3~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gaming Chair", + "primary_effect_id": 398, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 478, + "color_id": 1, + "color_image": { + "avg_color": "#374C52", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/0d53e7c5-7993-4035-9f4c-ca544d477367.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/0d53e7c5-7993-4035-9f4c-ca544d477367.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/0d53e7c5-7993-4035-9f4c-ca544d477367.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Starry Blue", + "color_values": [ + "#80C4FF", + "#80C4FF" + ], + "gift_image": { + "avg_color": "#523749", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fireworks_icon_blue.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_blue.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_blue.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 483, + "color_id": 2, + "color_image": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/623bb4bd-1bcc-46f9-9abd-59c34e709ab4.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/623bb4bd-1bcc-46f9-9abd-59c34e709ab4.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/623bb4bd-1bcc-46f9-9abd-59c34e709ab4.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Romantic Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fireworks_icon_pink.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_pink.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_pink.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 484, + "color_id": 3, + "color_image": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/1fe6fd9b-90b2-425c-99d7-cc9389308f63.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/1fe6fd9b-90b2-425c-99d7-cc9389308f63.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/1fe6fd9b-90b2-425c-99d7-cc9389308f63.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Mint Green", + "color_values": [ + "#80E0D5", + "#80E0D5" + ], + "gift_image": { + "avg_color": "#FFF8EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fireworks_icon_green.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_green.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_green.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 485, + "color_id": 4, + "color_image": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/aec39d71-e6e3-49fa-a09d-55efeb6859b3.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/aec39d71-e6e3-49fa-a09d-55efeb6859b3.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/aec39d71-e6e3-49fa-a09d-55efeb6859b3.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Dreamy Purple", + "color_values": [ + "#B689FF", + "#B689FF" + ], + "gift_image": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fireworks_icon_purple.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_purple.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_purple.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Fireworks", + "diamond_count": 1088, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6, + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#C8E0BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9494c8a0bc5c03521ef65368e59cc2b8", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9494c8a0bc5c03521ef65368e59cc2b8~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9494c8a0bc5c03521ef65368e59cc2b8~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6090, + "image": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9494c8a0bc5c03521ef65368e59cc2b8", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9494c8a0bc5c03521ef65368e59cc2b8~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9494c8a0bc5c03521ef65368e59cc2b8~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Fireworks", + "primary_effect_id": 164, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gold Mine", + "diamond_count": 1000, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5587, + "image": { + "avg_color": "#523749", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gold Mine", + "primary_effect_id": 189, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Email Message", + "diamond_count": 1000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#3D3D3D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c959df6dbffd6f07849d22d2c3c07861", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c959df6dbffd6f07849d22d2c3c07861~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c959df6dbffd6f07849d22d2c3c07861~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6199, + "image": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c959df6dbffd6f07849d22d2c3c07861", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c959df6dbffd6f07849d22d2c3c07861~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c959df6dbffd6f07849d22d2c3c07861~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Email Message", + "primary_effect_id": 673, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Mirror Bloom", + "diamond_count": 1000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a9d0e9406230fa9a901d992a90574e39", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a9d0e9406230fa9a901d992a90574e39~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a9d0e9406230fa9a901d992a90574e39~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6200, + "image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a9d0e9406230fa9a901d992a90574e39", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a9d0e9406230fa9a901d992a90574e39~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a9d0e9406230fa9a901d992a90574e39~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mirror Bloom", + "primary_effect_id": 674, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Watermelon Love", + "diamond_count": 1000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1d1650cd9bb0e39d72a6e759525ffe59", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1d1650cd9bb0e39d72a6e759525ffe59~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1d1650cd9bb0e39d72a6e759525ffe59~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6781, + "image": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1d1650cd9bb0e39d72a6e759525ffe59", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1d1650cd9bb0e39d72a6e759525ffe59~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1d1650cd9bb0e39d72a6e759525ffe59~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Watermelon Love", + "primary_effect_id": 1180, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Travel with You", + "diamond_count": 999, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0043ba52e0198a90138ceca023773d39", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0043ba52e0198a90138ceca023773d39~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0043ba52e0198a90138ceca023773d39~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 4 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/753098e5a8f45afa965b73616c04cf89", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/753098e5a8f45afa965b73616c04cf89~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/753098e5a8f45afa965b73616c04cf89~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6233, + "image": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/753098e5a8f45afa965b73616c04cf89", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/753098e5a8f45afa965b73616c04cf89~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/753098e5a8f45afa965b73616c04cf89~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": true, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Travel with You", + "preview_image": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e930f3944ae299c9e816dc9bf20be44f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e930f3944ae299c9e816dc9bf20be44f~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e930f3944ae299c9e816dc9bf20be44f~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 1066, + "random_effect_info": { + "audience_key": "mask2", + "effect_ids": [], + "host_key": "mask1", + "random_gift_bubble": { + "display_text": "" + }, + "random_gift_panel_banner": { + "bg_color_values": [], + "collect_num": 0, + "display_text": "", + "round": 0, + "schema_url": "", + "target_num": 0 + } + }, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Train", + "diamond_count": 899, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4227ed71f2c494b554f9cbe2147d4899", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4227ed71f2c494b554f9cbe2147d4899~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4227ed71f2c494b554f9cbe2147d4899~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5978, + "image": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4227ed71f2c494b554f9cbe2147d4899", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4227ed71f2c494b554f9cbe2147d4899~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4227ed71f2c494b554f9cbe2147d4899~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Train", + "primary_effect_id": 375, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 218, + "color_id": 1, + "color_image": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a5ca6d8a-4a41-470f-ad1f-d7e992e2b2bf.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a5ca6d8a-4a41-470f-ad1f-d7e992e2b2bf.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a5ca6d8a-4a41-470f-ad1f-d7e992e2b2bf.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Mystery Purple", + "color_values": [ + "#B689FF", + "#B689FF" + ], + "gift_image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/70fd490f208c37c89ebdecf4c3c1c31b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 471, + "color_id": 2, + "color_image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/324dbca8-cec4-4386-ae25-21e581b56700.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/324dbca8-cec4-4386-ae25-21e581b56700.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/324dbca8-cec4-4386-ae25-21e581b56700.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Dreamy Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/pearl_pink_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_pink_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_pink_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 472, + "color_id": 3, + "color_image": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/8371679e-3ec6-4745-9312-d797a6761fd1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/8371679e-3ec6-4745-9312-d797a6761fd1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/8371679e-3ec6-4745-9312-d797a6761fd1.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Crystal Blue", + "color_values": [ + "#80C4FF", + "#80C4FF" + ], + "gift_image": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/pearl_blue_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_blue_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_blue_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 473, + "color_id": 4, + "color_image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/96a2fec2-9fca-4c26-b660-dea36e974981.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/96a2fec2-9fca-4c26-b660-dea36e974981.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/96a2fec2-9fca-4c26-b660-dea36e974981.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Coral Orange", + "color_values": [ + "#FFA15E", + "#FFA15E" + ], + "gift_image": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/pearl_orange_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_orange_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_orange_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Pearl", + "diamond_count": 800, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/70fd490f208c37c89ebdecf4c3c1c31b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5664, + "image": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/70fd490f208c37c89ebdecf4c3c1c31b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Pearl", + "primary_effect_id": 218, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent LOVE Balloon", + "diamond_count": 699, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCA3A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5488, + "image": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "LOVE Balloon", + "preview_image": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e70091e6344b745f093357e6d59dc9e6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e70091e6344b745f093357e6d59dc9e6~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e70091e6344b745f093357e6d59dc9e6~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 157, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Swan", + "diamond_count": 699, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97a26919dbf6afe262c97e22a83f4bf1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97a26919dbf6afe262c97e22a83f4bf1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97a26919dbf6afe262c97e22a83f4bf1~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5897, + "image": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97a26919dbf6afe262c97e22a83f4bf1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97a26919dbf6afe262c97e22a83f4bf1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97a26919dbf6afe262c97e22a83f4bf1~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Swan", + "primary_effect_id": 336, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Dance Together", + "diamond_count": 699, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1c7aaabca77db60f0f415739d2d61e07", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1c7aaabca77db60f0f415739d2d61e07~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1c7aaabca77db60f0f415739d2d61e07~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6554, + "image": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1c7aaabca77db60f0f415739d2d61e07", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1c7aaabca77db60f0f415739d2d61e07~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1c7aaabca77db60f0f415739d2d61e07~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Dance Together", + "primary_effect_id": 924, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cooper Skates Home", + "diamond_count": 599, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Skate Cooper, Skate!", + "key": "gift_description_6865", + "pieces": [] + }, + "left_icon": { + "avg_color": "#FAE6DC", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e3ea82178688e17212581c90d621ae31", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [], + "gold_effect": "", + "icon": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/163865bebecff06a838c71def4a40cc6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/163865bebecff06a838c71def4a40cc6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/163865bebecff06a838c71def4a40cc6~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6865, + "image": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/163865bebecff06a838c71def4a40cc6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/163865bebecff06a838c71def4a40cc6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/163865bebecff06a838c71def4a40cc6~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cooper Skates Home", + "primary_effect_id": 1192, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Money Gun", + "diamond_count": 500, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [], + "gold_effect": "", + "icon": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e0589e95a2b41970f0f30f6202f5fce6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e0589e95a2b41970f0f30f6202f5fce6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e0589e95a2b41970f0f30f6202f5fce6~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7168, + "image": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e0589e95a2b41970f0f30f6202f5fce6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e0589e95a2b41970f0f30f6202f5fce6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e0589e95a2b41970f0f30f6202f5fce6~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Money Gun", + "primary_effect_id": 1404, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Coral", + "diamond_count": 499, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d4faa402c32bf4f92bee654b2663d9f1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d4faa402c32bf4f92bee654b2663d9f1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d4faa402c32bf4f92bee654b2663d9f1~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5731, + "image": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d4faa402c32bf4f92bee654b2663d9f1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d4faa402c32bf4f92bee654b2663d9f1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d4faa402c32bf4f92bee654b2663d9f1~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Coral", + "primary_effect_id": 244, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Necklace", + "diamond_count": 400, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7ad7ebc43e1c161c0ee566395ab7882b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7ad7ebc43e1c161c0ee566395ab7882b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7ad7ebc43e1c161c0ee566395ab7882b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5662, + "image": { + "avg_color": "#3D3D3D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7ad7ebc43e1c161c0ee566395ab7882b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7ad7ebc43e1c161c0ee566395ab7882b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7ad7ebc43e1c161c0ee566395ab7882b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Necklace", + "primary_effect_id": 216, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love Chat", + "diamond_count": 400, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a54af904b8d9981fbfd414614ed3dea5", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a54af904b8d9981fbfd414614ed3dea5~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a54af904b8d9981fbfd414614ed3dea5~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6205, + "image": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a54af904b8d9981fbfd414614ed3dea5", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a54af904b8d9981fbfd414614ed3dea5~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a54af904b8d9981fbfd414614ed3dea5~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love Chat", + "primary_effect_id": 668, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Swing", + "diamond_count": 399, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBFBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4d547840317d296c4c743d310a27d575", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4d547840317d296c4c743d310a27d575~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4d547840317d296c4c743d310a27d575~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5899, + "image": { + "avg_color": "#7A6D53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4d547840317d296c4c743d310a27d575", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4d547840317d296c4c743d310a27d575~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4d547840317d296c4c743d310a27d575~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Swing", + "primary_effect_id": 338, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cotton the Seal", + "diamond_count": 399, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/90671376888d6f834c97b0d34bc8231a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/90671376888d6f834c97b0d34bc8231a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/90671376888d6f834c97b0d34bc8231a~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8349, + "image": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/90671376888d6f834c97b0d34bc8231a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/90671376888d6f834c97b0d34bc8231a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/90671376888d6f834c97b0d34bc8231a~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cotton the Seal", + "primary_effect_id": 2489, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Air Dancer", + "diamond_count": 300, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97c975dcce2483027ececde2b6719761", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97c975dcce2483027ececde2b6719761~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97c975dcce2483027ececde2b6719761~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5661, + "image": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97c975dcce2483027ececde2b6719761", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97c975dcce2483027ececde2b6719761~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97c975dcce2483027ececde2b6719761~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Air Dancer", + "primary_effect_id": 215, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Birthday Cake", + "diamond_count": 300, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6D53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2cadff123e24e328c040380c44c7ea6b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2cadff123e24e328c040380c44c7ea6b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2cadff123e24e328c040380c44c7ea6b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6071, + "image": { + "avg_color": "#374C52", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2cadff123e24e328c040380c44c7ea6b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2cadff123e24e328c040380c44c7ea6b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2cadff123e24e328c040380c44c7ea6b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Birthday Cake", + "primary_effect_id": 270, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Rock 'n' Roll", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/57154f268c641793bca116a4b87d2bfa", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/57154f268c641793bca116a4b87d2bfa~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/57154f268c641793bca116a4b87d2bfa~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5882, + "image": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/57154f268c641793bca116a4b87d2bfa", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/57154f268c641793bca116a4b87d2bfa~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/57154f268c641793bca116a4b87d2bfa~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Rock 'n' Roll", + "primary_effect_id": 325, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Boxing Gloves", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9f8bd92363c400c284179f6719b6ba9c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9f8bd92363c400c284179f6719b6ba9c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9f8bd92363c400c284179f6719b6ba9c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6007, + "image": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9f8bd92363c400c284179f6719b6ba9c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9f8bd92363c400c284179f6719b6ba9c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9f8bd92363c400c284179f6719b6ba9c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Boxing Gloves", + "primary_effect_id": 388, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Duck", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e172f660a1d4f95813a3ace0fde42323", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e172f660a1d4f95813a3ace0fde42323~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e172f660a1d4f95813a3ace0fde42323~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6265, + "image": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e172f660a1d4f95813a3ace0fde42323", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e172f660a1d4f95813a3ace0fde42323~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e172f660a1d4f95813a3ace0fde42323~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Duck", + "primary_effect_id": 638, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Corgi", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/148eef0884fdb12058d1c6897d1e02b9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/148eef0884fdb12058d1c6897d1e02b9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/148eef0884fdb12058d1c6897d1e02b9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6267, + "image": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/148eef0884fdb12058d1c6897d1e02b9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/148eef0884fdb12058d1c6897d1e02b9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/148eef0884fdb12058d1c6897d1e02b9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Corgi", + "primary_effect_id": 640, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Dancing Cactus", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1cc030f69570f04ee7955781b997dc44", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1cc030f69570f04ee7955781b997dc44~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1cc030f69570f04ee7955781b997dc44~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6532, + "image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1cc030f69570f04ee7955781b997dc44", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1cc030f69570f04ee7955781b997dc44~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1cc030f69570f04ee7955781b997dc44~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Dancing Cactus", + "primary_effect_id": 915, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Shiba Inu", + "diamond_count": 222, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5482, + "image": { + "avg_color": "#EBD8CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Shiba Inu", + "primary_effect_id": 8, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 167, + "color_id": 1, + "color_image": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/9a8cca7c-386c-4662-b588-72d10c6caf6c.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/9a8cca7c-386c-4662-b588-72d10c6caf6c.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/9a8cca7c-386c-4662-b588-72d10c6caf6c.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lightning Purple", + "color_values": [ + "#8A8AFF", + "#8A8AFF" + ], + "gift_image": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/08af67ab13a8053269bf539fd27f3873.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 492, + "color_id": 2, + "color_image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/854a3fcd-bdf4-4a13-a3bf-29d6f36e07a9.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/854a3fcd-bdf4-4a13-a3bf-29d6f36e07a9.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/854a3fcd-bdf4-4a13-a3bf-29d6f36e07a9.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Sakura Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/glasses_pink_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_pink_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_pink_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 493, + "color_id": 3, + "color_image": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a34cc268-1118-4cf1-9efd-295543d32726.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a34cc268-1118-4cf1-9efd-295543d32726.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a34cc268-1118-4cf1-9efd-295543d32726.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Rock Blue", + "color_values": [ + "#6699FF", + "#6699FF" + ], + "gift_image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/glasses_blue_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_blue_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_blue_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 494, + "color_id": 4, + "color_image": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/169b5125-6441-4c5a-974e-5f4afcdb468a.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/169b5125-6441-4c5a-974e-5f4afcdb468a.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/169b5125-6441-4c5a-974e-5f4afcdb468a.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Sunny Orange", + "color_values": [ + "#FFA15E", + "#FFA15E" + ], + "gift_image": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/glasses_orange_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_orange_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_orange_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Sunglasses", + "diamond_count": 199, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/08af67ab13a8053269bf539fd27f3873.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5509, + "image": { + "avg_color": "#CEE5EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/08af67ab13a8053269bf539fd27f3873.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Sunglasses", + "primary_effect_id": 167, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Hearts", + "diamond_count": 199, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#3D3D3D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5586, + "image": { + "avg_color": "#A3967C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Hearts", + "primary_effect_id": 3306, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Lock and Key", + "diamond_count": 199, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2c9cec686b98281f7319b1a02ba2864a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2c9cec686b98281f7319b1a02ba2864a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2c9cec686b98281f7319b1a02ba2864a~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5880, + "image": { + "avg_color": "#EBFBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2c9cec686b98281f7319b1a02ba2864a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2c9cec686b98281f7319b1a02ba2864a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2c9cec686b98281f7319b1a02ba2864a~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Lock and Key", + "primary_effect_id": 326, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love Focus", + "diamond_count": 199, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/996895614694e9d8f14976ae2a570936", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/996895614694e9d8f14976ae2a570936~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/996895614694e9d8f14976ae2a570936~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6436, + "image": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/996895614694e9d8f14976ae2a570936", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/996895614694e9d8f14976ae2a570936~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/996895614694e9d8f14976ae2a570936~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love Focus", + "primary_effect_id": 2351, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Garland Headpiece", + "diamond_count": 199, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6437, + "image": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Garland Headpiece", + "primary_effect_id": 2277, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love You", + "diamond_count": 199, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d7722d5348f4289db80fe7a29f4a6f74", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d7722d5348f4289db80fe7a29f4a6f74~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d7722d5348f4289db80fe7a29f4a6f74~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Say I love you in your own language", + "key": "gift_description_6671", + "pieces": [] + }, + "left_icon": { + "avg_color": "#7C7CA3", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/effdf81513685c4b1c579fa90b84d299", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/effdf81513685c4b1c579fa90b84d299~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/effdf81513685c4b1c579fa90b84d299~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 2 + ], + "gold_effect": "", + "icon": { + "avg_color": "#523737", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/134e51c00f46e01976399883ca4e4798", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/134e51c00f46e01976399883ca4e4798~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/134e51c00f46e01976399883ca4e4798~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6671, + "image": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/134e51c00f46e01976399883ca4e4798", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/134e51c00f46e01976399883ca4e4798~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/134e51c00f46e01976399883ca4e4798~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love You", + "primary_effect_id": 1023, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cheer For You", + "diamond_count": 199, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6713, + "image": { + "avg_color": "#7A6D53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cheer For You", + "primary_effect_id": 1210, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Goggles", + "diamond_count": 199, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/488be317f77358386438d04e38801b5e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/488be317f77358386438d04e38801b5e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/488be317f77358386438d04e38801b5e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8066, + "image": { + "avg_color": "#CCA3BE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/488be317f77358386438d04e38801b5e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/488be317f77358386438d04e38801b5e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/488be317f77358386438d04e38801b5e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Goggles", + "primary_effect_id": 3307, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Butterfly", + "diamond_count": 169, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5729, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Butterfly", + "primary_effect_id": 242, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Music Note", + "diamond_count": 169, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#8F8F8F", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b0b97078e33e46c8f7b7b3c321f684c3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b0b97078e33e46c8f7b7b3c321f684c3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b0b97078e33e46c8f7b7b3c321f684c3~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5915, + "image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b0b97078e33e46c8f7b7b3c321f684c3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b0b97078e33e46c8f7b7b3c321f684c3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b0b97078e33e46c8f7b7b3c321f684c3~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Music Note", + "primary_effect_id": 343, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Confetti", + "diamond_count": 100, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/cb4e11b3834e149f08e1cdcc93870b26", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/cb4e11b3834e149f08e1cdcc93870b26~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/cb4e11b3834e149f08e1cdcc93870b26~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5585, + "image": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/cb4e11b3834e149f08e1cdcc93870b26", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/cb4e11b3834e149f08e1cdcc93870b26~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/cb4e11b3834e149f08e1cdcc93870b26~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Confetti", + "primary_effect_id": 210, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Hand Hearts", + "diamond_count": 100, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6cd022271dc4669d182cad856384870f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6cd022271dc4669d182cad856384870f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6cd022271dc4669d182cad856384870f~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5660, + "image": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6cd022271dc4669d182cad856384870f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6cd022271dc4669d182cad856384870f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6cd022271dc4669d182cad856384870f~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Hand Hearts", + "primary_effect_id": 214, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 217, + "color_id": 1, + "color_image": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a254cce3-3662-4c0e-84d7-d06bf3af3e2e.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a254cce3-3662-4c0e-84d7-d06bf3af3e2e.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a254cce3-3662-4c0e-84d7-d06bf3af3e2e.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Sky Blue", + "color_values": [ + "#80C4FF", + "#80C4FF" + ], + "gift_image": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0f158a08f7886189cdabf496e8a07c21", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 453, + "color_id": 2, + "color_image": { + "avg_color": "#D6D6D6", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/f05eccc4-12ec-488e-8424-1da90271d9f8.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/f05eccc4-12ec-488e-8424-1da90271d9f8.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/f05eccc4-12ec-488e-8424-1da90271d9f8.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Dreamy Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/crane_pink_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_pink_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_pink_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 454, + "color_id": 3, + "color_image": { + "avg_color": "#373752", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/c251d561-de3a-4127-b873-aa952c7bc4c5.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/c251d561-de3a-4127-b873-aa952c7bc4c5.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/c251d561-de3a-4127-b873-aa952c7bc4c5.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Hopeful Orange", + "color_values": [ + "#FFA15E", + "#FFA15E" + ], + "gift_image": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/crane_orange_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_orange_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_orange_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 455, + "color_id": 4, + "color_image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/6571e34e-b7ff-4d99-8965-e51cefbe4123.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/6571e34e-b7ff-4d99-8965-e51cefbe4123.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/6571e34e-b7ff-4d99-8965-e51cefbe4123.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Mystery Purple", + "color_values": [ + "#B689FF", + "#B689FF" + ], + "gift_image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/crane_purple_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_purple_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_purple_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Paper Crane", + "diamond_count": 99, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0f158a08f7886189cdabf496e8a07c21", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5659, + "image": { + "avg_color": "#EBEBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0f158a08f7886189cdabf496e8a07c21", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Paper Crane", + "primary_effect_id": 217, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Little Crown", + "diamond_count": 99, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/cf3db11b94a975417043b53401d0afe1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/cf3db11b94a975417043b53401d0afe1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/cf3db11b94a975417043b53401d0afe1~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6097, + "image": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/cf3db11b94a975417043b53401d0afe1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/cf3db11b94a975417043b53401d0afe1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/cf3db11b94a975417043b53401d0afe1~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Little Crown", + "primary_effect_id": 3304, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cap", + "diamond_count": 99, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6c2ab2da19249ea570a2ece5e3377f04", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6c2ab2da19249ea570a2ece5e3377f04~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6c2ab2da19249ea570a2ece5e3377f04~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6104, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6c2ab2da19249ea570a2ece5e3377f04", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6c2ab2da19249ea570a2ece5e3377f04~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6c2ab2da19249ea570a2ece5e3377f04~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cap", + "primary_effect_id": 2342, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Hat and Mustache", + "diamond_count": 99, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6427, + "image": { + "avg_color": "#EBD8CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Hat and Mustache", + "primary_effect_id": 2349, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Like-Pop", + "diamond_count": 99, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/42958ef42904682210b15f62ce824e5b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/42958ef42904682210b15f62ce824e5b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/42958ef42904682210b15f62ce824e5b~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Fly the Gift to the creator/guest to support", + "key": "pm_mt_gift_banner_flyingGift", + "pieces": [] + }, + "left_icon": { + "avg_color": "#CEE5EB", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d0857daaa739c634e07ced7a309c3d8e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d0857daaa739c634e07ced7a309c3d8e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d0857daaa739c634e07ced7a309c3d8e~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 3, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8130, + "image": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Like-Pop", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Birthday Party", + "diamond_count": 6999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#89A37C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0a7316f4403b05c8fc33071909521f02", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0a7316f4403b05c8fc33071909521f02~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0a7316f4403b05c8fc33071909521f02~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6787, + "image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0a7316f4403b05c8fc33071909521f02", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0a7316f4403b05c8fc33071909521f02~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0a7316f4403b05c8fc33071909521f02~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Birthday Party", + "primary_effect_id": 1221, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Super Cake", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/87fb9507cb533d34e956f5622183404d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/87fb9507cb533d34e956f5622183404d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/87fb9507cb533d34e956f5622183404d~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6797, + "image": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/87fb9507cb533d34e956f5622183404d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/87fb9507cb533d34e956f5622183404d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/87fb9507cb533d34e956f5622183404d~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Super Cake", + "primary_effect_id": 1209, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Birthday Glasses", + "diamond_count": 199, + "duration": 3000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#374C52", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3967C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/79d87a1f8fec06fcfc0284b99f78ad43", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/79d87a1f8fec06fcfc0284b99f78ad43~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/79d87a1f8fec06fcfc0284b99f78ad43~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6776, + "image": { + "avg_color": "#EBD8CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/79d87a1f8fec06fcfc0284b99f78ad43", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/79d87a1f8fec06fcfc0284b99f78ad43~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/79d87a1f8fec06fcfc0284b99f78ad43~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Birthday Glasses", + "primary_effect_id": 1088, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Star Throne", + "diamond_count": 7999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBCECE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/30063f6bc45aecc575c49ff3dbc33831", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7764, + "image": { + "avg_color": "#373752", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/30063f6bc45aecc575c49ff3dbc33831", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Star Throne", + "primary_effect_id": 1911, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Heart", + "diamond_count": 10, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5480, + "image": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Heart", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Panda", + "diamond_count": 5, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/77259f70262b6632b9926a4a7ed12391", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/77259f70262b6632b9926a4a7ed12391~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/77259f70262b6632b9926a4a7ed12391~tplv-obj.webp" + ], + "width": 0 + }, + "id": 37, + "image": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/77259f70262b6632b9926a4a7ed12391", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/77259f70262b6632b9926a4a7ed12391~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/77259f70262b6632b9926a4a7ed12391~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Panda", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gift Box", + "diamond_count": 3999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 3 + ], + "gold_effect": "", + "icon": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3646c259f8ce6f79c762ad00ce51dda0", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3646c259f8ce6f79c762ad00ce51dda0~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3646c259f8ce6f79c762ad00ce51dda0~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6835, + "image": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3646c259f8ce6f79c762ad00ce51dda0", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3646c259f8ce6f79c762ad00ce51dda0~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3646c259f8ce6f79c762ad00ce51dda0~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gift Box", + "primary_effect_id": 1151, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Coffee", + "diamond_count": 1, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#89A37C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/02492214b9bd50fee2d69fd0d089c025.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/02492214b9bd50fee2d69fd0d089c025.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/02492214b9bd50fee2d69fd0d089c025.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5479, + "image": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/02492214b9bd50fee2d69fd0d089c025.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/02492214b9bd50fee2d69fd0d089c025.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/02492214b9bd50fee2d69fd0d089c025.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Coffee", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Thumbs Up", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Send a {0:string} to vote and support the host.", + "key": "pm_mt_gift_poll_gift_panel_hint", + "pieces": [ + { + "string_value": "Thumbs Up", + "type": 1 + } + ] + }, + "left_icon": { + "avg_color": "#53737A", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_poll_banner_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_poll_banner_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_poll_banner_icon.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#523737", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/570a663e27bdc460e05556fd1596771a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/570a663e27bdc460e05556fd1596771a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/570a663e27bdc460e05556fd1596771a~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6246, + "image": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/570a663e27bdc460e05556fd1596771a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/570a663e27bdc460e05556fd1596771a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/570a663e27bdc460e05556fd1596771a~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Thumbs Up", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Heart", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Send a {0:string} to vote and support the host.", + "key": "pm_mt_gift_poll_gift_panel_hint", + "pieces": [ + { + "string_value": "Heart", + "type": 1 + } + ] + }, + "left_icon": { + "avg_color": "#CEE5EB", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_poll_banner_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_poll_banner_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_poll_banner_icon.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/dd300fd35a757d751301fba862a258f1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/dd300fd35a757d751301fba862a258f1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/dd300fd35a757d751301fba862a258f1~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6247, + "image": { + "avg_color": "#523737", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/dd300fd35a757d751301fba862a258f1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/dd300fd35a757d751301fba862a258f1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/dd300fd35a757d751301fba862a258f1~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Heart", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Cake Slice", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#373752", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f681afb4be36d8a321eac741d387f1e2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f681afb4be36d8a321eac741d387f1e2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f681afb4be36d8a321eac741d387f1e2~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6784, + "image": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f681afb4be36d8a321eac741d387f1e2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f681afb4be36d8a321eac741d387f1e2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f681afb4be36d8a321eac741d387f1e2~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cake Slice", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Glow Stick", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#A3967C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8e1a5d66370c5586545e358e37c10d25", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8e1a5d66370c5586545e358e37c10d25~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8e1a5d66370c5586545e358e37c10d25~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6788, + "image": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8e1a5d66370c5586545e358e37c10d25", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8e1a5d66370c5586545e358e37c10d25~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8e1a5d66370c5586545e358e37c10d25~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Glow Stick", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love you", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ab0a7b44bfc140923bb74164f6f880ab", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ab0a7b44bfc140923bb74164f6f880ab~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ab0a7b44bfc140923bb74164f6f880ab~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6890, + "image": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ab0a7b44bfc140923bb74164f6f880ab", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ab0a7b44bfc140923bb74164f6f880ab~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ab0a7b44bfc140923bb74164f6f880ab~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love you", + "primary_effect_id": 1204, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Star", + "diamond_count": 99, + "duration": 3000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#523749", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/712f2703c388c70dd8ce492961708304", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/712f2703c388c70dd8ce492961708304~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/712f2703c388c70dd8ce492961708304~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Subscribe to {0:string} to unlock exclusive Gifts", + "key": "pm_mt_sub_gift_panel_hint", + "pieces": [ + { + "string_value": "oszijestem", + "type": 1 + } + ] + }, + "left_icon": { + "avg_color": "#C8E0BC", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_panel_subs_icon_3x.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_panel_subs_icon_3x.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_panel_subs_icon_3x.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/485175fda92f4d2f862e915cbcf8f5c4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/485175fda92f4d2f862e915cbcf8f5c4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/485175fda92f4d2f862e915cbcf8f5c4~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6432, + "image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/485175fda92f4d2f862e915cbcf8f5c4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/485175fda92f4d2f862e915cbcf8f5c4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/485175fda92f4d2f862e915cbcf8f5c4~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": true, + "lock_type": 1 + }, + "name": "Star", + "primary_effect_id": 3309, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Thunder Falcon", + "diamond_count": 39999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d4aa0526d03ab0bf8a614f5126153404", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d4aa0526d03ab0bf8a614f5126153404~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d4aa0526d03ab0bf8a614f5126153404~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6D53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/26f3fbcda383e6093a19b8e7351a164c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/26f3fbcda383e6093a19b8e7351a164c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/26f3fbcda383e6093a19b8e7351a164c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8651, + "image": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/26f3fbcda383e6093a19b8e7351a164c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/26f3fbcda383e6093a19b8e7351a164c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/26f3fbcda383e6093a19b8e7351a164c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 43, + "lock": true, + "lock_type": 3 + }, + "name": "Thunder Falcon", + "preview_image": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1bb7bac8a871a584cf4d3a3a89bc5dc6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1bb7bac8a871a584cf4d3a3a89bc5dc6~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1bb7bac8a871a584cf4d3a3a89bc5dc6~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 3321, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent TikTok Universe+", + "diamond_count": 34999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8f36121ac6256c88618b6fc73a47c066", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8f36121ac6256c88618b6fc73a47c066~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8f36121ac6256c88618b6fc73a47c066~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "A celebratory message will be displayed with the host's and your username as well as the gift name in all LIVE videos in your region.", + "key": "pm_mt_live_gift_panel_note_platform_announcement", + "pieces": [] + }, + "left_icon": { + "avg_color": "#D6D6D6", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_broadcast_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_broadcast_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_broadcast_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b13105782e8bf8fbefaa83b7af413cee", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b13105782e8bf8fbefaa83b7af413cee~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b13105782e8bf8fbefaa83b7af413cee~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7312, + "image": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b13105782e8bf8fbefaa83b7af413cee", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b13105782e8bf8fbefaa83b7af413cee~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b13105782e8bf8fbefaa83b7af413cee~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": true, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 40, + "lock": true, + "lock_type": 3 + }, + "name": "TikTok Universe+", + "preview_image": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/14fea2f1fb315a2474b594a44f9d1eef", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/14fea2f1fb315a2474b594a44f9d1eef~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/14fea2f1fb315a2474b594a44f9d1eef~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 1503, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Premium Shuttle", + "diamond_count": 20000, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/56c23f635641e9269c5e412a7af46779", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/56c23f635641e9269c5e412a7af46779~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/56c23f635641e9269c5e412a7af46779~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c2b287adee5151b7889d6e3d45b72e44", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c2b287adee5151b7889d6e3d45b72e44~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c2b287adee5151b7889d6e3d45b72e44~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7125, + "image": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c2b287adee5151b7889d6e3d45b72e44", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c2b287adee5151b7889d6e3d45b72e44~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c2b287adee5151b7889d6e3d45b72e44~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 30, + "lock": true, + "lock_type": 3 + }, + "name": "Premium Shuttle", + "primary_effect_id": 1363, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Fly Love", + "diamond_count": 19999, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#89A37C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6ae387b1420bd98f0b74ab141b787323", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6ae387b1420bd98f0b74ab141b787323~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6ae387b1420bd98f0b74ab141b787323~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a598ba4c7024f4d46c1268be4d82f901", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a598ba4c7024f4d46c1268be4d82f901~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a598ba4c7024f4d46c1268be4d82f901~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8248, + "image": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a598ba4c7024f4d46c1268be4d82f901", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a598ba4c7024f4d46c1268be4d82f901~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a598ba4c7024f4d46c1268be4d82f901~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 50, + "lock": true, + "lock_type": 4 + }, + "name": "Fly Love", + "primary_effect_id": 3146, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Happy Party", + "diamond_count": 6999, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#7A536D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/833ac2f66186665b9a37d4064efd20bc", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/833ac2f66186665b9a37d4064efd20bc~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/833ac2f66186665b9a37d4064efd20bc~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/41774a8ba83c59055e5f2946d51215b4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/41774a8ba83c59055e5f2946d51215b4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/41774a8ba83c59055e5f2946d51215b4~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8247, + "image": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/41774a8ba83c59055e5f2946d51215b4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/41774a8ba83c59055e5f2946d51215b4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/41774a8ba83c59055e5f2946d51215b4~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 40, + "lock": true, + "lock_type": 4 + }, + "name": "Happy Party", + "primary_effect_id": 2388, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Signature Jet", + "diamond_count": 4888, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#EBD8CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/908deecbd5c74fed06c87b8ff264f15c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/908deecbd5c74fed06c87b8ff264f15c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/908deecbd5c74fed06c87b8ff264f15c~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBEBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fe27eba54a50c0a687e3dc0f2c02067d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fe27eba54a50c0a687e3dc0f2c02067d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fe27eba54a50c0a687e3dc0f2c02067d~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7124, + "image": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fe27eba54a50c0a687e3dc0f2c02067d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fe27eba54a50c0a687e3dc0f2c02067d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fe27eba54a50c0a687e3dc0f2c02067d~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 25, + "lock": true, + "lock_type": 3 + }, + "name": "Signature Jet", + "primary_effect_id": 1364, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Here We Go", + "diamond_count": 1799, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#C8E0BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1a727de4c9ad59b37c9335879492b515", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1a727de4c9ad59b37c9335879492b515~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1a727de4c9ad59b37c9335879492b515~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8245, + "image": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 30, + "lock": true, + "lock_type": 4 + }, + "name": "Here We Go", + "primary_effect_id": 2387, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Shiny air balloon", + "diamond_count": 1000, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2681e18d643e2187a43f0b5ff9383e4d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2681e18d643e2187a43f0b5ff9383e4d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2681e18d643e2187a43f0b5ff9383e4d~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A536D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7123, + "image": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 20, + "lock": true, + "lock_type": 3 + }, + "name": "Shiny air balloon", + "primary_effect_id": 1365, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gem Gun", + "diamond_count": 500, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6a98b73a7ff75a67f8d08d56da065939", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6a98b73a7ff75a67f8d08d56da065939~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6a98b73a7ff75a67f8d08d56da065939~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/dd06007ade737f1001977590b11d3f61", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/dd06007ade737f1001977590b11d3f61~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/dd06007ade737f1001977590b11d3f61~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7122, + "image": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/dd06007ade737f1001977590b11d3f61", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/dd06007ade737f1001977590b11d3f61~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/dd06007ade737f1001977590b11d3f61~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 15, + "lock": true, + "lock_type": 3 + }, + "name": "Gem Gun", + "primary_effect_id": 1366, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Hands Up", + "diamond_count": 499, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/136e10d32ceeaf5c633e14bb1fdfb0df", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/136e10d32ceeaf5c633e14bb1fdfb0df~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/136e10d32ceeaf5c633e14bb1fdfb0df~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f4d906542408e6c87cf0a42f7426f0c6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f4d906542408e6c87cf0a42f7426f0c6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f4d906542408e6c87cf0a42f7426f0c6~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8244, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f4d906542408e6c87cf0a42f7426f0c6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f4d906542408e6c87cf0a42f7426f0c6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f4d906542408e6c87cf0a42f7426f0c6~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 20, + "lock": true, + "lock_type": 4 + }, + "name": "Hands Up", + "primary_effect_id": 2386, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Marvelous Confetti", + "diamond_count": 100, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c87d6568e9a82629c0703e176cc347a5", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c87d6568e9a82629c0703e176cc347a5~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c87d6568e9a82629c0703e176cc347a5~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fccc851d351716bc8b34ec65786c727d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fccc851d351716bc8b34ec65786c727d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fccc851d351716bc8b34ec65786c727d~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7121, + "image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fccc851d351716bc8b34ec65786c727d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fccc851d351716bc8b34ec65786c727d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fccc851d351716bc8b34ec65786c727d~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 10, + "lock": true, + "lock_type": 3 + }, + "name": "Marvelous Confetti", + "primary_effect_id": 1367, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Cheer You Up", + "diamond_count": 9, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#C8E0BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/697be30d50be77d7e088955422c42837", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/697be30d50be77d7e088955422c42837~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/697be30d50be77d7e088955422c42837~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8243, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 10, + "lock": true, + "lock_type": 4 + }, + "name": "Cheer You Up", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Heart Me", + "diamond_count": 1, + "duration": 3000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6415678665a355a01e2765ea159c2426", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6415678665a355a01e2765ea159c2426~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6415678665a355a01e2765ea159c2426~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d56945782445b0b8c8658ed44f894c7b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d56945782445b0b8c8658ed44f894c7b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d56945782445b0b8c8658ed44f894c7b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7934, + "image": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d56945782445b0b8c8658ed44f894c7b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d56945782445b0b8c8658ed44f894c7b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d56945782445b0b8c8658ed44f894c7b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 5 + }, + "name": "Heart Me", + "primary_effect_id": 2996, + "tracker_params": {}, + "type": 4 + } + ], + "gifts_info": { + "color_gift_icon_animation": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/MotorcycleV2.webp", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/MotorcycleV2.webp~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/MotorcycleV2.webp~tplv-obj.image" + ], + "width": 0 + }, + "default_loc_color_gift_id": 5765, + "deprecated1": [], + "deprecated2": [], + "deprecated3": [], + "deprecated4": [], + "deprecated5": [], + "deprecated6": [], + "enable_first_recharge_dynamic_effect": false, + "first_recharge_gift_info": { + "discount_percentage": 0, + "expire_at": 0, + "gift_id": 0, + "original_diamond_count": 0, + "remain_times": 0 + }, + "freq_limit_gift_info": { + "freq_limit_gift_options": [ + { + "close_gift_panel": true, + "frequency_limit": 1, + "gift_id": 6466, + "refresh_timestamp": 1691107200, + "work_single_anchor": true + }, + { + "close_gift_panel": true, + "frequency_limit": 1, + "gift_id": 7934, + "refresh_timestamp": 1691107200, + "work_single_anchor": true + } + ] + }, + "gift_box_scheme_url": "", + "gift_combo_infos": [], + "gift_group_infos": [ + { + "group_count": 10, + "group_text": "" + }, + { + "group_count": 99, + "group_text": "" + }, + { + "group_count": 365, + "group_text": "" + }, + { + "group_count": 999, + "group_text": "" + } + ], + "gift_icon_info": { + "effect_uri": "", + "icon": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "", + "url_list": [], + "width": 0 + }, + "icon_id": 0, + "icon_uri": "", + "name": "", + "valid_end_at": 0, + "valid_start_at": 0, + "with_effect": false + }, + "gift_poll_info": { + "gift_poll_options": [ + { + "gift_id": 6246, + "poll_result_icon": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/poll_gift_star.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/poll_gift_star.png~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/poll_gift_star.png~tplv-obj.image" + ], + "width": 0 + } + }, + { + "gift_id": 6247, + "poll_result_icon": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/poll_gift_heart.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/poll_gift_heart.png~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/poll_gift_heart.png~tplv-obj.image" + ], + "width": 0 + } + } + ] + }, + "gift_words": "", + "hide_recharge_entry": false, + "is_display_gift_box_icon": false, + "is_universal": false, + "new_gift_id": 0, + "panel_gift_box_icon": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "", + "url_list": [], + "width": 0 + }, + "recently_sent_color_gift_id": 0, + "recommended_random_gift_id": 6233, + "risk_ctl_strategies": { + "disable_send_gift": true, + "reason": "disable_self_gifting", + "risk_ctl_error_msg": "Action not available in your country or region" + }, + "show_first_recharge_entrance": false, + "speedy_gift_id": 0 + }, + "hash": "", + "hot_fields": [ + "id", + "for_linkmic", + "is_displayed_on_panel", + "gift_panel_banner", + "can_put_in_gift_box", + "gift_box_info", + "tracker_params", + "lock_info", + "gift_rank_recommend_info", + "random_effect_info", + "is_effect_befview", + "gift_sub_type" + ], + "is_full_gift_data": true, + "pages": [ + { + "display": true, + "event_name": "livesdk_gift_tab_click", + "force_insert_metrics": { + "6064": { + "force_index_config": 11, + "force_insert_type": 5 + }, + "6776": { + "force_index_config": 26, + "force_insert_type": 4 + }, + "6787": { + "force_index_config": 28, + "force_insert_type": 4 + }, + "6797": { + "force_index_config": 27, + "force_insert_type": 4 + }, + "6835": { + "force_index_config": 17, + "force_insert_type": 4 + }, + "7060": { + "force_index_config": 2, + "force_insert_type": 5 + }, + "7569": { + "force_index_config": 7, + "force_insert_type": 5 + }, + "7594": { + "force_index_config": 3, + "force_insert_type": 5 + }, + "7764": { + "force_index_config": 25, + "force_insert_type": 4 + }, + "8581": { + "force_index_config": 29, + "force_insert_type": 4 + } + }, + "force_insert_priority_map": { + "0": -1, + "1": 5, + "2": 15, + "3": 25, + "4": 20, + "5": 10, + "6": 40, + "7": 35, + "8": 30, + "9": 28 + }, + "frequently_used_gifts": [], + "gifts": [ + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Rose", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":818931826}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/eba3a9bb85c33e017f3648eaf88d7189", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/eba3a9bb85c33e017f3648eaf88d7189~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/eba3a9bb85c33e017f3648eaf88d7189~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5655, + "image": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/eba3a9bb85c33e017f3648eaf88d7189", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/eba3a9bb85c33e017f3648eaf88d7189~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/eba3a9bb85c33e017f3648eaf88d7189~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Rose", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent TikTok", + "diamond_count": 1, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":786472856}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBFBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/802a21ae29f9fae5abe3693de9f874bd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/802a21ae29f9fae5abe3693de9f874bd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/802a21ae29f9fae5abe3693de9f874bd~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5269, + "image": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/802a21ae29f9fae5abe3693de9f874bd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/802a21ae29f9fae5abe3693de9f874bd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/802a21ae29f9fae5abe3693de9f874bd~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "TikTok", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Victory", + "diamond_count": 10, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":1214097429}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/54c841ca3aebd0d81ae568b71f8233c9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/54c841ca3aebd0d81ae568b71f8233c9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/54c841ca3aebd0d81ae568b71f8233c9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7060, + "image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/54c841ca3aebd0d81ae568b71f8233c9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/54c841ca3aebd0d81ae568b71f8233c9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/54c841ca3aebd0d81ae568b71f8233c9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Victory", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "Sent Wand", + "diamond_count": 5, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":2036268810}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/94b3f0f4f6b1da3bab94de96493de031", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/94b3f0f4f6b1da3bab94de96493de031~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/94b3f0f4f6b1da3bab94de96493de031~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7594, + "image": { + "avg_color": "#523737", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/94b3f0f4f6b1da3bab94de96493de031", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/94b3f0f4f6b1da3bab94de96493de031~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/94b3f0f4f6b1da3bab94de96493de031~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Wand", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Finger Heart", + "diamond_count": 5, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":495743527}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a4c4dc437fd3a6632aba149769491f49.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a4c4dc437fd3a6632aba149769491f49.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a4c4dc437fd3a6632aba149769491f49.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5487, + "image": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a4c4dc437fd3a6632aba149769491f49.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a4c4dc437fd3a6632aba149769491f49.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a4c4dc437fd3a6632aba149769491f49.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Finger Heart", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Perfume", + "diamond_count": 20, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":517095829}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/20b8f61246c7b6032777bb81bf4ee055", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/20b8f61246c7b6032777bb81bf4ee055~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/20b8f61246c7b6032777bb81bf4ee055~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5658, + "image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/20b8f61246c7b6032777bb81bf4ee055", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/20b8f61246c7b6032777bb81bf4ee055~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/20b8f61246c7b6032777bb81bf4ee055~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Perfume", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Doughnut", + "diamond_count": 30, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":1265551706}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4e7ad6bdf0a1d860c538f38026d4e812", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4e7ad6bdf0a1d860c538f38026d4e812~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4e7ad6bdf0a1d860c538f38026d4e812~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5879, + "image": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4e7ad6bdf0a1d860c538f38026d4e812", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4e7ad6bdf0a1d860c538f38026d4e812~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4e7ad6bdf0a1d860c538f38026d4e812~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Doughnut", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Game Controller", + "diamond_count": 100, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#373752", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "{\"key\":1419744554}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/20ec0eb50d82c2c445cb8391fd9fe6e2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/20ec0eb50d82c2c445cb8391fd9fe6e2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/20ec0eb50d82c2c445cb8391fd9fe6e2~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7569, + "image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/20ec0eb50d82c2c445cb8391fd9fe6e2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/20ec0eb50d82c2c445cb8391fd9fe6e2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/20ec0eb50d82c2c445cb8391fd9fe6e2~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Game Controller", + "primary_effect_id": 1748, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Ice Cream Cone", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":481878748}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/968820bc85e274713c795a6aef3f7c67", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/968820bc85e274713c795a6aef3f7c67~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/968820bc85e274713c795a6aef3f7c67~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5827, + "image": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/968820bc85e274713c795a6aef3f7c67", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/968820bc85e274713c795a6aef3f7c67~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/968820bc85e274713c795a6aef3f7c67~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Ice Cream Cone", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Weights", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "{\"key\":1573271171}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a99fc8541c7b91305de1cdcf47714d03", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a99fc8541c7b91305de1cdcf47714d03~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a99fc8541c7b91305de1cdcf47714d03~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5760, + "image": { + "avg_color": "#EBCECE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a99fc8541c7b91305de1cdcf47714d03", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a99fc8541c7b91305de1cdcf47714d03~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a99fc8541c7b91305de1cdcf47714d03~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Weights", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Football", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":1772391655}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3967C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c043cd9e418f13017793ddf6e0c6ee99", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c043cd9e418f13017793ddf6e0c6ee99~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c043cd9e418f13017793ddf6e0c6ee99~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6093, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c043cd9e418f13017793ddf6e0c6ee99", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c043cd9e418f13017793ddf6e0c6ee99~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c043cd9e418f13017793ddf6e0c6ee99~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Football", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent GG", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#523737", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "{\"key\":64226901}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6064, + "image": { + "avg_color": "#EBEBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3f02fa9594bd1495ff4e8aa5ae265eef~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "GG", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Tennis", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":1341960218}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/09d9b188294ecf9b210c06f4e984a3bd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/09d9b188294ecf9b210c06f4e984a3bd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/09d9b188294ecf9b210c06f4e984a3bd~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6169, + "image": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/09d9b188294ecf9b210c06f4e984a3bd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/09d9b188294ecf9b210c06f4e984a3bd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/09d9b188294ecf9b210c06f4e984a3bd~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Tennis", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Mini Speaker", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":444711051}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#89A37C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/728cc7436005cace2791aa7500e4bf95", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/728cc7436005cace2791aa7500e4bf95~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/728cc7436005cace2791aa7500e4bf95~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6042, + "image": { + "avg_color": "#CCA3BE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/728cc7436005cace2791aa7500e4bf95", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/728cc7436005cace2791aa7500e4bf95~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/728cc7436005cace2791aa7500e4bf95~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mini Speaker", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Mic", + "diamond_count": 5, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":1292740836}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8d4381b7d2272ffc14227c3705832e24", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8d4381b7d2272ffc14227c3705832e24~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8d4381b7d2272ffc14227c3705832e24~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5650, + "image": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8d4381b7d2272ffc14227c3705832e24", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8d4381b7d2272ffc14227c3705832e24~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8d4381b7d2272ffc14227c3705832e24~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mic", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Cotton's Shell", + "diamond_count": 5, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":1547989231}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f034a397a7c555b4885e4892b925c1e4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f034a397a7c555b4885e4892b925c1e4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f034a397a7c555b4885e4892b925c1e4~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8352, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f034a397a7c555b4885e4892b925c1e4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f034a397a7c555b4885e4892b925c1e4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f034a397a7c555b4885e4892b925c1e4~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cotton's Shell", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Hand Wave", + "diamond_count": 9, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":2045064010}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/63135affee2016240473cab8376dfe74", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/63135affee2016240473cab8376dfe74~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/63135affee2016240473cab8376dfe74~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6059, + "image": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/63135affee2016240473cab8376dfe74", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/63135affee2016240473cab8376dfe74~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/63135affee2016240473cab8376dfe74~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Hand Wave", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Lollipop", + "diamond_count": 10, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":261350356}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7d055532898d2060101306de62b89882", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7d055532898d2060101306de62b89882~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7d055532898d2060101306de62b89882~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5657, + "image": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7d055532898d2060101306de62b89882", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7d055532898d2060101306de62b89882~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7d055532898d2060101306de62b89882~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Lollipop", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Gamepad", + "diamond_count": 10, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":116654323}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8ebe28a907bb6237fa3b11a97deffe96", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8ebe28a907bb6237fa3b11a97deffe96~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8ebe28a907bb6237fa3b11a97deffe96~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6052, + "image": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8ebe28a907bb6237fa3b11a97deffe96", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8ebe28a907bb6237fa3b11a97deffe96~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8ebe28a907bb6237fa3b11a97deffe96~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gamepad", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Stars Snap", + "diamond_count": 10, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":594950323}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8581, + "image": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/resource/a7952834ab225fbee621963ea7e6e5d2.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Stars Snap", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Mirror", + "diamond_count": 30, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "{\"key\":1754128949}", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#523749", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/840b3d6e362053e4eb83af0ca7228762", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/840b3d6e362053e4eb83af0ca7228762~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/840b3d6e362053e4eb83af0ca7228762~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6070, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/840b3d6e362053e4eb83af0ca7228762", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/840b3d6e362053e4eb83af0ca7228762~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/840b3d6e362053e4eb83af0ca7228762~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mirror", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent TikTok Stars", + "diamond_count": 39999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#E0C8BC", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCA3BE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b1667c891ed39fd68ba7252fff7a1e7c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b1667c891ed39fd68ba7252fff7a1e7c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b1667c891ed39fd68ba7252fff7a1e7c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8582, + "image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b1667c891ed39fd68ba7252fff7a1e7c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b1667c891ed39fd68ba7252fff7a1e7c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b1667c891ed39fd68ba7252fff7a1e7c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "TikTok Stars", + "primary_effect_id": 2899, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent TikTok Universe", + "diamond_count": 34999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3743fb917966fea1b4851ed88abab317", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3743fb917966fea1b4851ed88abab317~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3743fb917966fea1b4851ed88abab317~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "A celebratory message will be displayed with the host's and your username as well as the gift name in all LIVE videos in your region.", + "key": "pm_mt_live_gift_panel_note_platform_announcement", + "pieces": [] + }, + "left_icon": { + "avg_color": "#373752", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_broadcast_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_broadcast_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_broadcast_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBD8CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ff7d237a26868b9588e0d3fc416cb26b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ff7d237a26868b9588e0d3fc416cb26b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ff7d237a26868b9588e0d3fc416cb26b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6038, + "image": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ff7d237a26868b9588e0d3fc416cb26b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ff7d237a26868b9588e0d3fc416cb26b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ff7d237a26868b9588e0d3fc416cb26b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": true, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "TikTok Universe", + "preview_image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/378b942c2ec8e07de1567619be8bbca6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/378b942c2ec8e07de1567619be8bbca6~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/378b942c2ec8e07de1567619be8bbca6~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 402, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Seal and Whale", + "diamond_count": 34500, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3781e9159ff09272826d3f2216ba36ef.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3781e9159ff09272826d3f2216ba36ef.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3781e9159ff09272826d3f2216ba36ef.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8381, + "image": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3781e9159ff09272826d3f2216ba36ef.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3781e9159ff09272826d3f2216ba36ef.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3781e9159ff09272826d3f2216ba36ef.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Seal and Whale", + "primary_effect_id": 2550, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Leon and Lion", + "diamond_count": 34000, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#F0F0F0", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a291aedacf27d22c3fd2d83575d2bee9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a291aedacf27d22c3fd2d83575d2bee9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a291aedacf27d22c3fd2d83575d2bee9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7823, + "image": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a291aedacf27d22c3fd2d83575d2bee9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a291aedacf27d22c3fd2d83575d2bee9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a291aedacf27d22c3fd2d83575d2bee9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Leon and Lion", + "primary_effect_id": 2858, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Sam the Whale", + "diamond_count": 30000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#374C52", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f48a1887eb88238738996bb997b31c0f.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f48a1887eb88238738996bb997b31c0f.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f48a1887eb88238738996bb997b31c0f.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8391, + "image": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f48a1887eb88238738996bb997b31c0f.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f48a1887eb88238738996bb997b31c0f.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f48a1887eb88238738996bb997b31c0f.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Sam the Whale", + "primary_effect_id": 3256, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Lion", + "diamond_count": 29999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#666666", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3967C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4fb89af2082a290b37d704e20f4fe729", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4fb89af2082a290b37d704e20f4fe729~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4fb89af2082a290b37d704e20f4fe729~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6369, + "image": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4fb89af2082a290b37d704e20f4fe729", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4fb89af2082a290b37d704e20f4fe729~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4fb89af2082a290b37d704e20f4fe729~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Lion", + "primary_effect_id": 2855, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Dragon Flame", + "diamond_count": 26999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#3D3D3D", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBEBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7610, + "image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/89b4d1d93c1cc614e3a0903ac7a94e0c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Dragon Flame", + "primary_effect_id": 2865, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Phoenix", + "diamond_count": 25999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ef248375c4167d70c1642731c732c982", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ef248375c4167d70c1642731c732c982~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ef248375c4167d70c1642731c732c982~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7319, + "image": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ef248375c4167d70c1642731c732c982", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ef248375c4167d70c1642731c732c982~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ef248375c4167d70c1642731c732c982~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Phoenix", + "primary_effect_id": 1511, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Adam’s Dream", + "diamond_count": 25999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#FFF8EB", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCA3A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9a586391fbb1e21621c4203e5563a9e0", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9a586391fbb1e21621c4203e5563a9e0~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9a586391fbb1e21621c4203e5563a9e0~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7400, + "image": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9a586391fbb1e21621c4203e5563a9e0", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9a586391fbb1e21621c4203e5563a9e0~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9a586391fbb1e21621c4203e5563a9e0~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Adam’s Dream", + "primary_effect_id": 2870, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent TikTok Shuttle", + "diamond_count": 20000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8ef48feba8dd293a75ae9d4376fb17c9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8ef48feba8dd293a75ae9d4376fb17c9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8ef48feba8dd293a75ae9d4376fb17c9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6751, + "image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8ef48feba8dd293a75ae9d4376fb17c9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8ef48feba8dd293a75ae9d4376fb17c9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8ef48feba8dd293a75ae9d4376fb17c9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "TikTok Shuttle", + "primary_effect_id": 1073, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Planet", + "diamond_count": 15000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7d017c1f035b989127b16255398eddc9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7d017c1f035b989127b16255398eddc9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7d017c1f035b989127b16255398eddc9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5954, + "image": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7d017c1f035b989127b16255398eddc9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7d017c1f035b989127b16255398eddc9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7d017c1f035b989127b16255398eddc9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Planet", + "primary_effect_id": 366, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Red Lightning", + "diamond_count": 12000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8419, + "image": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/5f48599c8d2a7bbc6e6fcf11ba2c809f~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Red Lightning", + "primary_effect_id": 2583, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Interstellar", + "diamond_count": 10000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8520d47b59c202a4534c1560a355ae06", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8520d47b59c202a4534c1560a355ae06~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8520d47b59c202a4534c1560a355ae06~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6149, + "image": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8520d47b59c202a4534c1560a355ae06", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8520d47b59c202a4534c1560a355ae06~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8520d47b59c202a4534c1560a355ae06~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Interstellar", + "primary_effect_id": 519, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Sunset Speedway", + "diamond_count": 10000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/df63eee488dc0994f6f5cb2e65f2ae49", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/df63eee488dc0994f6f5cb2e65f2ae49~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/df63eee488dc0994f6f5cb2e65f2ae49~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6203, + "image": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/df63eee488dc0994f6f5cb2e65f2ae49", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/df63eee488dc0994f6f5cb2e65f2ae49~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/df63eee488dc0994f6f5cb2e65f2ae49~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Sunset Speedway", + "primary_effect_id": 705, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Yacht", + "diamond_count": 9888, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/070c086c6fc1e40ae3ca9e683c974e4e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/070c086c6fc1e40ae3ca9e683c974e4e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/070c086c6fc1e40ae3ca9e683c974e4e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6103, + "image": { + "avg_color": "#FADCF0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/070c086c6fc1e40ae3ca9e683c974e4e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/070c086c6fc1e40ae3ca9e683c974e4e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/070c086c6fc1e40ae3ca9e683c974e4e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Yacht", + "primary_effect_id": 432, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Star Throne", + "diamond_count": 7999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/30063f6bc45aecc575c49ff3dbc33831", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8420, + "image": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/30063f6bc45aecc575c49ff3dbc33831", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Star Throne", + "primary_effect_id": 2584, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 365, + "color_id": 1, + "color_image": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/6db5c098-08d6-4c65-98d2-b5e3a9a44fc5.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/6db5c098-08d6-4c65-98d2-b5e3a9a44fc5.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/6db5c098-08d6-4c65-98d2-b5e3a9a44fc5.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Ruby Red", + "color_values": [ + "#FF5E7A", + "#FF5E7A" + ], + "gift_image": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e7ce188da898772f18aaffe49a7bd7db", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 450, + "color_id": 2, + "color_image": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/883d6320-72b3-44c6-86b7-7174eef4a9e7.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/883d6320-72b3-44c6-86b7-7174eef4a9e7.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/883d6320-72b3-44c6-86b7-7174eef4a9e7.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lime Green", + "color_values": [ + "#60E5AE", + "#60E5AE" + ], + "gift_image": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_green.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_green.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_green.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 451, + "color_id": 3, + "color_image": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/920447aa-78d7-45d9-a967-61cf9945a4fe.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/920447aa-78d7-45d9-a967-61cf9945a4fe.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/920447aa-78d7-45d9-a967-61cf9945a4fe.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Electric Blue", + "color_values": [ + "#6699FF", + "#6699FF" + ], + "gift_image": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_blue.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_blue.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_blue.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 452, + "color_id": 4, + "color_image": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a6b08927-99c1-46a9-89ba-e8963d4b6360.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a6b08927-99c1-46a9-89ba-e8963d4b6360.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a6b08927-99c1-46a9-89ba-e8963d4b6360.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Bumblebee Yellow", + "color_values": [ + "#FFE15E", + "#FFE15E" + ], + "gift_image": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_yellow.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_yellow.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_yellow.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 466, + "color_id": 5, + "color_image": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/0ffb22c4-cf29-4f2a-9666-a910588d448d.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/0ffb22c4-cf29-4f2a-9666-a910588d448d.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/0ffb22c4-cf29-4f2a-9666-a910588d448d.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Bubblegum Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#C8E0BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_pink.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_pink.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_pink.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 465, + "color_id": 6, + "color_image": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/ae58efb4-850f-49c4-aca4-9c77d0caf14d.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/ae58efb4-850f-49c4-aca4-9c77d0caf14d.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/ae58efb4-850f-49c4-aca4-9c77d0caf14d.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lightning Purple", + "color_values": [ + "#8A8AFF", + "#8A8AFF" + ], + "gift_image": { + "avg_color": "#FADCF0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/car_icon_purple.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_purple.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/car_icon_purple.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Sports Car", + "diamond_count": 7000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6, + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e7ce188da898772f18aaffe49a7bd7db", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6089, + "image": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e7ce188da898772f18aaffe49a7bd7db", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e7ce188da898772f18aaffe49a7bd7db~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Sports Car", + "primary_effect_id": 365, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Celebration Time", + "diamond_count": 6999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e73e786041d8218d8e9dbbc150855f1b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e73e786041d8218d8e9dbbc150855f1b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e73e786041d8218d8e9dbbc150855f1b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6790, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e73e786041d8218d8e9dbbc150855f1b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e73e786041d8218d8e9dbbc150855f1b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e73e786041d8218d8e9dbbc150855f1b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Celebration Time", + "primary_effect_id": 1237, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Valley Festival", + "diamond_count": 5999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#C8E0BC", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#D6D6D6", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f71e047b000a96f589a7e5ec48152e29", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f71e047b000a96f589a7e5ec48152e29~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f71e047b000a96f589a7e5ec48152e29~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6556, + "image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f71e047b000a96f589a7e5ec48152e29", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f71e047b000a96f589a7e5ec48152e29~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f71e047b000a96f589a7e5ec48152e29~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Valley Festival", + "primary_effect_id": 1974, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cooper's Home", + "diamond_count": 5999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#CEE5EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#FAFAFA", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6864, + "image": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/816e8f9f6ba06bdc1adc0c20c8b753a4~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cooper's Home", + "primary_effect_id": 1978, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Unicorn Fantasy", + "diamond_count": 5000, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/483c644e67e9bb1dd5970f2df00b7576.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/483c644e67e9bb1dd5970f2df00b7576.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/483c644e67e9bb1dd5970f2df00b7576.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5483, + "image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/483c644e67e9bb1dd5970f2df00b7576.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/483c644e67e9bb1dd5970f2df00b7576.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/483c644e67e9bb1dd5970f2df00b7576.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Unicorn Fantasy", + "preview_image": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0d1f70d51d9e4b06f336f4aaf5936244", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0d1f70d51d9e4b06f336f4aaf5936244~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0d1f70d51d9e4b06f336f4aaf5936244~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 741, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Dancing Adam", + "diamond_count": 5000, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#405237", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/31375ed9a150fc227584141637e3c475", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/31375ed9a150fc227584141637e3c475~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/31375ed9a150fc227584141637e3c475~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7468, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/31375ed9a150fc227584141637e3c475", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/31375ed9a150fc227584141637e3c475~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/31375ed9a150fc227584141637e3c475~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Dancing Adam", + "primary_effect_id": 1982, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Pool Party", + "diamond_count": 4999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4147c5bcfad9623c693f83d5d6cba1f7", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4147c5bcfad9623c693f83d5d6cba1f7~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4147c5bcfad9623c693f83d5d6cba1f7~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5938, + "image": { + "avg_color": "#FADCF0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4147c5bcfad9623c693f83d5d6cba1f7", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4147c5bcfad9623c693f83d5d6cba1f7~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4147c5bcfad9623c693f83d5d6cba1f7~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Pool Party", + "primary_effect_id": 357, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 474, + "color_id": 1, + "color_image": { + "avg_color": "#EBFBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a6b23da3-2461-4168-bb3b-426a6435cabf.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a6b23da3-2461-4168-bb3b-426a6435cabf.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a6b23da3-2461-4168-bb3b-426a6435cabf.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Champagne Gold", + "color_values": [ + "#FCCD89", + "#FCCD89" + ], + "gift_image": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/airplane_icon_gold.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_gold.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_gold.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 475, + "color_id": 2, + "color_image": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/dd27b357-6411-4eb4-95e0-d8a0e1e4c252.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/dd27b357-6411-4eb4-95e0-d8a0e1e4c252.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/dd27b357-6411-4eb4-95e0-d8a0e1e4c252.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Romantic Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/airplane_icon_pink.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_pink.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_pink.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 476, + "color_id": 3, + "color_image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fafec75e-b2e0-4a3f-bc29-f73242cdf2b5.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fafec75e-b2e0-4a3f-bc29-f73242cdf2b5.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fafec75e-b2e0-4a3f-bc29-f73242cdf2b5.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Sky Blue", + "color_values": [ + "#80C4FF", + "#80C4FF" + ], + "gift_image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/airplane_icon_blue.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_blue.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_blue.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 477, + "color_id": 4, + "color_image": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/d0b4b198-69f3-4c22-a27e-7f1acd2745c6.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/d0b4b198-69f3-4c22-a27e-7f1acd2745c6.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/d0b4b198-69f3-4c22-a27e-7f1acd2745c6.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Mystery Purple", + "color_values": [ + "#B689FF", + "#B689FF" + ], + "gift_image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/airplane_icon_purple.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_purple.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/airplane_icon_purple.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Private Jet", + "diamond_count": 4888, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5, + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#D6D6D6", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/921c6084acaa2339792052058cbd3fd3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/921c6084acaa2339792052058cbd3fd3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/921c6084acaa2339792052058cbd3fd3~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5767, + "image": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/921c6084acaa2339792052058cbd3fd3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/921c6084acaa2339792052058cbd3fd3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/921c6084acaa2339792052058cbd3fd3~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Private Jet", + "primary_effect_id": 263, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Leon the Kitten", + "diamond_count": 4888, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#7A536D", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#373752", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a7748baba012c9e2d98a30dce7cc5a27", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a7748baba012c9e2d98a30dce7cc5a27~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a7748baba012c9e2d98a30dce7cc5a27~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6646, + "image": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a7748baba012c9e2d98a30dce7cc5a27", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a7748baba012c9e2d98a30dce7cc5a27~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a7748baba012c9e2d98a30dce7cc5a27~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Leon the Kitten", + "primary_effect_id": 2860, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Flower Overflow", + "diamond_count": 4000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6148, + "image": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/743c4bb44e7e0bf251a7f2f5ada231ee~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Flower Overflow", + "primary_effect_id": 518, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Restaurants", + "diamond_count": 4000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e8764af35b7a390d436b68137541e19c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e8764af35b7a390d436b68137541e19c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e8764af35b7a390d436b68137541e19c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6204, + "image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e8764af35b7a390d436b68137541e19c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e8764af35b7a390d436b68137541e19c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e8764af35b7a390d436b68137541e19c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Restaurants", + "primary_effect_id": 671, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cooper Swims Home", + "diamond_count": 3999, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Swim Cooper, Swim!", + "key": "gift_description_6863", + "pieces": [] + }, + "left_icon": { + "avg_color": "#FAFAFA", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e3ea82178688e17212581c90d621ae31", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0868b51b798341978b904e8095a4ca47", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0868b51b798341978b904e8095a4ca47~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0868b51b798341978b904e8095a4ca47~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6863, + "image": { + "avg_color": "#89A37C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0868b51b798341978b904e8095a4ca47", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0868b51b798341978b904e8095a4ca47~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0868b51b798341978b904e8095a4ca47~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cooper Swims Home", + "primary_effect_id": 1195, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Ferris Wheel", + "diamond_count": 3000, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5652, + "image": { + "avg_color": "#8F8F8F", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3c7291ad4c2a6d4f70505c3e296ecebe~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Ferris Wheel", + "primary_effect_id": 212, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Meteor Shower", + "diamond_count": 3000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/71883933511237f7eaa1bf8cd12ed575", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/71883933511237f7eaa1bf8cd12ed575~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/71883933511237f7eaa1bf8cd12ed575~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6563, + "image": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/71883933511237f7eaa1bf8cd12ed575", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/71883933511237f7eaa1bf8cd12ed575~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/71883933511237f7eaa1bf8cd12ed575~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Meteor Shower", + "primary_effect_id": 932, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 486, + "color_id": 1, + "color_image": { + "avg_color": "#FFF8EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/6cc71705-b286-4e55-a94c-bf50c65ac095.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/6cc71705-b286-4e55-a94c-bf50c65ac095.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/6cc71705-b286-4e55-a94c-bf50c65ac095.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lime Green", + "color_values": [ + "#60E5AE", + "#60E5AE" + ], + "gift_image": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_green.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_green.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_green.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 487, + "color_id": 2, + "color_image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/d3f61fde-66f1-43a1-b8da-a7c845b3d3e0.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/d3f61fde-66f1-43a1-b8da-a7c845b3d3e0.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/d3f61fde-66f1-43a1-b8da-a7c845b3d3e0.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Hot Pink", + "color_values": [ + "#FF7ACA", + "#FF7ACA" + ], + "gift_image": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_pink.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_pink.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_pink.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 488, + "color_id": 3, + "color_image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/6a7d9f31-e9fc-4936-81b8-4eb57d5e544a.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/6a7d9f31-e9fc-4936-81b8-4eb57d5e544a.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/6a7d9f31-e9fc-4936-81b8-4eb57d5e544a.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Electric Blue", + "color_values": [ + "#6699FF", + "#6699FF" + ], + "gift_image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_blue.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_blue.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_blue.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 489, + "color_id": 4, + "color_image": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/f2a84010-3391-49cf-90f8-d1c1f19bbbce.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/f2a84010-3391-49cf-90f8-d1c1f19bbbce.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/f2a84010-3391-49cf-90f8-d1c1f19bbbce.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lightning Purple", + "color_values": [ + "#8A8AFF", + "#8A8AFF" + ], + "gift_image": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_purple.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_purple.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_purple.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 490, + "color_id": 5, + "color_image": { + "avg_color": "#523749", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/9598d54b-04db-4653-90a6-e243a064af8f.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/9598d54b-04db-4653-90a6-e243a064af8f.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/9598d54b-04db-4653-90a6-e243a064af8f.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Flash Silver", + "color_values": [ + "#C0D2DF", + "#C0D2DF" + ], + "gift_image": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_silver.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_silver.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_silver.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 491, + "color_id": 6, + "color_image": { + "avg_color": "#D6D6D6", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/ae5da295-a186-4d4e-a569-bf9a14069103.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/ae5da295-a186-4d4e-a569-bf9a14069103.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/ae5da295-a186-4d4e-a569-bf9a14069103.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Ruby Red", + "color_values": [ + "#FF5E7A", + "#FF5E7A" + ], + "gift_image": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/motor_icon_red.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_red.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/motor_icon_red.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Motorcycle", + "diamond_count": 2988, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5, + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBFBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6517b8f2f76dc75ff0f4f73107f8780e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6517b8f2f76dc75ff0f4f73107f8780e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6517b8f2f76dc75ff0f4f73107f8780e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5765, + "image": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6517b8f2f76dc75ff0f4f73107f8780e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6517b8f2f76dc75ff0f4f73107f8780e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6517b8f2f76dc75ff0f4f73107f8780e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Motorcycle", + "primary_effect_id": 261, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Whale diving", + "diamond_count": 2150, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fc4d2b99910ce9bea92c8a8b503519f9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fc4d2b99910ce9bea92c8a8b503519f9~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Gift includes audio.", + "key": "pm_mt_audio_gift_desc", + "pieces": [] + }, + "left_icon": { + "avg_color": "#FADCDC", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_audio_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_audio_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 2, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/46fa70966d8e931497f5289060f9a794", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/46fa70966d8e931497f5289060f9a794~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/46fa70966d8e931497f5289060f9a794~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6820, + "image": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/46fa70966d8e931497f5289060f9a794", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/46fa70966d8e931497f5289060f9a794~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/46fa70966d8e931497f5289060f9a794~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Whale diving", + "primary_effect_id": 2628, + "tracker_params": { + "gift_property": "audio_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Make-up Box", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a29aa87203ec09c699e3dafa1944b23e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a29aa87203ec09c699e3dafa1944b23e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a29aa87203ec09c699e3dafa1944b23e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6033, + "image": { + "avg_color": "#EBCECE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a29aa87203ec09c699e3dafa1944b23e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a29aa87203ec09c699e3dafa1944b23e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a29aa87203ec09c699e3dafa1944b23e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Make-up Box", + "primary_effect_id": 399, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Rabbit", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/61b42d630091b661e82fc8ed400b1de2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/61b42d630091b661e82fc8ed400b1de2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/61b42d630091b661e82fc8ed400b1de2~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6348, + "image": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/61b42d630091b661e82fc8ed400b1de2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/61b42d630091b661e82fc8ed400b1de2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/61b42d630091b661e82fc8ed400b1de2~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Rabbit", + "primary_effect_id": 731, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Red Carpet", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/5b9bf90278f87b9ca0c286d3c8a12936", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/5b9bf90278f87b9ca0c286d3c8a12936~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/5b9bf90278f87b9ca0c286d3c8a12936~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6789, + "image": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/5b9bf90278f87b9ca0c286d3c8a12936", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/5b9bf90278f87b9ca0c286d3c8a12936~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/5b9bf90278f87b9ca0c286d3c8a12936~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Red Carpet", + "primary_effect_id": 1232, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gift Box", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0ef66437249c64730e551cea6148fb28", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0ef66437249c64730e551cea6148fb28~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0ef66437249c64730e551cea6148fb28~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 3 + ], + "gold_effect": "", + "icon": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9cc22f7c8ac233e129dec7b981b91b76", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9cc22f7c8ac233e129dec7b981b91b76~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9cc22f7c8ac233e129dec7b981b91b76~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6834, + "image": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9cc22f7c8ac233e129dec7b981b91b76", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9cc22f7c8ac233e129dec7b981b91b76~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9cc22f7c8ac233e129dec7b981b91b76~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gift Box", + "primary_effect_id": 1147, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cooper Flies Home", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Fly Cooper, Fly!", + "key": "gift_description_6862", + "pieces": [] + }, + "left_icon": { + "avg_color": "#405237", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e3ea82178688e17212581c90d621ae31", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBEBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3f1945b0d96e665a759f747e5e0cf7a9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3f1945b0d96e665a759f747e5e0cf7a9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3f1945b0d96e665a759f747e5e0cf7a9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6862, + "image": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3f1945b0d96e665a759f747e5e0cf7a9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3f1945b0d96e665a759f747e5e0cf7a9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3f1945b0d96e665a759f747e5e0cf7a9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cooper Flies Home", + "primary_effect_id": 1194, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Mystery Firework", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ea70ae4b6ddb5d69fb52faadd4a6b1c8", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ea70ae4b6ddb5d69fb52faadd4a6b1c8~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ea70ae4b6ddb5d69fb52faadd4a6b1c8~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 2 + ], + "gold_effect": "", + "icon": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c110230c5db903db5f060a432f5a86cd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c110230c5db903db5f060a432f5a86cd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c110230c5db903db5f060a432f5a86cd~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7529, + "image": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c110230c5db903db5f060a432f5a86cd", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c110230c5db903db5f060a432f5a86cd~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c110230c5db903db5f060a432f5a86cd~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mystery Firework", + "preview_image": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4e85c9fa113131615d4be57419e9b4f7", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4e85c9fa113131615d4be57419e9b4f7~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4e85c9fa113131615d4be57419e9b4f7~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 1709, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Speedboat", + "diamond_count": 1888, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBCECE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/59c1d54918e6e715b84a4f5387f2ddb9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/59c1d54918e6e715b84a4f5387f2ddb9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/59c1d54918e6e715b84a4f5387f2ddb9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5763, + "image": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/59c1d54918e6e715b84a4f5387f2ddb9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/59c1d54918e6e715b84a4f5387f2ddb9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/59c1d54918e6e715b84a4f5387f2ddb9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Speedboat", + "primary_effect_id": 260, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love Drop", + "diamond_count": 1800, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/42958ef42904682210b15f62ce824e5b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/42958ef42904682210b15f62ce824e5b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/42958ef42904682210b15f62ce824e5b~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Fly the Gift to the creator/guest to support", + "key": "pm_mt_gift_banner_flyingGift", + "pieces": [] + }, + "left_icon": { + "avg_color": "#FFF1EB", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d0857daaa739c634e07ced7a309c3d8e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d0857daaa739c634e07ced7a309c3d8e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d0857daaa739c634e07ced7a309c3d8e~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 4, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1ea684b3104abb725491a509022f7c02", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea684b3104abb725491a509022f7c02~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea684b3104abb725491a509022f7c02~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8277, + "image": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1ea684b3104abb725491a509022f7c02", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea684b3104abb725491a509022f7c02~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea684b3104abb725491a509022f7c02~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love Drop", + "primary_effect_id": 2419, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Garland", + "diamond_count": 1500, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/69d7dadcd93942bad49d0b9874f69c1b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/69d7dadcd93942bad49d0b9874f69c1b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/69d7dadcd93942bad49d0b9874f69c1b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5651, + "image": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/69d7dadcd93942bad49d0b9874f69c1b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/69d7dadcd93942bad49d0b9874f69c1b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/69d7dadcd93942bad49d0b9874f69c1b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Garland ", + "preview_image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/484f474784770636acca4568c1294cb6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/484f474784770636acca4568c1294cb6~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/484f474784770636acca4568c1294cb6~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 211, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Champion", + "diamond_count": 1500, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#374C52", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/58ce827091411e667dd6ba8a93215f86", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/58ce827091411e667dd6ba8a93215f86~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/58ce827091411e667dd6ba8a93215f86~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5955, + "image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/58ce827091411e667dd6ba8a93215f86", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/58ce827091411e667dd6ba8a93215f86~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/58ce827091411e667dd6ba8a93215f86~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Champion", + "primary_effect_id": 307, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Chasing the Dream", + "diamond_count": 1500, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1ea8dbb805466c4ced19f29e9590040f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea8dbb805466c4ced19f29e9590040f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea8dbb805466c4ced19f29e9590040f~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7467, + "image": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1ea8dbb805466c4ced19f29e9590040f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea8dbb805466c4ced19f29e9590040f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1ea8dbb805466c4ced19f29e9590040f~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Chasing the Dream", + "primary_effect_id": 1874, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Bumper Cars", + "diamond_count": 1288, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0b72093c619aeafe267d04c11ea0b22e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0b72093c619aeafe267d04c11ea0b22e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0b72093c619aeafe267d04c11ea0b22e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5996, + "image": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0b72093c619aeafe267d04c11ea0b22e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0b72093c619aeafe267d04c11ea0b22e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0b72093c619aeafe267d04c11ea0b22e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Bumper Cars", + "primary_effect_id": 381, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gaming Chair", + "diamond_count": 1200, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fd53368cacaba5c02fceb38903ed8dd3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fd53368cacaba5c02fceb38903ed8dd3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fd53368cacaba5c02fceb38903ed8dd3~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6031, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fd53368cacaba5c02fceb38903ed8dd3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fd53368cacaba5c02fceb38903ed8dd3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fd53368cacaba5c02fceb38903ed8dd3~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gaming Chair", + "primary_effect_id": 398, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 478, + "color_id": 1, + "color_image": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/0d53e7c5-7993-4035-9f4c-ca544d477367.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/0d53e7c5-7993-4035-9f4c-ca544d477367.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/0d53e7c5-7993-4035-9f4c-ca544d477367.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Starry Blue", + "color_values": [ + "#80C4FF", + "#80C4FF" + ], + "gift_image": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fireworks_icon_blue.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_blue.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_blue.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 483, + "color_id": 2, + "color_image": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/623bb4bd-1bcc-46f9-9abd-59c34e709ab4.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/623bb4bd-1bcc-46f9-9abd-59c34e709ab4.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/623bb4bd-1bcc-46f9-9abd-59c34e709ab4.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Romantic Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#A37C7C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fireworks_icon_pink.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_pink.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_pink.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 484, + "color_id": 3, + "color_image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/1fe6fd9b-90b2-425c-99d7-cc9389308f63.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/1fe6fd9b-90b2-425c-99d7-cc9389308f63.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/1fe6fd9b-90b2-425c-99d7-cc9389308f63.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Mint Green", + "color_values": [ + "#80E0D5", + "#80E0D5" + ], + "gift_image": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fireworks_icon_green.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_green.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_green.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 485, + "color_id": 4, + "color_image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/aec39d71-e6e3-49fa-a09d-55efeb6859b3.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/aec39d71-e6e3-49fa-a09d-55efeb6859b3.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/aec39d71-e6e3-49fa-a09d-55efeb6859b3.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Dreamy Purple", + "color_values": [ + "#B689FF", + "#B689FF" + ], + "gift_image": { + "avg_color": "#8F8F8F", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/fireworks_icon_purple.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_purple.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/fireworks_icon_purple.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Fireworks", + "diamond_count": 1088, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6, + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9494c8a0bc5c03521ef65368e59cc2b8", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9494c8a0bc5c03521ef65368e59cc2b8~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9494c8a0bc5c03521ef65368e59cc2b8~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6090, + "image": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9494c8a0bc5c03521ef65368e59cc2b8", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9494c8a0bc5c03521ef65368e59cc2b8~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9494c8a0bc5c03521ef65368e59cc2b8~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Fireworks", + "primary_effect_id": 164, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gold Mine", + "diamond_count": 1000, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5587, + "image": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/58cbff1bd592ae4365a450c4bf767f3a.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gold Mine", + "primary_effect_id": 189, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Email Message", + "diamond_count": 1000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c959df6dbffd6f07849d22d2c3c07861", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c959df6dbffd6f07849d22d2c3c07861~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c959df6dbffd6f07849d22d2c3c07861~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6199, + "image": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c959df6dbffd6f07849d22d2c3c07861", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c959df6dbffd6f07849d22d2c3c07861~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c959df6dbffd6f07849d22d2c3c07861~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Email Message", + "primary_effect_id": 673, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Mirror Bloom", + "diamond_count": 1000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a9d0e9406230fa9a901d992a90574e39", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a9d0e9406230fa9a901d992a90574e39~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a9d0e9406230fa9a901d992a90574e39~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6200, + "image": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a9d0e9406230fa9a901d992a90574e39", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a9d0e9406230fa9a901d992a90574e39~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a9d0e9406230fa9a901d992a90574e39~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Mirror Bloom", + "primary_effect_id": 674, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Watermelon Love", + "diamond_count": 1000, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1d1650cd9bb0e39d72a6e759525ffe59", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1d1650cd9bb0e39d72a6e759525ffe59~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1d1650cd9bb0e39d72a6e759525ffe59~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6781, + "image": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1d1650cd9bb0e39d72a6e759525ffe59", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1d1650cd9bb0e39d72a6e759525ffe59~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1d1650cd9bb0e39d72a6e759525ffe59~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Watermelon Love", + "primary_effect_id": 1180, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Travel with You", + "diamond_count": 999, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#C8E0BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0043ba52e0198a90138ceca023773d39", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0043ba52e0198a90138ceca023773d39~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0043ba52e0198a90138ceca023773d39~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 4 + ], + "gold_effect": "", + "icon": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/753098e5a8f45afa965b73616c04cf89", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/753098e5a8f45afa965b73616c04cf89~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/753098e5a8f45afa965b73616c04cf89~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6233, + "image": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/753098e5a8f45afa965b73616c04cf89", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/753098e5a8f45afa965b73616c04cf89~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/753098e5a8f45afa965b73616c04cf89~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": true, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Travel with You", + "preview_image": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e930f3944ae299c9e816dc9bf20be44f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e930f3944ae299c9e816dc9bf20be44f~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e930f3944ae299c9e816dc9bf20be44f~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 1066, + "random_effect_info": { + "audience_key": "mask2", + "effect_ids": [], + "host_key": "mask1", + "random_gift_bubble": { + "display_text": "" + }, + "random_gift_panel_banner": { + "bg_color_values": [], + "collect_num": 0, + "display_text": "", + "round": 0, + "schema_url": "", + "target_num": 0 + } + }, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Train", + "diamond_count": 899, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A536D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4227ed71f2c494b554f9cbe2147d4899", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4227ed71f2c494b554f9cbe2147d4899~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4227ed71f2c494b554f9cbe2147d4899~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5978, + "image": { + "avg_color": "#89A37C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4227ed71f2c494b554f9cbe2147d4899", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4227ed71f2c494b554f9cbe2147d4899~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4227ed71f2c494b554f9cbe2147d4899~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Train", + "primary_effect_id": 375, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 218, + "color_id": 1, + "color_image": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a5ca6d8a-4a41-470f-ad1f-d7e992e2b2bf.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a5ca6d8a-4a41-470f-ad1f-d7e992e2b2bf.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a5ca6d8a-4a41-470f-ad1f-d7e992e2b2bf.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Mystery Purple", + "color_values": [ + "#B689FF", + "#B689FF" + ], + "gift_image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/70fd490f208c37c89ebdecf4c3c1c31b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 471, + "color_id": 2, + "color_image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/324dbca8-cec4-4386-ae25-21e581b56700.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/324dbca8-cec4-4386-ae25-21e581b56700.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/324dbca8-cec4-4386-ae25-21e581b56700.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Dreamy Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/pearl_pink_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_pink_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_pink_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 472, + "color_id": 3, + "color_image": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/8371679e-3ec6-4745-9312-d797a6761fd1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/8371679e-3ec6-4745-9312-d797a6761fd1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/8371679e-3ec6-4745-9312-d797a6761fd1.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Crystal Blue", + "color_values": [ + "#80C4FF", + "#80C4FF" + ], + "gift_image": { + "avg_color": "#D8EBCE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/pearl_blue_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_blue_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_blue_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 473, + "color_id": 4, + "color_image": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/96a2fec2-9fca-4c26-b660-dea36e974981.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/96a2fec2-9fca-4c26-b660-dea36e974981.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/96a2fec2-9fca-4c26-b660-dea36e974981.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Coral Orange", + "color_values": [ + "#FFA15E", + "#FFA15E" + ], + "gift_image": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/pearl_orange_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_orange_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/pearl_orange_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Pearl", + "diamond_count": 800, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/70fd490f208c37c89ebdecf4c3c1c31b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5664, + "image": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/70fd490f208c37c89ebdecf4c3c1c31b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/70fd490f208c37c89ebdecf4c3c1c31b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Pearl", + "primary_effect_id": 218, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent LOVE Balloon", + "diamond_count": 699, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5488, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/871fe83f2263d4a31b6d9bfc3d9a21f3.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "LOVE Balloon", + "preview_image": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e70091e6344b745f093357e6d59dc9e6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e70091e6344b745f093357e6d59dc9e6~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e70091e6344b745f093357e6d59dc9e6~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 157, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Swan", + "diamond_count": 699, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97a26919dbf6afe262c97e22a83f4bf1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97a26919dbf6afe262c97e22a83f4bf1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97a26919dbf6afe262c97e22a83f4bf1~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5897, + "image": { + "avg_color": "#373752", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97a26919dbf6afe262c97e22a83f4bf1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97a26919dbf6afe262c97e22a83f4bf1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97a26919dbf6afe262c97e22a83f4bf1~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Swan", + "primary_effect_id": 336, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Dance Together", + "diamond_count": 699, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1c7aaabca77db60f0f415739d2d61e07", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1c7aaabca77db60f0f415739d2d61e07~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1c7aaabca77db60f0f415739d2d61e07~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6554, + "image": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1c7aaabca77db60f0f415739d2d61e07", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1c7aaabca77db60f0f415739d2d61e07~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1c7aaabca77db60f0f415739d2d61e07~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Dance Together", + "primary_effect_id": 924, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cooper Skates Home", + "diamond_count": 599, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Skate Cooper, Skate!", + "key": "gift_description_6865", + "pieces": [] + }, + "left_icon": { + "avg_color": "#666666", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e3ea82178688e17212581c90d621ae31", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e3ea82178688e17212581c90d621ae31~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [], + "gold_effect": "", + "icon": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/163865bebecff06a838c71def4a40cc6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/163865bebecff06a838c71def4a40cc6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/163865bebecff06a838c71def4a40cc6~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6865, + "image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/163865bebecff06a838c71def4a40cc6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/163865bebecff06a838c71def4a40cc6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/163865bebecff06a838c71def4a40cc6~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cooper Skates Home", + "primary_effect_id": 1192, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Money Gun", + "diamond_count": 500, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [], + "gold_effect": "", + "icon": { + "avg_color": "#FFF8EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e0589e95a2b41970f0f30f6202f5fce6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e0589e95a2b41970f0f30f6202f5fce6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e0589e95a2b41970f0f30f6202f5fce6~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7168, + "image": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e0589e95a2b41970f0f30f6202f5fce6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e0589e95a2b41970f0f30f6202f5fce6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e0589e95a2b41970f0f30f6202f5fce6~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Money Gun", + "primary_effect_id": 1404, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Coral", + "diamond_count": 499, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d4faa402c32bf4f92bee654b2663d9f1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d4faa402c32bf4f92bee654b2663d9f1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d4faa402c32bf4f92bee654b2663d9f1~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5731, + "image": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d4faa402c32bf4f92bee654b2663d9f1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d4faa402c32bf4f92bee654b2663d9f1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d4faa402c32bf4f92bee654b2663d9f1~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Coral", + "primary_effect_id": 244, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Necklace", + "diamond_count": 400, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7ad7ebc43e1c161c0ee566395ab7882b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7ad7ebc43e1c161c0ee566395ab7882b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7ad7ebc43e1c161c0ee566395ab7882b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5662, + "image": { + "avg_color": "#53737A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/7ad7ebc43e1c161c0ee566395ab7882b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/7ad7ebc43e1c161c0ee566395ab7882b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/7ad7ebc43e1c161c0ee566395ab7882b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Necklace", + "primary_effect_id": 216, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love Chat", + "diamond_count": 400, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a54af904b8d9981fbfd414614ed3dea5", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a54af904b8d9981fbfd414614ed3dea5~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a54af904b8d9981fbfd414614ed3dea5~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6205, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a54af904b8d9981fbfd414614ed3dea5", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a54af904b8d9981fbfd414614ed3dea5~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a54af904b8d9981fbfd414614ed3dea5~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love Chat", + "primary_effect_id": 668, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Swing", + "diamond_count": 399, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4d547840317d296c4c743d310a27d575", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4d547840317d296c4c743d310a27d575~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4d547840317d296c4c743d310a27d575~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5899, + "image": { + "avg_color": "#EBEBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/4d547840317d296c4c743d310a27d575", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/4d547840317d296c4c743d310a27d575~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/4d547840317d296c4c743d310a27d575~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Swing", + "primary_effect_id": 338, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cotton the Seal", + "diamond_count": 399, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/90671376888d6f834c97b0d34bc8231a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/90671376888d6f834c97b0d34bc8231a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/90671376888d6f834c97b0d34bc8231a~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8349, + "image": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/90671376888d6f834c97b0d34bc8231a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/90671376888d6f834c97b0d34bc8231a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/90671376888d6f834c97b0d34bc8231a~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cotton the Seal", + "primary_effect_id": 2489, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Air Dancer", + "diamond_count": 300, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97c975dcce2483027ececde2b6719761", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97c975dcce2483027ececde2b6719761~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97c975dcce2483027ececde2b6719761~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5661, + "image": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97c975dcce2483027ececde2b6719761", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97c975dcce2483027ececde2b6719761~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97c975dcce2483027ececde2b6719761~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Air Dancer", + "primary_effect_id": 215, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Birthday Cake", + "diamond_count": 300, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FADCDC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2cadff123e24e328c040380c44c7ea6b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2cadff123e24e328c040380c44c7ea6b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2cadff123e24e328c040380c44c7ea6b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6071, + "image": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2cadff123e24e328c040380c44c7ea6b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2cadff123e24e328c040380c44c7ea6b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2cadff123e24e328c040380c44c7ea6b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Birthday Cake", + "primary_effect_id": 270, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Rock 'n' Roll", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/57154f268c641793bca116a4b87d2bfa", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/57154f268c641793bca116a4b87d2bfa~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/57154f268c641793bca116a4b87d2bfa~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5882, + "image": { + "avg_color": "#EBD8CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/57154f268c641793bca116a4b87d2bfa", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/57154f268c641793bca116a4b87d2bfa~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/57154f268c641793bca116a4b87d2bfa~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Rock 'n' Roll", + "primary_effect_id": 325, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Boxing Gloves", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9f8bd92363c400c284179f6719b6ba9c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9f8bd92363c400c284179f6719b6ba9c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9f8bd92363c400c284179f6719b6ba9c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6007, + "image": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9f8bd92363c400c284179f6719b6ba9c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9f8bd92363c400c284179f6719b6ba9c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9f8bd92363c400c284179f6719b6ba9c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Boxing Gloves", + "primary_effect_id": 388, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Duck", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e172f660a1d4f95813a3ace0fde42323", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e172f660a1d4f95813a3ace0fde42323~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e172f660a1d4f95813a3ace0fde42323~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6265, + "image": { + "avg_color": "#FFEBF8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/e172f660a1d4f95813a3ace0fde42323", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/e172f660a1d4f95813a3ace0fde42323~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/e172f660a1d4f95813a3ace0fde42323~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Duck", + "primary_effect_id": 638, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Corgi", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FADCF0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/148eef0884fdb12058d1c6897d1e02b9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/148eef0884fdb12058d1c6897d1e02b9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/148eef0884fdb12058d1c6897d1e02b9~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6267, + "image": { + "avg_color": "#CECEEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/148eef0884fdb12058d1c6897d1e02b9", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/148eef0884fdb12058d1c6897d1e02b9~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/148eef0884fdb12058d1c6897d1e02b9~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Corgi", + "primary_effect_id": 640, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Dancing Cactus", + "diamond_count": 299, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1cc030f69570f04ee7955781b997dc44", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1cc030f69570f04ee7955781b997dc44~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1cc030f69570f04ee7955781b997dc44~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6532, + "image": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1cc030f69570f04ee7955781b997dc44", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1cc030f69570f04ee7955781b997dc44~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1cc030f69570f04ee7955781b997dc44~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Dancing Cactus", + "primary_effect_id": 915, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Shiba Inu", + "diamond_count": 222, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5482, + "image": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ddbcee02f5b86b803b0ec34357cd82ec.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Shiba Inu", + "primary_effect_id": 8, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 167, + "color_id": 1, + "color_image": { + "avg_color": "#D6D6D6", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/9a8cca7c-386c-4662-b588-72d10c6caf6c.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/9a8cca7c-386c-4662-b588-72d10c6caf6c.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/9a8cca7c-386c-4662-b588-72d10c6caf6c.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Lightning Purple", + "color_values": [ + "#8A8AFF", + "#8A8AFF" + ], + "gift_image": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/08af67ab13a8053269bf539fd27f3873.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 492, + "color_id": 2, + "color_image": { + "avg_color": "#7A536D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/854a3fcd-bdf4-4a13-a3bf-29d6f36e07a9.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/854a3fcd-bdf4-4a13-a3bf-29d6f36e07a9.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/854a3fcd-bdf4-4a13-a3bf-29d6f36e07a9.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Sakura Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/glasses_pink_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_pink_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_pink_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 493, + "color_id": 3, + "color_image": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a34cc268-1118-4cf1-9efd-295543d32726.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a34cc268-1118-4cf1-9efd-295543d32726.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a34cc268-1118-4cf1-9efd-295543d32726.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Rock Blue", + "color_values": [ + "#6699FF", + "#6699FF" + ], + "gift_image": { + "avg_color": "#EBCECE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/glasses_blue_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_blue_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_blue_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 494, + "color_id": 4, + "color_image": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/169b5125-6441-4c5a-974e-5f4afcdb468a.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/169b5125-6441-4c5a-974e-5f4afcdb468a.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/169b5125-6441-4c5a-974e-5f4afcdb468a.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Sunny Orange", + "color_values": [ + "#FFA15E", + "#FFA15E" + ], + "gift_image": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/glasses_orange_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_orange_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/glasses_orange_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Sunglasses", + "diamond_count": 199, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/08af67ab13a8053269bf539fd27f3873.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5509, + "image": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/08af67ab13a8053269bf539fd27f3873.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/08af67ab13a8053269bf539fd27f3873.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Sunglasses", + "primary_effect_id": 167, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Hearts", + "diamond_count": 199, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5586, + "image": { + "avg_color": "#EBFBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/934b5a10dee8376df5870a61d2ea5cb6.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Hearts", + "primary_effect_id": 3306, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Lock and Key", + "diamond_count": 199, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2c9cec686b98281f7319b1a02ba2864a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2c9cec686b98281f7319b1a02ba2864a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2c9cec686b98281f7319b1a02ba2864a~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5880, + "image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2c9cec686b98281f7319b1a02ba2864a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2c9cec686b98281f7319b1a02ba2864a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2c9cec686b98281f7319b1a02ba2864a~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Lock and Key", + "primary_effect_id": 326, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love Focus", + "diamond_count": 199, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/996895614694e9d8f14976ae2a570936", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/996895614694e9d8f14976ae2a570936~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/996895614694e9d8f14976ae2a570936~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6436, + "image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/996895614694e9d8f14976ae2a570936", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/996895614694e9d8f14976ae2a570936~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/996895614694e9d8f14976ae2a570936~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love Focus", + "primary_effect_id": 2351, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Garland Headpiece", + "diamond_count": 199, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCD9E0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6437, + "image": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/bdbdd8aeb2b69c173a3ef666e63310f3~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Garland Headpiece", + "primary_effect_id": 2277, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love You", + "diamond_count": 199, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d7722d5348f4289db80fe7a29f4a6f74", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d7722d5348f4289db80fe7a29f4a6f74~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d7722d5348f4289db80fe7a29f4a6f74~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Say I love you in your own language", + "key": "gift_description_6671", + "pieces": [] + }, + "left_icon": { + "avg_color": "#373752", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/effdf81513685c4b1c579fa90b84d299", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/effdf81513685c4b1c579fa90b84d299~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/effdf81513685c4b1c579fa90b84d299~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 2 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/134e51c00f46e01976399883ca4e4798", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/134e51c00f46e01976399883ca4e4798~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/134e51c00f46e01976399883ca4e4798~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6671, + "image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/134e51c00f46e01976399883ca4e4798", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/134e51c00f46e01976399883ca4e4798~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/134e51c00f46e01976399883ca4e4798~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love You", + "primary_effect_id": 1023, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cheer For You", + "diamond_count": 199, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6713, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1059dfa76c78dc17d7cf0a1fc2ece185~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cheer For You", + "primary_effect_id": 1210, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Goggles", + "diamond_count": 199, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/488be317f77358386438d04e38801b5e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/488be317f77358386438d04e38801b5e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/488be317f77358386438d04e38801b5e~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8066, + "image": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/488be317f77358386438d04e38801b5e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/488be317f77358386438d04e38801b5e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/488be317f77358386438d04e38801b5e~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Goggles", + "primary_effect_id": 3307, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Butterfly", + "diamond_count": 169, + "duration": 1000, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FFF1EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5729, + "image": { + "avg_color": "#CCA3BE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/282973159d9ab5e7fa2c8a3dc8b578dc~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Butterfly", + "primary_effect_id": 242, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Music Note", + "diamond_count": 169, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b0b97078e33e46c8f7b7b3c321f684c3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b0b97078e33e46c8f7b7b3c321f684c3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b0b97078e33e46c8f7b7b3c321f684c3~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5915, + "image": { + "avg_color": "#7A536D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b0b97078e33e46c8f7b7b3c321f684c3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b0b97078e33e46c8f7b7b3c321f684c3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b0b97078e33e46c8f7b7b3c321f684c3~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Music Note", + "primary_effect_id": 343, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Confetti", + "diamond_count": 100, + "duration": 0, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/cb4e11b3834e149f08e1cdcc93870b26", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/cb4e11b3834e149f08e1cdcc93870b26~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/cb4e11b3834e149f08e1cdcc93870b26~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5585, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/cb4e11b3834e149f08e1cdcc93870b26", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/cb4e11b3834e149f08e1cdcc93870b26~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/cb4e11b3834e149f08e1cdcc93870b26~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Confetti", + "primary_effect_id": 210, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Hand Hearts", + "diamond_count": 100, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6cd022271dc4669d182cad856384870f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6cd022271dc4669d182cad856384870f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6cd022271dc4669d182cad856384870f~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5660, + "image": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6cd022271dc4669d182cad856384870f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6cd022271dc4669d182cad856384870f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6cd022271dc4669d182cad856384870f~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Hand Hearts", + "primary_effect_id": 214, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [ + { + "color_effect_id": 217, + "color_id": 1, + "color_image": { + "avg_color": "#FADCF0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/a254cce3-3662-4c0e-84d7-d06bf3af3e2e.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/a254cce3-3662-4c0e-84d7-d06bf3af3e2e.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/a254cce3-3662-4c0e-84d7-d06bf3af3e2e.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Sky Blue", + "color_values": [ + "#80C4FF", + "#80C4FF" + ], + "gift_image": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0f158a08f7886189cdabf496e8a07c21", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": true + }, + { + "color_effect_id": 453, + "color_id": 2, + "color_image": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/f05eccc4-12ec-488e-8424-1da90271d9f8.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/f05eccc4-12ec-488e-8424-1da90271d9f8.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/f05eccc4-12ec-488e-8424-1da90271d9f8.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Dreamy Pink", + "color_values": [ + "#FFA5C1", + "#FFA5C1" + ], + "gift_image": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/crane_pink_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_pink_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_pink_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 454, + "color_id": 3, + "color_image": { + "avg_color": "#FFFFFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/c251d561-de3a-4127-b873-aa952c7bc4c5.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/c251d561-de3a-4127-b873-aa952c7bc4c5.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/c251d561-de3a-4127-b873-aa952c7bc4c5.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Hopeful Orange", + "color_values": [ + "#FFA15E", + "#FFA15E" + ], + "gift_image": { + "avg_color": "#FFF8EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/crane_orange_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_orange_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_orange_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + }, + { + "color_effect_id": 455, + "color_id": 4, + "color_image": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/6571e34e-b7ff-4d99-8965-e51cefbe4123.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/6571e34e-b7ff-4d99-8965-e51cefbe4123.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/6571e34e-b7ff-4d99-8965-e51cefbe4123.png~tplv-obj.webp" + ], + "width": 0 + }, + "color_name": "Mystery Purple", + "color_values": [ + "#B689FF", + "#B689FF" + ], + "gift_image": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/crane_purple_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_purple_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/crane_purple_icon.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_default": false + } + ], + "combo": false, + "describe": "sent Paper Crane", + "diamond_count": 99, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 5 + ], + "gold_effect": "", + "icon": { + "avg_color": "#3D3D3D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0f158a08f7886189cdabf496e8a07c21", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5659, + "image": { + "avg_color": "#CEE5EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0f158a08f7886189cdabf496e8a07c21", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0f158a08f7886189cdabf496e8a07c21~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Paper Crane", + "primary_effect_id": 217, + "tracker_params": { + "gift_property": "color_gift" + }, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Little Crown", + "diamond_count": 99, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/cf3db11b94a975417043b53401d0afe1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/cf3db11b94a975417043b53401d0afe1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/cf3db11b94a975417043b53401d0afe1~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6097, + "image": { + "avg_color": "#F0F0F0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/cf3db11b94a975417043b53401d0afe1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/cf3db11b94a975417043b53401d0afe1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/cf3db11b94a975417043b53401d0afe1~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Little Crown", + "primary_effect_id": 3304, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Cap", + "diamond_count": 99, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6c2ab2da19249ea570a2ece5e3377f04", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6c2ab2da19249ea570a2ece5e3377f04~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6c2ab2da19249ea570a2ece5e3377f04~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6104, + "image": { + "avg_color": "#CCA3A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6c2ab2da19249ea570a2ece5e3377f04", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6c2ab2da19249ea570a2ece5e3377f04~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6c2ab2da19249ea570a2ece5e3377f04~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cap", + "primary_effect_id": 2342, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Hat and Mustache", + "diamond_count": 99, + "duration": 3000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6427, + "image": { + "avg_color": "#FAF0DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2f1e4f3f5c728ffbfa35705b480fdc92~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Hat and Mustache", + "primary_effect_id": 2349, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Like-Pop", + "diamond_count": 99, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#A37C96", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/42958ef42904682210b15f62ce824e5b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/42958ef42904682210b15f62ce824e5b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/42958ef42904682210b15f62ce824e5b~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Fly the Gift to the creator/guest to support", + "key": "pm_mt_gift_banner_flyingGift", + "pieces": [] + }, + "left_icon": { + "avg_color": "#EBEBFF", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d0857daaa739c634e07ced7a309c3d8e", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d0857daaa739c634e07ced7a309c3d8e~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d0857daaa739c634e07ced7a309c3d8e~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 3, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#523749", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8130, + "image": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/75eb7b4aca24eaa6e566b566c7d21e2f~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Like-Pop", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Birthday Party", + "diamond_count": 6999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#7A6053", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0a7316f4403b05c8fc33071909521f02", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0a7316f4403b05c8fc33071909521f02~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0a7316f4403b05c8fc33071909521f02~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6787, + "image": { + "avg_color": "#FADCF0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/0a7316f4403b05c8fc33071909521f02", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/0a7316f4403b05c8fc33071909521f02~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/0a7316f4403b05c8fc33071909521f02~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Birthday Party", + "primary_effect_id": 1221, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Super Cake", + "diamond_count": 1999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#666666", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/87fb9507cb533d34e956f5622183404d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/87fb9507cb533d34e956f5622183404d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/87fb9507cb533d34e956f5622183404d~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6797, + "image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/87fb9507cb533d34e956f5622183404d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/87fb9507cb533d34e956f5622183404d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/87fb9507cb533d34e956f5622183404d~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Super Cake", + "primary_effect_id": 1209, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Birthday Glasses", + "diamond_count": 199, + "duration": 3000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#7A6D53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/79d87a1f8fec06fcfc0284b99f78ad43", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/79d87a1f8fec06fcfc0284b99f78ad43~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/79d87a1f8fec06fcfc0284b99f78ad43~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6776, + "image": { + "avg_color": "#E6FADC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/79d87a1f8fec06fcfc0284b99f78ad43", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/79d87a1f8fec06fcfc0284b99f78ad43~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/79d87a1f8fec06fcfc0284b99f78ad43~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Birthday Glasses", + "primary_effect_id": 1088, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Star Throne", + "diamond_count": 7999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3897C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/30063f6bc45aecc575c49ff3dbc33831", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7764, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/30063f6bc45aecc575c49ff3dbc33831", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/30063f6bc45aecc575c49ff3dbc33831~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Star Throne", + "primary_effect_id": 1911, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Heart", + "diamond_count": 10, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#C8E0BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5480, + "image": { + "avg_color": "#374C52", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/98bea1b189fba75bf0ca766b4dc1976e.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Heart", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Panda", + "diamond_count": 5, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C9BA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/77259f70262b6632b9926a4a7ed12391", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/77259f70262b6632b9926a4a7ed12391~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/77259f70262b6632b9926a4a7ed12391~tplv-obj.webp" + ], + "width": 0 + }, + "id": 37, + "image": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/77259f70262b6632b9926a4a7ed12391", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/77259f70262b6632b9926a4a7ed12391~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/77259f70262b6632b9926a4a7ed12391~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Panda", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gift Box", + "diamond_count": 3999, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 3 + ], + "gold_effect": "", + "icon": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3646c259f8ce6f79c762ad00ce51dda0", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3646c259f8ce6f79c762ad00ce51dda0~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3646c259f8ce6f79c762ad00ce51dda0~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6835, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/3646c259f8ce6f79c762ad00ce51dda0", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/3646c259f8ce6f79c762ad00ce51dda0~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/3646c259f8ce6f79c762ad00ce51dda0~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Gift Box", + "primary_effect_id": 1151, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Coffee", + "diamond_count": 1, + "duration": 0, + "for_linkmic": false, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBD8CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/02492214b9bd50fee2d69fd0d089c025.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/02492214b9bd50fee2d69fd0d089c025.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/02492214b9bd50fee2d69fd0d089c025.png~tplv-obj.webp" + ], + "width": 0 + }, + "id": 5479, + "image": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/02492214b9bd50fee2d69fd0d089c025.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/02492214b9bd50fee2d69fd0d089c025.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/02492214b9bd50fee2d69fd0d089c025.png~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Coffee", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Thumbs Up", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Send a {0:string} to vote and support the host.", + "key": "pm_mt_gift_poll_gift_panel_hint", + "pieces": [ + { + "string_value": "Thumbs Up", + "type": 1 + } + ] + }, + "left_icon": { + "avg_color": "#CEE5EB", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_poll_banner_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_poll_banner_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_poll_banner_icon.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/570a663e27bdc460e05556fd1596771a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/570a663e27bdc460e05556fd1596771a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/570a663e27bdc460e05556fd1596771a~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6246, + "image": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/570a663e27bdc460e05556fd1596771a", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/570a663e27bdc460e05556fd1596771a~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/570a663e27bdc460e05556fd1596771a~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Thumbs Up", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Heart", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Send a {0:string} to vote and support the host.", + "key": "pm_mt_gift_poll_gift_panel_hint", + "pieces": [ + { + "string_value": "Heart", + "type": 1 + } + ] + }, + "left_icon": { + "avg_color": "#7C7CA3", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_poll_banner_icon.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_poll_banner_icon.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_poll_banner_icon.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/dd300fd35a757d751301fba862a258f1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/dd300fd35a757d751301fba862a258f1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/dd300fd35a757d751301fba862a258f1~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6247, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/dd300fd35a757d751301fba862a258f1", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/dd300fd35a757d751301fba862a258f1~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/dd300fd35a757d751301fba862a258f1~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Heart", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Cake Slice", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#89A37C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#BCBCE0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f681afb4be36d8a321eac741d387f1e2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f681afb4be36d8a321eac741d387f1e2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f681afb4be36d8a321eac741d387f1e2~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6784, + "image": { + "avg_color": "#CCB1A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f681afb4be36d8a321eac741d387f1e2", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f681afb4be36d8a321eac741d387f1e2~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f681afb4be36d8a321eac741d387f1e2~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Cake Slice", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Glow Stick", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#3D3D3D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e0db516157f7d14e5b79184b197a8d3", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e0db516157f7d14e5b79184b197a8d3~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#D6D6D6", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8e1a5d66370c5586545e358e37c10d25", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8e1a5d66370c5586545e358e37c10d25~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8e1a5d66370c5586545e358e37c10d25~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6788, + "image": { + "avg_color": "#FFEBEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8e1a5d66370c5586545e358e37c10d25", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8e1a5d66370c5586545e358e37c10d25~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8e1a5d66370c5586545e358e37c10d25~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Glow Stick", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Love you", + "diamond_count": 1, + "duration": 1000, + "for_linkmic": true, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0BCBC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ab0a7b44bfc140923bb74164f6f880ab", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ab0a7b44bfc140923bb74164f6f880ab~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ab0a7b44bfc140923bb74164f6f880ab~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6890, + "image": { + "avg_color": "#FFF8EB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/ab0a7b44bfc140923bb74164f6f880ab", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/ab0a7b44bfc140923bb74164f6f880ab~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/ab0a7b44bfc140923bb74164f6f880ab~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 0 + }, + "name": "Love you", + "primary_effect_id": 1204, + "tracker_params": {}, + "type": 2 + } + ], + "page_name": "Gifts", + "page_type": 1, + "region": "PL" + }, + { + "display": true, + "event_name": "livesdk_gift_tab_click", + "force_insert_metrics": {}, + "force_insert_priority_map": {}, + "frequently_used_gifts": [], + "gifts": [ + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Heart Me", + "diamond_count": 1, + "duration": 3000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#7A536D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6415678665a355a01e2765ea159c2426", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6415678665a355a01e2765ea159c2426~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6415678665a355a01e2765ea159c2426~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d56945782445b0b8c8658ed44f894c7b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d56945782445b0b8c8658ed44f894c7b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d56945782445b0b8c8658ed44f894c7b~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7934, + "image": { + "avg_color": "#EBE1CE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d56945782445b0b8c8658ed44f894c7b", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d56945782445b0b8c8658ed44f894c7b~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d56945782445b0b8c8658ed44f894c7b~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": false, + "lock_type": 5 + }, + "name": "Heart Me", + "primary_effect_id": 2996, + "tracker_params": {}, + "type": 4 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": true, + "describe": "sent Cheer You Up", + "diamond_count": 9, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#524037", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/697be30d50be77d7e088955422c42837", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/697be30d50be77d7e088955422c42837~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/697be30d50be77d7e088955422c42837~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#EBEBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8243, + "image": { + "avg_color": "#E0D4BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/97e0529ab9e5cbb60d95fc9ff1133ea6~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 10, + "lock": true, + "lock_type": 4 + }, + "name": "Cheer You Up", + "primary_effect_id": 0, + "tracker_params": {}, + "type": 1 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Marvelous Confetti", + "diamond_count": 100, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c87d6568e9a82629c0703e176cc347a5", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c87d6568e9a82629c0703e176cc347a5~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c87d6568e9a82629c0703e176cc347a5~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fccc851d351716bc8b34ec65786c727d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fccc851d351716bc8b34ec65786c727d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fccc851d351716bc8b34ec65786c727d~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7121, + "image": { + "avg_color": "#A3A3CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fccc851d351716bc8b34ec65786c727d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fccc851d351716bc8b34ec65786c727d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fccc851d351716bc8b34ec65786c727d~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 10, + "lock": true, + "lock_type": 3 + }, + "name": "Marvelous Confetti", + "primary_effect_id": 1367, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Hands Up", + "diamond_count": 499, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#A3C4CC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/136e10d32ceeaf5c633e14bb1fdfb0df", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/136e10d32ceeaf5c633e14bb1fdfb0df~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/136e10d32ceeaf5c633e14bb1fdfb0df~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f4d906542408e6c87cf0a42f7426f0c6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f4d906542408e6c87cf0a42f7426f0c6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f4d906542408e6c87cf0a42f7426f0c6~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8244, + "image": { + "avg_color": "#F1FFEB", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/f4d906542408e6c87cf0a42f7426f0c6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/f4d906542408e6c87cf0a42f7426f0c6~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/f4d906542408e6c87cf0a42f7426f0c6~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 20, + "lock": true, + "lock_type": 4 + }, + "name": "Hands Up", + "primary_effect_id": 2386, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Gem Gun", + "diamond_count": 500, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6a98b73a7ff75a67f8d08d56da065939", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6a98b73a7ff75a67f8d08d56da065939~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6a98b73a7ff75a67f8d08d56da065939~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#FAE6DC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/dd06007ade737f1001977590b11d3f61", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/dd06007ade737f1001977590b11d3f61~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/dd06007ade737f1001977590b11d3f61~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7122, + "image": { + "avg_color": "#607A53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/dd06007ade737f1001977590b11d3f61", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/dd06007ade737f1001977590b11d3f61~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/dd06007ade737f1001977590b11d3f61~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 15, + "lock": true, + "lock_type": 3 + }, + "name": "Gem Gun", + "primary_effect_id": 1366, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Shiny air balloon", + "diamond_count": 1000, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#EBFBFF", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/2681e18d643e2187a43f0b5ff9383e4d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/2681e18d643e2187a43f0b5ff9383e4d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/2681e18d643e2187a43f0b5ff9383e4d~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#DCF4FA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7123, + "image": { + "avg_color": "#7A5353", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/9e7ebdca64b8f90fcc284bb04ab92d24~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 20, + "lock": true, + "lock_type": 3 + }, + "name": "Shiny air balloon", + "primary_effect_id": 1365, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Here We Go", + "diamond_count": 1799, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#C8E0BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1a727de4c9ad59b37c9335879492b515", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1a727de4c9ad59b37c9335879492b515~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1a727de4c9ad59b37c9335879492b515~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCA3A3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8245, + "image": { + "avg_color": "#EBCEE1", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/61b76a51a3757f0ff1cdc33b16c4d8ae~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 30, + "lock": true, + "lock_type": 4 + }, + "name": "Here We Go", + "primary_effect_id": 2387, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Signature Jet", + "diamond_count": 4888, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#523737", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/908deecbd5c74fed06c87b8ff264f15c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/908deecbd5c74fed06c87b8ff264f15c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/908deecbd5c74fed06c87b8ff264f15c~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A536D", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fe27eba54a50c0a687e3dc0f2c02067d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fe27eba54a50c0a687e3dc0f2c02067d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fe27eba54a50c0a687e3dc0f2c02067d~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7124, + "image": { + "avg_color": "#374C52", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/fe27eba54a50c0a687e3dc0f2c02067d", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/fe27eba54a50c0a687e3dc0f2c02067d~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/fe27eba54a50c0a687e3dc0f2c02067d~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 25, + "lock": true, + "lock_type": 3 + }, + "name": "Signature Jet", + "primary_effect_id": 1364, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Happy Party", + "diamond_count": 6999, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#53537A", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/833ac2f66186665b9a37d4064efd20bc", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/833ac2f66186665b9a37d4064efd20bc~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/833ac2f66186665b9a37d4064efd20bc~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/41774a8ba83c59055e5f2946d51215b4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/41774a8ba83c59055e5f2946d51215b4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/41774a8ba83c59055e5f2946d51215b4~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8247, + "image": { + "avg_color": "#A3967C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/41774a8ba83c59055e5f2946d51215b4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/41774a8ba83c59055e5f2946d51215b4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/41774a8ba83c59055e5f2946d51215b4~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 40, + "lock": true, + "lock_type": 4 + }, + "name": "Happy Party", + "primary_effect_id": 2388, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Fly Love", + "diamond_count": 19999, + "duration": 1000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#524937", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/6ae387b1420bd98f0b74ab141b787323", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/6ae387b1420bd98f0b74ab141b787323~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/6ae387b1420bd98f0b74ab141b787323~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 6 + ], + "gold_effect": "", + "icon": { + "avg_color": "#7A6D53", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a598ba4c7024f4d46c1268be4d82f901", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a598ba4c7024f4d46c1268be4d82f901~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a598ba4c7024f4d46c1268be4d82f901~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8248, + "image": { + "avg_color": "#E0BCD4", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/a598ba4c7024f4d46c1268be4d82f901", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/a598ba4c7024f4d46c1268be4d82f901~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/a598ba4c7024f4d46c1268be4d82f901~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 50, + "lock": true, + "lock_type": 4 + }, + "name": "Fly Love", + "primary_effect_id": 3146, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Premium Shuttle", + "diamond_count": 20000, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#EBCECE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/56c23f635641e9269c5e412a7af46779", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/56c23f635641e9269c5e412a7af46779~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/56c23f635641e9269c5e412a7af46779~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#A3967C", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c2b287adee5151b7889d6e3d45b72e44", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c2b287adee5151b7889d6e3d45b72e44~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c2b287adee5151b7889d6e3d45b72e44~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7125, + "image": { + "avg_color": "#B8B8B8", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/c2b287adee5151b7889d6e3d45b72e44", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/c2b287adee5151b7889d6e3d45b72e44~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/c2b287adee5151b7889d6e3d45b72e44~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 30, + "lock": true, + "lock_type": 3 + }, + "name": "Premium Shuttle", + "primary_effect_id": 1363, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent TikTok Universe+", + "diamond_count": 34999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#C8E0BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/8f36121ac6256c88618b6fc73a47c066", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/8f36121ac6256c88618b6fc73a47c066~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/8f36121ac6256c88618b6fc73a47c066~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "A celebratory message will be displayed with the host's and your username as well as the gift name in all LIVE videos in your region.", + "key": "pm_mt_live_gift_panel_note_platform_announcement", + "pieces": [] + }, + "left_icon": { + "avg_color": "#DCDCFA", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_broadcast_icon_v1.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_broadcast_icon_v1.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_broadcast_icon_v1.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#CCBEA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b13105782e8bf8fbefaa83b7af413cee", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b13105782e8bf8fbefaa83b7af413cee~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b13105782e8bf8fbefaa83b7af413cee~tplv-obj.webp" + ], + "width": 0 + }, + "id": 7312, + "image": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/b13105782e8bf8fbefaa83b7af413cee", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/b13105782e8bf8fbefaa83b7af413cee~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/b13105782e8bf8fbefaa83b7af413cee~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": true, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 40, + "lock": true, + "lock_type": 3 + }, + "name": "TikTok Universe+", + "preview_image": { + "avg_color": "#405237", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/14fea2f1fb315a2474b594a44f9d1eef", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/14fea2f1fb315a2474b594a44f9d1eef~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/14fea2f1fb315a2474b594a44f9d1eef~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 1503, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Thunder Falcon", + "diamond_count": 39999, + "duration": 1000, + "for_linkmic": true, + "gift_label_icon": { + "avg_color": "#CCA3BE", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/d4aa0526d03ab0bf8a614f5126153404", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/d4aa0526d03ab0bf8a614f5126153404~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/d4aa0526d03ab0bf8a614f5126153404~tplv-obj.webp" + ], + "width": 0 + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#DCDCFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/26f3fbcda383e6093a19b8e7351a164c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/26f3fbcda383e6093a19b8e7351a164c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/26f3fbcda383e6093a19b8e7351a164c~tplv-obj.webp" + ], + "width": 0 + }, + "id": 8651, + "image": { + "avg_color": "#E0C8BC", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/26f3fbcda383e6093a19b8e7351a164c", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/26f3fbcda383e6093a19b8e7351a164c~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/26f3fbcda383e6093a19b8e7351a164c~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": false, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 43, + "lock": true, + "lock_type": 3 + }, + "name": "Thunder Falcon", + "preview_image": { + "avg_color": "#7C7CA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/1bb7bac8a871a584cf4d3a3a89bc5dc6", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/1bb7bac8a871a584cf4d3a3a89bc5dc6~tplv-obj.image", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/1bb7bac8a871a584cf4d3a3a89bc5dc6~tplv-obj.image" + ], + "width": 0 + }, + "primary_effect_id": 3321, + "tracker_params": {}, + "type": 2 + }, + { + "can_put_in_gift_box": false, + "color_infos": [], + "combo": false, + "describe": "sent Star", + "diamond_count": 99, + "duration": 3000, + "for_linkmic": false, + "gift_label_icon": { + "avg_color": "#FADCF0", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/712f2703c388c70dd8ce492961708304", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/712f2703c388c70dd8ce492961708304~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/712f2703c388c70dd8ce492961708304~tplv-obj.webp" + ], + "width": 0 + }, + "gift_panel_banner": { + "banner_lynx_url": "", + "bg_color_values": [], + "deprecated": "", + "display_text": { + "default_format": { + "bold": false, + "color": "C0FFFFFF", + "font_size": 14, + "italic": false, + "italic_angle": 0, + "use_heigh_light_color": false, + "use_remote_clor": false, + "weight": 0 + }, + "default_pattern": "Subscribe to {0:string} to unlock exclusive Gifts", + "key": "pm_mt_sub_gift_panel_hint", + "pieces": [ + { + "string_value": "oszijestem", + "type": 1 + } + ] + }, + "left_icon": { + "avg_color": "#FFF8EB", + "height": 24, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-sg/gift_panel_subs_icon_3x.png", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_panel_subs_icon_3x.png~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/alisg/webcast-sg/gift_panel_subs_icon_3x.png~tplv-obj.webp" + ], + "width": 24 + }, + "schema_url": "" + }, + "gift_rank_recommend_info": "", + "gift_sub_type": 0, + "gift_vertical_scenarios": [ + 0 + ], + "gold_effect": "", + "icon": { + "avg_color": "#B1CCA3", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/485175fda92f4d2f862e915cbcf8f5c4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/485175fda92f4d2f862e915cbcf8f5c4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/485175fda92f4d2f862e915cbcf8f5c4~tplv-obj.webp" + ], + "width": 0 + }, + "id": 6432, + "image": { + "avg_color": "#FAFAFA", + "height": 0, + "image_type": 0, + "is_animated": false, + "open_web_url": "", + "uri": "webcast-va/485175fda92f4d2f862e915cbcf8f5c4", + "url_list": [ + "https://p16-webcast.tiktokcdn.com/img/maliva/webcast-va/485175fda92f4d2f862e915cbcf8f5c4~tplv-obj.webp", + "https://p19-webcast.tiktokcdn.com/img/maliva/webcast-va/485175fda92f4d2f862e915cbcf8f5c4~tplv-obj.webp" + ], + "width": 0 + }, + "is_box_gift": false, + "is_broadcast_gift": false, + "is_displayed_on_panel": true, + "is_effect_befview": false, + "is_random_gift": false, + "lock_info": { + "gift_level": 0, + "lock": true, + "lock_type": 1 + }, + "name": "Star", + "primary_effect_id": 3309, + "tracker_params": {}, + "type": 4 + } + ], + "page_name": "Exclusive", + "page_type": 15, + "region": "" + } + ], + "pannel_refresh": 0 + }, + "extra": { + "log_id": "202308041955276C8153AC4FE753A6E7AE", + "now": 1691178928341 + }, + "status_code": 0 +} \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..d033abe --- /dev/null +++ b/pom.xml @@ -0,0 +1,22 @@ + + + 4.0.0 + + org.example + TikTokLiveJava + pom + 1.0-SNAPSHOT + + API + Client + + + + 16 + 16 + UTF-8 + + + \ No newline at end of file