diff --git a/apps/econ/env.d.ts b/apps/econ/env.d.ts index a32155f..fe3acfc 100644 --- a/apps/econ/env.d.ts +++ b/apps/econ/env.d.ts @@ -10,3 +10,11 @@ declare namespace Cloudflare { mainModule: MainModule } } + +// Vite serves a `?raw` import as the file's text. Used by the tests to read the generated +// catalog migration as a STRING and diff it against the captures it was generated from — +// it is counted, never executed. +declare module '*.sql?raw' { + const content: string + export default content +} diff --git a/apps/econ/migrations/0015_catalog.sql b/apps/econ/migrations/0015_catalog.sql new file mode 100644 index 0000000..a67bf1c --- /dev/null +++ b/apps/econ/migrations/0015_catalog.sql @@ -0,0 +1,59 @@ +-- The item catalog: every avatar item and every equipment skin the game knows about. +-- +-- STRUCTURE ONLY. This migration holds no rows: the catalog's CONTENTS are loaded by +-- `runx catalog load [--remote]` from apps/econ/static/db/avatar-items.json and +-- apps/econ/static/db/skins.json. +-- +-- That split is deliberate. The item list changes as the game's does, and that is not a +-- schema change -- putting rows here would mean a migration and a deploy per refresh, an +-- ever-growing pile of near-identical data migrations, and no way to reload without writing +-- another one. Versioning the structure and reloading the contents on demand also makes a +-- refresh a readable `git diff` of the JSON rather than of 700KB of generated SQL. +-- +-- ONE KEY spans both kinds: `item_key` is an avatar item's `AvatarItemDesc` and a skin's +-- `ModificationGuid`. Neither repeats, the two never collide, and no item has both -- so the +-- catalog is keyed the same way the INVENTORY is, and resolving what a player owns is a +-- lookup on this column rather than a join keyed on which kind of thing it turned out to be. +-- +-- Not every key is a GUID: 191 skins and 109 avatar items carry the short alpha-string ids +-- the game used before it moved to GUIDs. The column is TEXT and compared as text; do not add +-- a uuid-shaped constraint, and do not try to parse one. +-- +-- `avatar_item_id` is carried as DATA ONLY and is deliberately not indexed. It cannot key +-- anything: it is missing from 22 avatar items (the permanent hair dyes have no id at all) +-- and repeated on 9 more -- id 9503 alone is shared by five unrelated developer items. +-- +-- `tooltip` is deliberately nullable, on both kinds: the capture carries NULL and "" as +-- different values and the client's DTOs serve the difference through. Do not default it. +-- +-- `Favorited` from skins.json is NOT loaded: it is a player's flag, not a property of the +-- skin, and the capture recorded one account's. It is projected as false and overwritten +-- from the player's own `equipment` row -- see src/catalog-db.ts. + +CREATE TABLE IF NOT EXISTS catalog ( + item_key TEXT PRIMARY KEY, + kind TEXT NOT NULL, + friendly_name TEXT NOT NULL, + tooltip TEXT, + rarity INTEGER NOT NULL DEFAULT 0, + platform_mask INTEGER NOT NULL DEFAULT -1, + thumbnail_image TEXT, + avatar_item_type INTEGER, + avatar_item_id INTEGER, + is_base_avatar_item INTEGER, + tag_list TEXT, + created_at TEXT, + prefab_name TEXT, + unlocked_level INTEGER +); + +-- The search index. Folded, because a name search is case-insensitive and SQLite's LIKE only +-- folds ASCII -- which these names are not all of. +CREATE INDEX IF NOT EXISTS idx_catalog_name ON catalog (kind, lower(friendly_name)); + +-- Every skin of one prefab, which is how a skin picker is filled. +CREATE INDEX IF NOT EXISTS idx_catalog_prefab + ON catalog (prefab_name) WHERE prefab_name IS NOT NULL; + +-- Seasonal rows ('halloween', 'music', ...): a handful of tags over 3000-odd rows. +CREATE INDEX IF NOT EXISTS idx_catalog_tag ON catalog (tag_list) WHERE tag_list IS NOT NULL; diff --git a/apps/econ/migrations/0016_catalog_id.sql b/apps/econ/migrations/0016_catalog_id.sql new file mode 100644 index 0000000..171b408 --- /dev/null +++ b/apps/econ/migrations/0016_catalog_id.sql @@ -0,0 +1,33 @@ +-- A small numeric id for a catalog row, for the places that need to name an item as a NUMBER +-- rather than as its `item_key` (a comma-laden `AvatarItemDesc` or a 22-to-36 character guid, +-- neither of which belongs in a URL or a compact index). +-- +-- It is a LOAD-ORDER SURROGATE and nothing more. `runx catalog load` assigns it, so it is +-- stable only until the next load: a `--replace` renumbers everything from 1, and a merge +-- renumbers whatever the captures mention. Nothing may store it, reference it across a load, +-- or treat it as an item's identity -- `item_key` is the identity, and it is what the +-- inventory stores. Anything durable that points at a catalog row must point with the key. +-- +-- Unique, because a numeric handle that names two rows is useless as a handle. The loader +-- numbers the captures from 10000 upward and pushes anything already in the table but absent +-- from them above that range, so the numbering stays collision-free through a merge as well as +-- a replace. +-- +-- It starts at 10000 rather than 1 because a generated storefront lists a row under this very +-- number as its `PurchasableItemId`, and every captured storefront's own ids are 2764 or below. +-- Numbering from 1 would have collided with sf3's head-on, so one id would mean two different +-- items depending on which storefront the client read it from. +-- +-- Nullable, because that is the state between "the row exists" and "the load has numbered +-- it": the loader clears the column first so a merge cannot collide with stale numbers, and +-- fills it as it goes. A NULL here after a load means the load did not finish -- the CLI +-- verifies row counts and probe keys for exactly that reason. SQLite treats NULLs as distinct +-- for uniqueness, so any number of un-numbered rows can coexist. +-- +-- Its own migration rather than folded into 0015, because 0015 is already applied: an edit +-- there would never re-run on a database that has recorded it. + +ALTER TABLE catalog ADD COLUMN catalog_id INTEGER; + +CREATE UNIQUE INDEX IF NOT EXISTS idx_catalog_id + ON catalog (catalog_id) WHERE catalog_id IS NOT NULL; diff --git a/apps/econ/src/catalog-db.ts b/apps/econ/src/catalog-db.ts new file mode 100644 index 0000000..8147c3c --- /dev/null +++ b/apps/econ/src/catalog-db.ts @@ -0,0 +1,354 @@ +import { CatalogKind } from './catalog-load' + +import type { CatalogKindValue } from './catalog-load' + +/** + * The item CATALOG on the shared `recflare` D1 database — every avatar item and every + * equipment skin the game knows about, one row each, loaded once by migration rather than + * written at runtime. Nothing here is per-player: ownership lives in `inventory` and + * `equipment`, and this table only says what a thing IS. + * + * It exists to be QUERIED. The catalogs were previously reachable only by parsing a whole + * storefront JSON per request (`sf{N}.json`, 1161 items in sf3 alone) and by scanning the + * bundled `default-avatar-items.json`, which means every lookup pays for the whole file and + * nothing can be searched by name or filtered by tag at all. A row with indexes answers those + * in one statement. + * + * BOTH kinds share one table because they share most of a record — a display name, a tooltip, a + * rarity, a platform mask, a thumbnail — and because the interesting queries ("what is called + * X", "what is this thing the player owns") run across both. `kind` discriminates, and the + * columns each kind alone carries are nullable and empty on the other. Read a row through + * {@link toCatalogAvatarItem}/{@link toCatalogSkin} rather than serving it raw: the client's + * two DTOs share no key order and differ in what they omit. + * + * Where the rows come from: `static/db/avatar-items.json` and `static/db/skins.json`, both + * captured from the reference and loaded by `runx catalog load`. + * + * The migration builds the TABLE ONLY — it holds no rows. The catalog changes as the game's + * item list changes, and that is not a schema change: a migration per refresh would mean a + * deploy per refresh, an ever-growing pile of near-identical data migrations, and no way to + * reload without inventing a new one. So the structure is versioned and the contents are + * (re)loaded on demand, which also makes a refresh a `git diff` of the JSON rather than of + * 700KB of generated SQL. + * + * This worker (`econ`) owns the table and its migration. + */ + +// The discriminator and the JSON→row mapping live in `catalog-load.ts`, which deliberately +// touches no Workers types: `runx catalog load` (a plain Node CLI in @repo/tools) imports it, +// and importing this module instead would drag `D1Database` into a package that has no such +// types. Re-exported here so callers still get the whole table from one import. +export { + buildCatalogLoad, + CATALOG_INSERT_COLUMNS, + CatalogKind, + type AvatarItemCapture, + type CatalogCollision, + type CatalogKindValue, + type CatalogLoadRow, + type CatalogValue, + type SkinCapture, +} from './catalog-load' + +/** + * Schema DDL (mirror of migrations/0015_catalog.sql) — also builds the table in tests. + * + * ONE KEY spans both kinds. `item_key` is an avatar item's `AvatarItemDesc` and a skin's + * `ModificationGuid`: neither repeats, the two never collide, and no item has both. That is + * also how the INVENTORY identifies what a player owns, so resolving an owned thing is a lookup + * on this column — not a join that first has to establish which kind of thing it is. + * + * Not every key is a GUID. 191 skins and 109 avatar items carry the short alpha-string ids the + * game used before it moved to GUIDs (`_OWVy3z6iU-M3-zbQgSLig`), so the column is TEXT and + * compared as text. Do not add a uuid-shaped constraint and do not try to parse one. + * + * `avatar_item_id` is carried as DATA ONLY and deliberately not indexed: it is missing from 22 + * avatar items and repeated on 9 more (id 9503 alone covers five unrelated developer items), so + * it can neither key nor reliably find anything. + * + * `catalog_id` is the small NUMERIC handle the site uses where a key would be unwieldy, and is + * what a generated storefront lists a row under as its `PurchasableItemId`. It is assigned by + * the loader from `CATALOG_ID_BASE` (10000, clear of every captured storefront's own ids) and + * renumbered by every load, so it identifies a row only within one load — see the field's own + * note. It is unique where set, and the migration that adds it is 0016, since 0015 was already + * applied. + * + * Nullability is load-bearing rather than incidental: `tooltip` is genuinely NULL on some rows + * of BOTH kinds and `""` on others, and the client's DTOs serve the distinction through, so the + * column may not be defaulted to the empty string. + */ +export const CATALOG_SCHEMA_DDL: string[] = [ + `CREATE TABLE IF NOT EXISTS catalog ( + item_key TEXT PRIMARY KEY, + catalog_id INTEGER, + kind TEXT NOT NULL, + friendly_name TEXT NOT NULL, + tooltip TEXT, + rarity INTEGER NOT NULL DEFAULT 0, + platform_mask INTEGER NOT NULL DEFAULT -1, + thumbnail_image TEXT, + avatar_item_type INTEGER, + avatar_item_id INTEGER, + is_base_avatar_item INTEGER, + tag_list TEXT, + created_at TEXT, + prefab_name TEXT, + unlocked_level INTEGER + )`, + // The search index. Folded, because a name search is case-insensitive and SQLite's LIKE is + // only case-insensitive for ASCII — which these names are not all of. + `CREATE INDEX IF NOT EXISTS idx_catalog_name ON catalog (kind, lower(friendly_name))`, + // Every skin of one prefab, which is how a skin picker is filled. + `CREATE INDEX IF NOT EXISTS idx_catalog_prefab ON catalog (prefab_name) WHERE prefab_name IS NOT NULL`, + // Seasonal rows ('halloween', 'music', …) — a handful of tags over 3000-odd rows, so the + // index is worth far more than its size. + `CREATE INDEX IF NOT EXISTS idx_catalog_tag ON catalog (tag_list) WHERE tag_list IS NOT NULL`, + // The numeric handle. Unique where set — a number that names two rows is useless as a handle + // — and partial, because a row is un-numbered between existing and being numbered by a load. + `CREATE UNIQUE INDEX IF NOT EXISTS idx_catalog_id ON catalog (catalog_id) WHERE catalog_id IS NOT NULL`, +] + +/** A catalog row exactly as stored — snake_case, both kinds' columns, most of them null. */ +export interface CatalogRow { + item_key: string + /** + * A small numeric handle for the row — for the surfaces that need to name an item as a + * number rather than as a comma-laden `AvatarItemDesc` or a guid, and the + * `PurchasableItemId` a generated storefront lists it under. + * + * A LOAD-ORDER SURROGATE, not an identity: `runx catalog load` assigns it, so it is stable + * only until the next load. Never store it, never reference it across a load, never treat it + * as what an item IS — `item_key` is that, and it is what the inventory holds. NULL only + * between a row existing and a load numbering it. + */ + catalog_id: number | null + kind: string + friendly_name: string + tooltip: string | null + rarity: number + platform_mask: number + thumbnail_image: string | null + avatar_item_type: number | null + avatar_item_id: number | null + is_base_avatar_item: number | null + tag_list: string | null + created_at: string | null + prefab_name: string | null + unlocked_level: number | null +} + +/** + * The catalog's view of an avatar item — the bundled `default-avatar-items.json` record plus + * the four fields that file leaves out (`AvatarItemId`, `IsBaseAvatarItem`, `CreatedAt`, + * `ThumbnailImage`), which is what `GET /api/avatar/v1/defaultunlocked` serves and what the + * store rows resolve against. + * + * `AvatarItemId` is nullable and `Tooltip` may be null; both are true of the captured data and + * the client reads them that way. Do not tighten either to keep a projection simple. + */ +export interface CatalogAvatarItem { + AvatarItemDesc: string + AvatarItemType: number + PlatformMask: number + FriendlyName: string + Tooltip: string | null + Rarity: number + TagList: string | null + AvatarItemId: number | null + IsBaseAvatarItem: boolean + CreatedAt: string | null + ThumbnailImage: string | null +} + +/** + * The catalog's view of a skin, in the client's `Equipment` shape plus the two fields the + * capture carries that an owned-equipment row does not (`UnlockedLevel`, `ThumbnailImage`). + * + * `Favorited` is a PLAYER's flag, not a property of the skin, so the catalog does not store it + * — every captured row said `false` because the capture belonged to one account. It is + * projected as `false` here and overwritten from the owning player's `equipment` row; storing + * it would make one player's favourites everyone's. + */ +export interface CatalogSkin { + PrefabName: string + ModificationGuid: string + UnlockedLevel: number + Favorited: boolean + PlatformMask: number + FriendlyName: string + Tooltip: string | null + Rarity: number + ThumbnailImage: string | null +} + +/** Projects a row to the avatar-item record. Throws on a row of the wrong kind. */ +export function toCatalogAvatarItem(row: CatalogRow): CatalogAvatarItem { + if (row.kind !== CatalogKind.AvatarItem) { + throw new Error(`catalog row ${row.item_key} is a ${row.kind}, not an avatar item`) + } + return { + // The key IS the desc — that is what makes it the key. + AvatarItemDesc: row.item_key, + AvatarItemType: row.avatar_item_type ?? 0, + PlatformMask: row.platform_mask, + FriendlyName: row.friendly_name, + Tooltip: row.tooltip, + Rarity: row.rarity, + TagList: row.tag_list, + AvatarItemId: row.avatar_item_id, + IsBaseAvatarItem: row.is_base_avatar_item === 1, + CreatedAt: row.created_at, + ThumbnailImage: row.thumbnail_image, + } +} + +/** Projects a row to the skin record. Throws on a row of the wrong kind. */ +export function toCatalogSkin(row: CatalogRow): CatalogSkin { + if (row.kind !== CatalogKind.Skin) { + throw new Error(`catalog row ${row.item_key} is a ${row.kind}, not a skin`) + } + return { + PrefabName: row.prefab_name ?? '', + // The key IS the guid. + ModificationGuid: row.item_key, + UnlockedLevel: row.unlocked_level ?? 0, + Favorited: false, + PlatformMask: row.platform_mask, + FriendlyName: row.friendly_name, + Tooltip: row.tooltip, + Rarity: row.rarity, + ThumbnailImage: row.thumbnail_image, + } +} + +/** + * The base asset an avatar item is built on — the FIRST field of its `AvatarItemDesc`, which is + * `,,,`. The client can only draw an item whose base asset it + * already ships with, so this is the field that decides whether a store row renders anything + * (see the Generic-row notes in the `lists` worker). + */ +export function baseAsset(desc: string): string { + return desc.split(',')[0] ?? '' +} + +/** + * One catalog row by its key, WHICHEVER kind it is. This is the lookup the inventory wants: a + * player's owned things are ids of exactly this shape, and the row that comes back says which + * kind it turned out to be. + */ +export async function getCatalogItem(db: D1Database, itemKey: string): Promise { + return await db + .prepare('SELECT * FROM catalog WHERE item_key = ?1') + .bind(itemKey) + .first() +} + +/** + * One catalog row by its numeric handle. + * + * Only meaningful WITHIN a load: the number is reassigned every time the catalog is loaded, so + * a caller holding one from before a reload will get a different item or nothing at all. Fine + * for a request that looked the number up moments ago; never for anything stored. + */ +export async function getCatalogItemById( + db: D1Database, + catalogId: number +): Promise { + return await db + .prepare('SELECT * FROM catalog WHERE catalog_id = ?1') + .bind(catalogId) + .first() +} + +/** + * Resolve many keys at once, in the order asked; unknown keys are skipped rather than left as + * holes, so the result may be SHORTER than the input and must not be read positionally. One + * statement for a whole inventory, which is the point of the table. + */ +export async function getCatalogItems(db: D1Database, itemKeys: string[]): Promise { + if (itemKeys.length === 0) return [] + const placeholders = itemKeys.map((_, i) => `?${i + 1}`).join(', ') + const { results } = await db + .prepare(`SELECT * FROM catalog WHERE item_key IN (${placeholders})`) + .bind(...itemKeys) + .all() + const byKey = new Map(results.map((r) => [r.item_key, r])) + return itemKeys.flatMap((key) => byKey.get(key) ?? []) +} + +/** One avatar item by its `AvatarItemDesc`. Null for an unknown key OR for a skin's key. */ +export async function getAvatarItem( + db: D1Database, + avatarItemDesc: string +): Promise { + const row = await getCatalogItem(db, avatarItemDesc) + return row?.kind === CatalogKind.AvatarItem ? toCatalogAvatarItem(row) : null +} + +/** One skin by its `ModificationGuid`. Null for an unknown key OR for an avatar item's key. */ +export async function getSkin( + db: D1Database, + modificationGuid: string +): Promise { + const row = await getCatalogItem(db, modificationGuid) + return row?.kind === CatalogKind.Skin ? toCatalogSkin(row) : null +} + +/** Every skin of one prefab (`[MakerPen]`, `[QuestSword]`, …), by name. */ +export async function getSkinsForPrefab( + db: D1Database, + prefabName: string +): Promise { + const { results } = await db + .prepare('SELECT * FROM catalog WHERE prefab_name = ?1 ORDER BY friendly_name') + .bind(prefabName) + .all() + return results.map(toCatalogSkin) +} + +/** + * Name search within one kind — a case-insensitive substring match, ordered by name so paging + * is stable. + * + * Both sides are lowered so the comparison hits `idx_catalog_name`, whose second column is + * `lower(friendly_name)`: SQLite's `LIKE` folds case for ASCII only, and these names are not + * all ASCII. `%` and `_` in the needle are escaped, so a player searching for a literal + * underscore gets that rather than a wildcard. + */ +export async function searchCatalog( + db: D1Database, + kind: CatalogKindValue, + needle: string, + limit = 50 +): Promise { + const escaped = needle.toLowerCase().replace(/[\\%_]/g, (ch) => `\\${ch}`) + const { results } = await db + .prepare( + `SELECT * FROM catalog + WHERE kind = ?1 AND lower(friendly_name) LIKE ?2 ESCAPE '\\' + ORDER BY friendly_name, item_key LIMIT ?3` + ) + .bind(kind, `%${escaped}%`, limit) + .all() + return results +} + +/** Every avatar item carrying a seasonal tag (`halloween`, `music`, …), by name. */ +export async function getAvatarItemsByTag( + db: D1Database, + tag: string +): Promise { + const { results } = await db + .prepare('SELECT * FROM catalog WHERE tag_list = ?1 ORDER BY friendly_name') + .bind(tag) + .all() + return results.map(toCatalogAvatarItem) +} + +/** How many rows of each kind the catalog holds — the cheap check that a load actually landed. */ +export async function countCatalog(db: D1Database): Promise> { + const { results } = await db + .prepare('SELECT kind, COUNT(*) AS n FROM catalog GROUP BY kind') + .all<{ kind: string; n: number }>() + return Object.fromEntries(results.map((r) => [r.kind, r.n])) +} diff --git a/apps/econ/src/catalog-load.ts b/apps/econ/src/catalog-load.ts new file mode 100644 index 0000000..ea7fc73 --- /dev/null +++ b/apps/econ/src/catalog-load.ts @@ -0,0 +1,261 @@ +/** + * Turning the captured JSON into `catalog` rows — the loader half of the item catalog, used by + * `runx catalog load` (in @repo/tools) rather than by the worker. + * + * Separate from `catalog-db.ts` for one reason: that module types its queries with + * `D1Database`, a Workers type, and the loader runs in a plain Node CLI that has no such + * types. Everything here is pure data mapping with no imports, so both sides can use it. + * `catalog-db.ts` re-exports all of it, so nothing outside these two files needs to know. + * + * The mapping lives beside the schema it fills (rather than in the CLI) so that a column added + * to the table and a column added to the loader cannot drift apart — a test pins that they + * agree, and the loader renders values POSITIONALLY, so a mismatch is a silent mis-load. + */ + +/** What a catalog row IS — the discriminator, and what says which id `item_key` holds. */ +export const CatalogKind = { + /** An avatar item: something worn. Its `item_key` is the `AvatarItemDesc`. */ + AvatarItem: 'avatar_item', + /** An equipment skin: a re-skin of a held prefab. Its `item_key` is the `ModificationGuid`. */ + Skin: 'skin', +} as const + +export type CatalogKindValue = (typeof CatalogKind)[keyof typeof CatalogKind] + +/** + * The capture's avatar-item record (`static/db/avatar-items.json`). + * + * Everything from `TagList` down is absent on some rows — the 22 permanent hair dyes carry + * only the first six fields — so those are optional rather than nullable. The distinction + * matters: a missing key and a null value both land as NULL, but only one of them is a field + * the capture actually recorded. + */ +export interface AvatarItemCapture { + AvatarItemDesc: string + AvatarItemType: number + PlatformMask: number + FriendlyName: string + Tooltip: string | null + Rarity: number + TagList?: string | null + AvatarItemId?: number + IsBaseAvatarItem?: boolean + CreatedAt?: string + ThumbnailImage?: string | null +} + +/** The capture's skin record (`static/db/skins.json`). Every field is present on every row. */ +export interface SkinCapture { + PrefabName: string + ModificationGuid: string + UnlockedLevel: number + Favorited: boolean + PlatformMask: number + FriendlyName: string + Tooltip: string | null + Rarity: number + ThumbnailImage: string | null +} + +/** + * The first `catalog_id` a load hands out. + * + * The catalog needs ids that cannot be confused with any captured storefront's, because a + * generated storefront lists a row under its `catalog_id` DIRECTLY — one number, no second + * numbering and no arithmetic between them. Every real captured `PurchasableItemId` is 2764 or + * below (one sf3 outlier at 20756767 aside), so numbering from 1 would have collided with sf3's + * own head-on and the same id would mean two different items depending on which storefront the + * client read it from. Starting at 10000 puts the whole catalog somewhere nothing else uses. + */ +export const CATALOG_ID_BASE = 10_000 + +/** The columns a load writes, in the order {@link toCatalogInsertRow} returns values. */ +export const CATALOG_INSERT_COLUMNS = [ + 'item_key', + 'catalog_id', + 'kind', + 'friendly_name', + 'tooltip', + 'rarity', + 'platform_mask', + 'thumbnail_image', + 'avatar_item_type', + 'avatar_item_id', + 'is_base_avatar_item', + 'tag_list', + 'created_at', + 'prefab_name', + 'unlocked_level', +] as const + +/** A value bound into a load's INSERT. `undefined` is a key the capture omitted. */ +export type CatalogValue = string | number | boolean | null | undefined + +/** One row of a load, plus enough to name it in a collision report. */ +export interface CatalogLoadRow { + key: string + /** Its `catalog_id`: 1-based position in this load, also present inside `values`. */ + id: number + label: string + values: CatalogValue[] +} + +/** A duplicate `item_key` in the captures: which key, which row won, which was dropped. */ +export interface CatalogCollision { + key: string + kept: string + dropped: string +} + +function avatarItemRow(i: AvatarItemCapture): Omit { + return { + key: i.AvatarItemDesc, + label: `${i.FriendlyName} (avatar item)`, + values: [ + i.AvatarItemDesc, + // Filled in by buildCatalogLoad once the de-duplicated order is known. + null, + CatalogKind.AvatarItem, + i.FriendlyName, + i.Tooltip, + i.Rarity, + i.PlatformMask, + i.ThumbnailImage, + i.AvatarItemType, + i.AvatarItemId, + i.IsBaseAvatarItem ?? false, + i.TagList, + i.CreatedAt, + null, + null, + ], + } +} + +function skinRow(s: SkinCapture): Omit { + return { + key: s.ModificationGuid, + label: `${s.FriendlyName} (skin, ${s.PrefabName})`, + values: [ + s.ModificationGuid, + // Filled in by buildCatalogLoad once the de-duplicated order is known. + null, + CatalogKind.Skin, + s.FriendlyName, + s.Tooltip, + s.Rarity, + s.PlatformMask, + s.ThumbnailImage, + null, + null, + null, + null, + null, + s.PrefabName, + s.UnlockedLevel, + ], + } +} + +/** + * Turn both captures into the rows a load writes, de-duplicated on `item_key`. + * + * `item_key` is unique across BOTH kinds, so a repeat is a defect in the capture rather than + * something the table should model. First occurrence wins and the rest are RETURNED rather + * than dropped on the floor: the caller has to report them, because a collision that vanishes + * quietly is the exact failure the single key exists to prevent. + * + * Each surviving row is also numbered — `catalog_id`, from {@link CATALOG_ID_BASE} upward in + * capture order, the small numeric handle the site uses in place of a comma-laden desc or a + * guid, and the `PurchasableItemId` a generated storefront lists it under. It is assigned here + * rather than by the database so the caller can render it into the same INSERT, and it is a + * LOAD-ORDER surrogate: the next load renumbers, and nothing may store it. + */ +export function buildCatalogLoad( + avatarItems: AvatarItemCapture[], + skins: SkinCapture[] +): { rows: CatalogLoadRow[]; collisions: CatalogCollision[] } { + const seen = new Map() + const rows: CatalogLoadRow[] = [] + const collisions: CatalogCollision[] = [] + const idAt = CATALOG_INSERT_COLUMNS.indexOf('catalog_id') + for (const row of [...avatarItems.map(avatarItemRow), ...skins.map(skinRow)]) { + const kept = seen.get(row.key) + if (kept !== undefined) { + collisions.push({ key: row.key, kept, dropped: row.label }) + continue + } + seen.set(row.key, row.label) + // Numbered AFTER de-duplication and from {@link CATALOG_ID_BASE}, so a load's ids are + // exactly BASE..BASE+rows.length-1 with no gaps — a dropped duplicate must not burn a + // number. + const id = CATALOG_ID_BASE + rows.length + row.values[idAt] = id + rows.push({ ...row, id }) + } + return { rows, collisions } +} + +/** + * Rarities that are NOT sold, and so never appear in a generated storefront. + * + * `-1` is the developer/unreleased tier. The items carrying it stay in the `catalog` table — + * that is a record of what EXISTS — but a storefront is a record of what is for SALE, and an + * item listed in one can be bought: `findStoreItem` resolves a purchase against the catalog + * file itself, so listing them at any price would put them on sale. + * + * Lives here rather than in the storefront generator because two things need the same answer: + * the generator, which omits them, and anything that hands the client a PurchasableItem id, + * which must not name one the storefront never listed. A client asked to resolve an id no + * storefront sells renders nothing, indistinguishably from an id it failed to parse. + */ +export const UNSELLABLE_RARITIES: readonly number[] = [-1] + +/** Whether an item of this rarity may appear in a storefront. */ +export const isSellableRarity = (rarity: number): boolean => !UNSELLABLE_RARITIES.includes(rarity) + +/** + * What a catalog item costs, by rarity — the pricing every surface that sells a catalog row + * must agree on. + * + * Shared rather than living in the storefront generator alone because a purchase is CHECKED + * against the price the client was shown: `priceCheck` compares the posted `RequestedPrice` + * with the catalog's, and a server that priced a buy differently from the file it listed would + * refuse every purchase as "Price has changed". One table, both sides. + * + * The tiers 0/10/30/50 were specified; 20 sits between its neighbours at 700 (sf3's own + * rarity-20 items cluster at 400-600, but 600 is taken by rarity 10 here, and two tiers sharing + * a price makes the rarity invisible). {@link UNSELLABLE_RARITIES} is priced by nothing — those + * items are not sold at all. + */ +export const PRICE_BY_RARITY: Record = { + 0: 150, + 10: 600, + 20: 700, + 30: 800, + 50: 3000, +} + +/** + * What a rarity absent from {@link PRICE_BY_RARITY} costs — the bottom tier, never free. + * + * Only reachable if a future capture introduces a rarity nobody has priced. A floor rather than + * a skip because an unpriced item silently vanishing from the store is harder to notice than + * one that turns up cheap; a rarity meant to be unsellable belongs in + * {@link UNSELLABLE_RARITIES}, where a load reports it. + */ +export const DEFAULT_PRICE = 150 + +/** What one catalog row costs, in RecCenterTokens. */ +export const priceForRarity = (rarity: number): number => PRICE_BY_RARITY[rarity] ?? DEFAULT_PRICE + +/** + * What Rec Room Plus takes off, in percent. The same number the server's own `subscriberFloor` + * allows, which is what makes a subscriber's discounted `RequestedPrice` land inside the band + * rather than through the floor. + */ +export const SUBSCRIBER_DISCOUNT_PERCENT = 10 + +/** The subscriber price for a regular one. Floored, matching the server's `subscriberFloor`. */ +export const subscriberPriceFor = (regular: number): number => + Math.floor((regular * (100 - SUBSCRIBER_DISCOUNT_PERCENT)) / 100) diff --git a/apps/econ/src/econ.app.ts b/apps/econ/src/econ.app.ts index 1cff572..fac74bc 100644 --- a/apps/econ/src/econ.app.ts +++ b/apps/econ/src/econ.app.ts @@ -17,13 +17,8 @@ import { setOutfit, } from '@repo/domain' import { intVar, logger, withCleanSpec, withNotFound, withOnError } from '@repo/hono-helpers' -import { validateAndGetAccountId, validateAndGetRoles } from '@repo/jwt' +import { validateAndGetAccountId, validateAndGetRoles, validateAndGetVersion } from '@repo/jwt' -// Invention storage (owned by the `api` worker, on this same `recflare` database). -// Imported directly rather than copied: these are plain D1 helpers with no bindings of -// their own, and buyInvention has to read the very rows `api` writes. -// Custom avatar items likewise live in an `api`-owned table; the UGC-purchasable bulk -// lookup is the store's view of those rows. import { getCustomAvatarItems, toUgcPurchasable, @@ -40,6 +35,7 @@ import { censorSwears } from '../../api/src/sanitize' import { BalanceAddType } from '../../notify/src/notification-payloads' import { NotificationType } from '../../notify/src/notification-types' import adCarouselItems from '../static/ad-carousel-items.json' +import avatarItemCatalog from '../static/db/avatar-items.json' import defaultAvatarItems from '../static/default-avatar-items.json' import defaultAvatar from '../static/default-avatar.json' import defaultBaseAvatarItems from '../static/default-base-avatar-items.json' @@ -55,6 +51,13 @@ import { isSpendable, spendCurrency, } from './balance-db' +import { + CATALOG_ID_BASE, + CatalogKind, + isSellableRarity, + priceForRarity, + subscriberPriceFor, +} from './catalog-load' import { claimChallengeGift, getChallengeStatuses, recordChallengeProgress } from './challenge-db' import { buildRotation, rotationMapId, withWeeklyGift } from './challenge-rotation' import { @@ -90,10 +93,13 @@ import { GameRewardRequest, InfluencerIdsResponse, InfluencerTierResponse, + ItemPurchaseInfoList, + ItemPurchaseInfosRequest, json, JsonArray, jsonBody, JsonObject, + LockedItemsBulkRequest, MakerAiFreeTrialEligibilityResponse, OpaqueJsonBody, OPTIONAL_AUTHED, @@ -113,11 +119,13 @@ import { claimReward } from './reward-db' import type { Context } from 'hono' import type { GiftContent, Outfit, Progression, StoredGift, XpGrant } from '@repo/domain' +import type { CustomAvatarItem } from '../../api/src/custom-avatar-items-db' import type { BalanceResponsePayload, PurchaseBalanceModificationPayload, } from '../../notify/src/notification-payloads' import type { Avatar } from './avatar-db' +import type { CatalogRow } from './catalog-db' import type { ChallengeGiftBlock, EquipmentGift, @@ -128,6 +136,12 @@ import type { App } from './context' import type { Equipment } from './equipment-db' import type { AvatarItem } from './inventory-db' +// Invention storage (owned by the `api` worker, on this same `recflare` database). +// Imported directly rather than copied: these are plain D1 helpers with no bindings of +// their own, and buyInvention has to read the very rows `api` writes. +// Custom avatar items likewise live in an `api`-owned table; the UGC-purchasable bulk +// lookup is the store's view of those rows. + /** * Economy Worker. Hosts the avatar/economy endpoints the game client calls on * the `econ` service (these are separate from the main `api` worker). Balances, @@ -157,6 +171,31 @@ async function authedRoles(c: Context): Promise { return validateAndGetRoles(c.req.raw, await c.env.JWT_SECRET.get()) } +/** + * The client build this request's token was minted for (`rn.ver`), as a comparable NUMBER — + * the leading `YYYYMMDD` of e.g. `20250718.01`, whose `.01` is a same-day rebuild and not a + * version to order by. `null` when there is no valid token, when it carries no `rn.ver` (an + * older token, issued before the claim did), or when the claim isn't a build at all. + * + * Unverified — a client can claim any build — which is fine for what it gates here: a build + * lying about itself only changes which storefront its own player is shown. + */ +async function authedBuild(c: Context): Promise { + const version = await validateAndGetVersion(c.req.raw, await c.env.JWT_SECRET.get()) + if (version === null) return null + const build = Number.parseInt(version.split('.')[0] ?? '', 10) + return Number.isInteger(build) ? build : null +} + +/** + * The last client build treated as the 2023-era one. `GAME_VERSION` — what the rest of the + * stack targets and reports for itself — so it and anything older keep exactly what they had, + * and only a LATER build gets anything served differently. + * + * Compared with {@link authedBuild}, which reads the build off the token's `rn.ver`. + */ +const LEGACY_CLIENT_BUILD = 20230414 + /** Results.Unauthorized() equivalent — 401 with empty body. */ function unauthorized(c: Context) { return c.body(null, 401) @@ -593,15 +632,73 @@ interface GiftRequest { } /** - * Read a storefront catalog (`sf{type}.json`) from the ASSETS binding. Null when there is - * no such storefront. + * Storefront ids that are served ANOTHER storefront's catalog, because no capture of their + * own exists yet. Placeholder: an alias here is a storefront this server hasn't got, not one + * it has decided is a duplicate, so a line should come OUT again the moment `static/storefronts` + * grows the real `sf{id}.json` — the alias silently wins over a file of that name. + * + * Resolved in {@link storefrontAssetPath} rather than at the route, so an aliased storefront + * is aliased for BUYING too. Browsing and purchasing read the same catalog by id, and an + * alias applied to only the browse side would show a page of items whose every purchase + * 404s as "no such storefront". + */ +const STOREFRONT_ALIASES: Record = { + // Empty. 1704 was here, served sf3's catalog, until `static/storefronts/sf1704.json` was + // generated — see `runx storefront build`. Its line came out the moment the file appeared, + // exactly as the note above says it must: an alias silently beats a real file of that name, + // so leaving it would have kept serving sf3 from a storefront that now has its own catalog. +} + +/** + * Storefronts that have a SECOND file for newer clients, keyed by the id the client asks for + * and naming the file a build past {@link LEGACY_CLIENT_BUILD} is served instead. + * + * `3` is the general store. The 2023 client keeps `sf3.json` exactly as captured; a later one + * gets `sf3-2025.json`, which is that same file plus every sellable row of the item catalog + * (see `runx storefront build`). One storefront id either way — the client asks for 3 in both + * cases and neither knows there are two files — so nothing about the request changes and no + * item is renumbered. The two id spaces do not collide, which is what makes the merge safe. + * + * Resolved in {@link storefrontAssetPath}, which BOTH the listing route and + * {@link loadStorefront} go through, so browsing and buying always read the same file. That is + * the whole reason it is not done at the route: a newer client shown the merged store and then + * charged against the captured one would have every catalog item 404 as "no such storefront". + */ +const STOREFRONT_BY_BUILD: Record = { + '3': 'sf3-2025', +} + +/** + * The ASSETS path a storefront id reads from, following any {@link STOREFRONT_ALIASES} entry + * and any {@link STOREFRONT_BY_BUILD} variant. The id arrives as a path param, so it is a + * string here rather than a number: both tables are matched on what the client asked for. + * + * `build` is the caller's `rn.ver` (see {@link authedBuild}), or null when there is no readable + * one. Null gets the captured file: an unversioned token is the OLD client, so treating "can't + * prove its version" as "newer" would swap the store out from under the build that needs it. + */ +function storefrontAssetPath(id: string, build: number | null): string { + const aliased = STOREFRONT_ALIASES[id] ?? id + const variant = STOREFRONT_BY_BUILD[aliased] + if (variant !== undefined && build !== null && build > LEGACY_CLIENT_BUILD) { + return `/${variant}.json` + } + return `/sf${aliased}.json` +} + +/** + * Read a storefront catalog from the ASSETS binding — WHICH file depending on the caller's + * build, see {@link storefrontAssetPath}. Null when there is no such storefront. * * Separate from {@link findStoreItem} so a caller resolving SEVERAL items from one - * storefront reads (and parses) it once: sf3 alone is over a thousand items, and a bulk - * purchase carries up to `BULK_PURCHASE_CAP` lines. + * storefront reads (and parses) it once: sf3 alone is over a thousand items and the merged + * sf3-2025 is four, and a bulk purchase carries up to `BULK_PURCHASE_CAP` lines. */ async function loadStorefront(c: Context, storefrontType: number): Promise { - const res = await c.env.ASSETS.fetch(new URL(`/sf${storefrontType}.json`, c.req.url)) + const build = await authedBuild(c) + const res = await c.env.ASSETS.fetch( + new URL(storefrontAssetPath(String(storefrontType), build), c.req.url) + ) if (!res.ok) return null return (await res.json()) as Storefront } @@ -621,6 +718,92 @@ async function findStoreItem( return storefront.StoreItems.find((it) => it.PurchasableItemId === purchasableItemId) ?? null } +/** + * How one item may be bought, as `POST /api/items/purchaseInfos` answers it. The store row + * holds ids only, so everything a price tag needs comes from here. + * + * `ItemId` re-uses the request's reference verbatim — camelCase members under a PascalCase + * key. It reads like a mistake and is not one: the client's decoder names the members that + * way on both legs, and PascalCasing them here loses the id. + * + * `PurchaseMethodId` names WHICH listing sells the item, and is a tagged union of the two + * kinds of id a listing can have: `Type` 1 carries a `Guid` (a UGC item, keyed by its own + * guid) and leaves `NumberId` null; a storefront's numbered `PurchasableItemId` would be the + * other side. Nothing here sells anything under a second listing, so the guid is the item's own. + */ +interface ItemPurchaseInfo { + ItemId: { itemType: number; itemId: string } + PurchaseMethodId: { Type: number; NumberId: number | null; Guid: string | null } + Prices: Array<{ + CurrencyType: number + Price: number + StorefrontSaleData: { + SalePercent: number + SaleStartDate: string | null + SaleEndDate: string | null + } | null + }> + NewUntil: string | null + AvailableAt: string | null + AvailableUntil: string | null + CanBeGifted: boolean + CanApplySubscriberDiscount: boolean + SubscribersOnly: boolean + IsFeatured: boolean +} + +/** The `PurchaseMethodId.Type` that carries a `Guid` rather than a `NumberId`. */ +const PURCHASE_METHOD_TYPE_GUID = 1 + +/** + * The purchase-info projection of a custom avatar item. + * + * The price is in `RecCenterTokens` because that is what a UGC item costs: the creation UI's + * floor (`api`'s `/api/customAvatarItems/v1/minPriceForPublicItem`) is a token price, and the + * `price` column it writes is the same number. It must NOT be a room currency — those are + * scoped to a room this endpoint knows nothing about, and the client holds no balance to pay + * one with, so the item would draw a price it can never meet. + * + * The rest is what the row can honestly say: + * - `AvailableAt` is the item's creation — the moment it began being sellable. There is no + * scheduled listing here, so `AvailableUntil` is null: on sale until the creator pulls it. + * - `NewUntil` is null rather than derived from `CreatedAt`: nothing has ever defined how long + * “new” lasts here, and guessing draws the pip on items that are not. + * - `StorefrontSaleData` is a zero-percent sale rather than null, since nothing discounts UGC + * items yet and a present-but-empty sale is the shape the client always gets to read. + * - `SubscribersOnly`/`CanApplySubscriberDiscount` are false: subscriber pricing is a + * storefront-catalog feature (`sf{N}.json`'s `SubscriberPrices`) and no UGC item has one. + * - `IsFeatured` is the row's own flag, the same one the featured feed reads. + * + * `CanBeGifted` is true because the reference let players gift UGC items — but nothing here + * buys a custom avatar item yet, gift or otherwise, so the button it draws leads nowhere until + * that exists. It is the flag to flip if a dead gift button is worse than a missing one. + */ +function toItemPurchaseInfo(item: CustomAvatarItem): ItemPurchaseInfo { + return { + ItemId: { itemType: UGC_ITEM_TYPE_CUSTOM_AVATAR_ITEM, itemId: item.CustomAvatarItemId }, + PurchaseMethodId: { + Type: PURCHASE_METHOD_TYPE_GUID, + NumberId: null, + Guid: item.CustomAvatarItemId, + }, + Prices: [ + { + CurrencyType: CurrencyType.RecCenterTokens, + Price: item.Price, + StorefrontSaleData: { SalePercent: 0, SaleStartDate: null, SaleEndDate: null }, + }, + ], + NewUntil: null, + AvailableAt: item.CreatedAt, + AvailableUntil: null, + CanBeGifted: true, + CanApplySubscriberDiscount: false, + SubscribersOnly: false, + IsFeatured: item.IsFeatured, + } +} + /** Build the owned avatar-item DTO granted into the buyer's inventory from a gift-drop. */ function toAvatarItem(giftDrop: StoreGiftDrop): AvatarItem { return { @@ -1283,6 +1466,62 @@ function toPurchaseMethodId(raw: Partial | null | undefined): } } +/** + * Catalog rows as STORE ITEMS, so a bag can be resolved against the `catalog` table the same + * way it is resolved against an `sf{N}.json` file. + * + * The generated storefront (sf1704) is built from these very rows with this very pricing, so an + * item bought here costs exactly what that file lists it at. That is not a nicety: `priceCheck` + * refuses a line whose posted `RequestedPrice` doesn't match, so two pricings would 409 every + * purchase the client made from the page it was shown. + * + * SKINS come through too, keyed the way a gift-drop keys equipment (`EquipmentPrefabName` + + * `EquipmentModificationGuid`) rather than as an avatar item — which is what lets a skin be + * bought at all, since no generated storefront file lists one. + * + * {@link isSellableRarity} is applied here as well as in the generator: the developer tier is + * absent from the file, and resolving a bag straight off the table would otherwise sell items + * the store never offered. + */ +async function catalogStoreItems(db: D1Database, catalogIds: number[]): Promise { + if (catalogIds.length === 0) return [] + const placeholders = catalogIds.map((_, i) => `?${i + 1}`).join(', ') + const { results } = await db + .prepare(`SELECT * FROM catalog WHERE catalog_id IN (${placeholders})`) + .bind(...catalogIds) + .all() + + return results + .filter((row) => row.catalog_id !== null && isSellableRarity(row.rarity)) + .map((row) => { + const skin = row.kind === CatalogKind.Skin + const price = priceForRarity(row.rarity) + return { + GiftDrop: { + FriendlyName: row.friendly_name, + // The client's field is a string; the catalog keeps NULL and "" apart. + Tooltip: row.tooltip ?? '', + ConsumableItemDesc: '', + // `item_key` IS the desc for an avatar item and the modification guid for a skin — + // one key column, read into whichever field its kind belongs in. + AvatarItemDesc: skin ? '' : row.item_key, + AvatarItemType: skin ? 0 : (row.avatar_item_type ?? 0), + EquipmentPrefabName: skin ? (row.prefab_name ?? '') : '', + EquipmentModificationGuid: skin ? row.item_key : '', + Rarity: row.rarity, + Context: 0, + Currency: 0, + CurrencyType: 0, + }, + Prices: [{ CurrencyType: CurrencyType.RecCenterTokens, Price: price }], + SubscriberPrices: [ + { CurrencyType: CurrencyType.RecCenterTokens, Price: subscriberPriceFor(price) }, + ], + PurchasableItemId: row.catalog_id as number, + } + }) +} + /** * Resolve one line against the bag's catalog: what it wants, how many, and at what price. * Returns the failure — with the `UpdateResponse` its entry will carry — instead when the @@ -1721,6 +1960,45 @@ const app = new Hono({ strict: false }) .onError(withOnError()) .notFound(withNotFound()) + // A batch lookup of LOCKED avatar items — the client posts the descs it is about to draw + // and expects back the ones it must grey out, as a BARE ARRAY. + // + // A TEST STUB: it answers the whole bundled catalogue regardless of what was posted, so + // every item the client can see comes back locked. Two consequences to know before reading + // anything into what the client does with it: + // + // - The posted `AvatarItemDescriptions` are NOT read, so nothing is echoed. The reference + // answers per requested desc; a client that matches responses to its request will find + // entries it never asked for and none of the ones it did. + // - It is the whole catalogue every call — 3098 items, about a megabyte — which is fine for + // a stub and is not what a real implementation should send. + // + // The real thing resolves each posted desc against what the player has NOT unlocked. The + // `catalog` table is keyed by `AvatarItemDesc` (`item_key`), so the lookup is already there + // to build on; what is missing is anything recording a lock. + // + // NOTE: the `api` worker has a route of this same path that answers `[]` — it predates this + // one and is left alone deliberately. The client asks THIS host, so that one is unreached; + // they must be reconciled before either is taken for real behaviour. + .post( + '/api/avatar/v1/lockeditems/bulk', + describeRoute({ + tags: ['Avatar'], + summary: 'Locked avatar items in bulk (test stub)', + description: [ + 'Resolves a batch of `AvatarItemDescriptions` to the items that are LOCKED for the', + 'caller, as a bare array.', + 'TEST STUB: the posted descs are ignored and the whole bundled catalogue comes back,', + 'so the client renders everything as locked. Nothing records a lock yet, and nothing', + 'is echoed — a real implementation answers one entry per posted desc, carrying that', + 'desc verbatim.', + ].join(' '), + requestBody: jsonBody(LockedItemsBulkRequest, 'The descs to resolve (currently ignored)'), + responses: { 200: json(JsonArray, 'The locked items — currently the whole catalogue') }, + }), + (c) => c.json(avatarItemCatalog) + ) + // Default-unlocked avatar items, served from the bundled static JSON. .get( '/api/avatar/v1/defaultunlocked', @@ -2423,6 +2701,53 @@ const app = new Hono({ strict: false }) } ) + // How the items in a store row may be BOUGHT — the counterpart of the bulk lookup above. + // The row itself carries only ids; the client asks this for the price tag, the sale + // banner, the “new” pip and whether the gift button is drawn. It answers one entry per + // RESOLVED id, in request order, dropping ids it doesn't know exactly as the bulk lookup + // does — an item with no purchase info renders as not-for-sale rather than at price zero. + // + // Two shapes meet in one object here and neither may be tidied into the other: the + // request's `{ itemType, itemId }` reference is camelCase, and the response nests THAT + // object, members unchanged, under a PascalCase `ItemId` beside PascalCase siblings. + .post( + '/api/items/purchaseInfos', + describeRoute({ + tags: ['Storefront'], + summary: 'Purchase info for a bag of items', + description: [ + 'Resolves `Ids[]` (`{ itemType, itemId }`) against the `custom_avatar_item` table and', + 'answers how each may be bought: its price in RecCenterTokens, its availability window', + 'and the flags the store row draws. Only `itemType` 3 (custom avatar item) is served;', + 'other types and unknown ids are dropped, so the response is one entry per RESOLVED', + 'id in request order — never a positional match for `Ids[]`.', + ].join(' '), + security: AUTHED, + requestBody: jsonBody(ItemPurchaseInfosRequest, 'The ids to price'), + responses: { + 200: json(ItemPurchaseInfoList, 'The resolved items’ purchase info (unknown ids omitted)'), + 400: json(ErrorResponse, 'Malformed body'), + 401: UNAUTHORIZED_RESPONSE, + }, + }), + async (c) => { + const id = await authedId(c) + if (id === null) return unauthorized(c) + + const body = (await c.req.json().catch(() => null)) as Record | null + if (!body || !Array.isArray(body.Ids)) return c.json({ error: 'Ids is required' }, 400) + const ids = (body.Ids as unknown[]).flatMap((ref) => { + if (!ref || typeof ref !== 'object') return [] + const { itemType, itemId } = ref as Record + return itemType === UGC_ITEM_TYPE_CUSTOM_AVATAR_ITEM && typeof itemId === 'string' + ? [itemId] + : [] + }) + const items = await getCustomAvatarItems(c.env.DB, ids) + return c.json(items.map(toItemPurchaseInfo)) + } + ) + // Unlocked consumables. [Authorize]. The consumables the player has bought (from // `buyItem`, stored in the `consumable` table), grouped by item into the client's // unlocked-consumable DTO. A player who has bought none gets an empty list. @@ -2538,13 +2863,25 @@ const app = new Hono({ strict: false }) ) // Gift-drop storefront. Serves `static/storefronts/sf{id}.json` for the requested - // storefront id via the ASSETS binding; 404s when no such catalog exists. + // storefront id via the ASSETS binding; 404s when no such catalog exists. A few ids are + // stand-ins for another storefront's catalog (see `STOREFRONT_ALIASES`) — resolved through + // the same helper `buyItem` uses, so an aliased storefront can be bought from as well as + // browsed. .get( '/api/storefronts/v3/giftdropstore/:id', describeRoute({ tags: ['Storefront'], summary: 'Gift-drop storefront catalog', - description: 'Serves the `sf{id}.json` catalog via the ASSETS binding. 404 when none exists.', + description: [ + 'Serves the `sf{id}.json` catalog via the ASSETS binding. 404 when none exists. An id', + 'with no capture of its own may stand in for another storefront’s catalog (see', + '`STOREFRONT_ALIASES`, currently empty), and such an alias applies to purchases from', + 'that storefront too, not just to this listing. Which FILE a storefront reads from can', + 'also depend on the caller’s build (`rn.ver`): storefront `3` serves the captured', + '`sf3.json` to builds up to 20230414 and the merged `sf3-2025.json` — that same store', + 'plus every sellable row of the item catalog — to later ones. The id does not change,', + 'and the same resolution applies to purchases, so what is browsed is what is charged.', + ].join(' '), parameters: [ { name: 'id', @@ -2561,7 +2898,10 @@ const app = new Hono({ strict: false }) }), async (c) => { const id = c.req.param('id') - const res = await c.env.ASSETS.fetch(new URL(`/sf${id}.json`, c.req.url)) + // The same resolution `loadStorefront` uses, so what is browsed is what a purchase is + // checked against — see `storefrontAssetPath`. + const path = storefrontAssetPath(id, await authedBuild(c)) + const res = await c.env.ASSETS.fetch(new URL(path, c.req.url)) if (!res.ok) return c.notFound() return c.json(await res.json()) } @@ -2806,9 +3146,33 @@ const app = new Hono({ strict: false }) // One catalog read for the bag; every line resolves against it in memory. const storefront = await loadStorefront(c, storefrontType as number) + + // Past LEGACY_CLIENT_BUILD the bag may also name CATALOG rows — the ids the generated + // storefront and the discovery rows hand out (10000 and up) — so those are looked up in + // the `catalog` table and appended. One extra query for the whole bag. + // + // Appended rather than replacing the file: the two id spaces do not overlap + // (`CATALOG_ID_BASE` is above every captured id), so a bag may mix them and a newer + // client buying from a captured storefront still works. An older build is not offered + // catalog ids anywhere, so it is left resolving exactly what it always did. + const build = await authedBuild(c) + const catalogItems = + build !== null && build > LEGACY_CLIENT_BUILD + ? await catalogStoreItems( + c.env.DB, + lines.flatMap((line) => { + const numberId = toPurchaseMethodId(line.ItemPurchaseMethodId).NumberId + return numberId !== null && numberId >= CATALOG_ID_BASE ? [numberId] : [] + }) + ) + : [] + const bagCatalog: Storefront | null = + catalogItems.length === 0 + ? storefront + : { StoreItems: [...(storefront?.StoreItems ?? []), ...catalogItems] } const subscriber = await isSubscriber(c) const resolved = lines.map((line) => - resolveBulkLine(line, storefront, currencyType as number, subscriber) + resolveBulkLine(line, bagCatalog, currencyType as number, subscriber) ) const buyable = resolved.filter(isBulkLine) diff --git a/apps/econ/src/openapi.ts b/apps/econ/src/openapi.ts index bed7e87..efb6992 100644 --- a/apps/econ/src/openapi.ts +++ b/apps/econ/src/openapi.ts @@ -429,6 +429,66 @@ export const UgcPurchasableItemDto = z.object({ /** What the bulk lookup answers: the resolved items, unknown ids omitted. */ export const UgcPurchasableItemList = z.array(UgcPurchasableItemDto) +/** + * `POST /api/items/purchaseInfos` JSON body — the same `{ itemType, itemId }` reference + * shape the UGC bulk lookup takes, minus the room. camelCase INSIDE the reference, which is + * the client's own inconsistency: the response wraps this very object under a PascalCase + * `ItemId` key without renaming its members. + */ +export const ItemPurchaseInfosRequest = z.object({ + Ids: z.array( + z.object({ + itemType: z.number().int().describe('3 = custom avatar item (the only type served)'), + itemId: z.string().describe('The `CustomAvatarItemId`'), + }) + ), +}) + +/** One `Prices[]` entry: what the item costs in one currency, and any sale on top. */ +export const ItemPriceDto = z.object({ + CurrencyType: z.number().int().describe('2 = RecCenterTokens — what UGC items are priced in'), + Price: z.number().int(), + StorefrontSaleData: z + .object({ + SalePercent: z.number().int(), + SaleStartDate: z.string().nullable(), + SaleEndDate: z.string().nullable(), + }) + .nullable() + .describe('Always a zero-percent sale here; nothing discounts UGC items yet'), +}) + +/** The client's `ItemPurchaseInfo` — how one item may be bought. */ +export const ItemPurchaseInfoDto = z.object({ + ItemId: z.object({ itemType: z.number().int(), itemId: z.string() }), + PurchaseMethodId: z.object({ + Type: z.number().int(), + NumberId: z.number().int().nullable(), + Guid: z.string().nullable(), + }), + Prices: z.array(ItemPriceDto), + NewUntil: z.string().nullable(), + AvailableAt: z.string().nullable(), + AvailableUntil: z.string().nullable(), + CanBeGifted: z.boolean(), + CanApplySubscriberDiscount: z.boolean(), + SubscribersOnly: z.boolean(), + IsFeatured: z.boolean(), +}) + +/** What the purchase-info lookup answers: one entry per RESOLVED id, unknown ids omitted. */ +export const ItemPurchaseInfoList = z.array(ItemPurchaseInfoDto) + +/** + * `POST /api/avatar/v1/lockeditems/bulk` JSON body — the descs the client wants the locked + * state for. Currently accepted and not read; see the route. + */ +export const LockedItemsBulkRequest = z.object({ + AvatarItemDescriptions: z + .array(z.string()) + .describe('The `AvatarItemDesc` of each item the client is about to draw'), +}) + export const ErrorResponse = z.object({ error: z.string() }) // ---- Request schemas ------------------------------------------------------- diff --git a/apps/econ/src/test/integration/api.test.ts b/apps/econ/src/test/integration/api.test.ts index 9df0dbb..ba1b477 100644 --- a/apps/econ/src/test/integration/api.test.ts +++ b/apps/econ/src/test/integration/api.test.ts @@ -23,6 +23,17 @@ import { SCHEMA_DDL as INVENTION_SCHEMA_DDL } from '../../../../api/src/inventio // The notification-type ids the hub carries, from the worker that owns them — asserting // against the enum rather than a copied number is what keeps these frames honest. import { NotificationType } from '../../../../notify/src/notification-types' +// The catalog's two migrations and the captures the loader reads, imported so the tests at the +// bottom can check the schema they build against `CATALOG_SCHEMA_DDL`. `?raw` because they are +// SQL, not modules: they are never executed here, only read. +import catalogStructureSql from '../../../migrations/0015_catalog.sql?raw' +import catalogIdSql from '../../../migrations/0016_catalog_id.sql?raw' +import avatarItemsJson from '../../../static/db/avatar-items.json' +import skinsJson from '../../../static/db/skins.json' +import sf32025 from '../../../static/storefronts/sf3-2025.json' +// The merged 2025 general store, read as a FILE: which file the route serves depends on the +// caller's build, and these assertions are about the file's CONTENTS. +import sf3 from '../../../static/storefronts/sf3.json' import { SCHEMA_DDL } from '../../avatar-db' import { BALANCE_SCHEMA_DDL, @@ -31,6 +42,24 @@ import { getBalance, spendCurrency, } from '../../balance-db' +import { + baseAsset, + buildCatalogLoad, + CATALOG_INSERT_COLUMNS, + CATALOG_SCHEMA_DDL, + CatalogKind, + countCatalog, + getAvatarItem, + getAvatarItemsByTag, + getCatalogItem, + getCatalogItemById, + getCatalogItems, + getSkin, + getSkinsForPrefab, + searchCatalog, + toCatalogSkin, +} from '../../catalog-db' +import { CATALOG_ID_BASE } from '../../catalog-load' import { CHALLENGE_GIFT_SCHEMA_DDL, CHALLENGE_STATUS_SCHEMA_DDL } from '../../challenge-db' // The live weekly rotation, generated the same way the worker generates it, so the challenge // tests exercise whatever this week actually holds instead of ids from a rotation that has @@ -41,8 +70,20 @@ import { EQUIPMENT_SCHEMA_DDL, grantEquipment } from '../../equipment-db' import { INVENTORY_SCHEMA_DDL } from '../../inventory-db' import { REWARD_STATUS_SCHEMA_DDL } from '../../reward-db' +import type { CatalogLoadRow, CatalogRow, CatalogValue } from '../../catalog-db' import type { Env } from '../../context' +/** + * The half of the merged store that came from the item CATALOG — nothing in the file marks + * which half a row is from, so it is whatever sf3 does not already contain. + * + * NOT `id >= CATALOG_ID_BASE`, which looks equivalent and is not: sf3 carries one id far above + * that range (20756767), so an id test counts it as a catalog row and every count comes out one + * too high. Membership in sf3's own ids is the question actually being asked. + */ +const sf3Ids = new Set(sf3.StoreItems.map((i) => i.PurchasableItemId)) +const catalogItems = () => sf32025.StoreItems.filter((i) => !sf3Ids.has(i.PurchasableItemId)) + declare module 'cloudflare:test' { interface ProvidedEnv extends Env {} } @@ -74,6 +115,7 @@ beforeAll(async () => { for (const stmt of INVENTORY_INVENTION_SCHEMA_DDL) await env.DB.prepare(stmt).run() for (const stmt of INVENTION_SCHEMA_DDL) await env.DB.prepare(stmt).run() for (const stmt of CUSTOM_AVATAR_ITEM_SCHEMA_DDL) await env.DB.prepare(stmt).run() + for (const stmt of CATALOG_SCHEMA_DDL) await env.DB.prepare(stmt).run() await env.DB.prepare('INSERT OR IGNORE INTO account (data) VALUES (?1)') .bind(JSON.stringify({ accountId: 42, username: 'Tester', displayName: 'Tester' })) .run() @@ -176,10 +218,16 @@ function b64url(input: ArrayBuffer | string): string { * account's flags — pass `['gameClient', 'developer']` for an elevated account; the default * is no claim at all, which reads as no roles. */ -async function bearer(sub = '42', roles?: string[]): Promise> { +async function bearer( + sub = '42', + roles?: string[], + /** The client build to stamp as `rn.ver` — omitted, like a token minted before the claim. */ + version?: string +): Promise> { const now = Math.floor(Date.now() / 1000) - const claims = - roles === undefined ? { sub, exp: now + 3600 } : { sub, exp: now + 3600, role: roles } + const claims: Record = { sub, exp: now + 3600 } + if (roles !== undefined) claims.role = roles + if (version !== undefined) claims['rn.ver'] = version const signingInput = `${b64url(JSON.stringify({ alg: 'HS256', typ: 'JWT' }))}.${b64url( JSON.stringify(claims) )}` @@ -737,6 +785,234 @@ describe('econ endpoints', () => { expect(anon.status).toBe(401) }) + test('bulkpurchase resolves catalog ids for newer builds, at the storefront’s price', async () => { + // A catalog row the generated storefront would list at 600 (rarity 10) and a skin the + // storefront lists nowhere at all — both bought straight off the `catalog` table. + const AVATAR_ID = 20_001 + const SKIN_ID = 20_002 + const DEV_ID = 20_003 + await env.DB.prepare( + `INSERT INTO catalog (item_key, catalog_id, kind, friendly_name, tooltip, rarity, platform_mask, avatar_item_type) + VALUES ('bulk-buy-desc,,,', ?1, 'avatar_item', 'Bulk Buy Hat', '', 10, -1, 0)` + ) + .bind(AVATAR_ID) + .run() + await env.DB.prepare( + `INSERT INTO catalog (item_key, catalog_id, kind, friendly_name, tooltip, rarity, platform_mask, prefab_name) + VALUES ('bulk-buy-guid', ?1, 'skin', 'Bulk Buy Skin', '', 0, -1, '[MakerPen]')` + ) + .bind(SKIN_ID) + .run() + // Rarity -1 is the developer tier: in the catalog, absent from the storefront, and so not + // for sale here either — resolving straight off the table must not sell what the store + // never offered. + await env.DB.prepare( + `INSERT INTO catalog (item_key, catalog_id, kind, friendly_name, tooltip, rarity, platform_mask, avatar_item_type) + VALUES ('bulk-buy-dev,,,', ?1, 'avatar_item', 'Bulk Buy Dev Item', '', -1, -1, 0)` + ) + .bind(DEV_ID) + .run() + + const buy = async ( + version: string | undefined, + lines: Array<{ id: number; price: number }>, + sub = '46' + ) => + exports.default.fetch(`${ORIGIN}/api/items/bulkpurchase`, { + method: 'POST', + headers: { + ...((await bearer(sub, undefined, version)) as Record), + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ + StorefrontType: 3, + CurrencyType: 2, + AllowPartialSuccess: false, + PurchaseItemRequests: lines.map((l) => ({ + ItemPurchaseMethodId: { Type: 0, NumberId: l.id, Guid: null }, + RequestedPrice: l.price, + })), + }), + }) + + // 150 (rarity 0) and 600 (rarity 10) are the generated storefront's own prices. They MUST + // match: `priceCheck` refuses a line whose posted price differs, so a server pricing a buy + // differently from the file it listed would 409 every purchase. + const res = await buy('20250718.01', [ + { id: AVATAR_ID, price: 600 }, + { id: SKIN_ID, price: 150 }, + ]) + expect(res.status).toBe(200) + const body = (await res.json()) as { Success: boolean; Value: { Balance: number } | null } + expect(body.Success).toBe(true) + + // A price the storefront does not list is refused, not quietly charged. + const wrongPrice = await buy('20250718.01', [{ id: AVATAR_ID, price: 1 }]) + expect(((await wrongPrice.json()) as { Success: boolean }).Success).toBe(false) + + // The developer-tier row is not for sale. + const dev = await buy('20250718.01', [{ id: DEV_ID, price: 150 }]) + expect(((await dev.json()) as { Success: boolean }).Success).toBe(false) + + // An OLD build is left resolving exactly what it always did — the storefront file — so a + // catalog id means nothing to it. Nothing offers those ids to that build anyway. + const legacy = await buy('20230414', [{ id: AVATAR_ID, price: 600 }]) + expect(((await legacy.json()) as { Success: boolean }).Success).toBe(false) + const unversioned = await buy(undefined, [{ id: AVATAR_ID, price: 600 }]) + expect(((await unversioned.json()) as { Success: boolean }).Success).toBe(false) + + // The two id spaces do not overlap, so a bag may MIX a captured storefront's item with a + // catalog row. Item 73 is sf3's "Bowtie (White)" at 450. + const mixed = await buy('20250718.01', [ + { id: 73, price: 450 }, + { id: SKIN_ID, price: 150 }, + ]) + expect(((await mixed.json()) as { Success: boolean }).Success).toBe(true) + + // Cleaned up: the `catalog` block below counts every row in the table, so rows left behind + // here would change what it sees. + await env.DB.prepare('DELETE FROM catalog WHERE catalog_id BETWEEN ?1 AND ?2') + .bind(AVATAR_ID, DEV_ID) + .run() + }) + + test('POST /api/avatar/v1/lockeditems/bulk returns the catalogue as a bare array', async () => { + const res = await exports.default.fetch(`${ORIGIN}/api/avatar/v1/lockeditems/bulk`, { + method: 'POST', + headers: { ...(await bearer()), 'content-type': 'application/json' }, + body: JSON.stringify({ + AvatarItemDescriptions: [ + 'c70005d5-6276-4a98-acb3-6a77bc19379a,OBcu3bf1NEio_7t9smqGag', + '4eaaad39-aa44-4791-8b67-2eafa8305850', + ], + }), + }) + expect(res.status).toBe(200) + + // A BARE ARRAY, no envelope. + const body = (await res.json()) as Array<{ + AvatarItemType: number + AvatarItemDesc: string + FriendlyName: string + Rarity: number + }> + expect(Array.isArray(body)).toBe(true) + + // TEST STUB: the whole bundled catalogue, whatever was posted. Pinned so the day this + // grows real lock logic, the change is visible here rather than silently altering what a + // client is told is locked. + expect(body).toHaveLength(avatarItemsJson.length) + expect(body[0]).toMatchObject({ + AvatarItemDesc: avatarItemsJson[0]!.AvatarItemDesc, + FriendlyName: avatarItemsJson[0]!.FriendlyName, + }) + + // Every entry carries the shape the client reads, including the four fields the + // `defaultunlocked` catalogue leaves out. + for (const key of [ + 'AvatarItemType', + 'AvatarItemDesc', + 'FriendlyName', + 'Tooltip', + 'Rarity', + 'AvatarItemId', + 'IsBaseAvatarItem', + 'ThumbnailImage', + 'CreatedAt', + ]) { + expect(Object.keys(body[0] as object), key).toContain(key) + } + + // Nothing is echoed: the posted descs are not read, so what comes back is unrelated to + // what was asked for. A real implementation answers one entry per posted desc. + expect(body.map((i) => i.AvatarItemDesc)).not.toEqual([ + 'c70005d5-6276-4a98-acb3-6a77bc19379a,OBcu3bf1NEio_7t9smqGag', + '4eaaad39-aa44-4791-8b67-2eafa8305850', + ]) + + // No auth needed, and a body it cannot read is not an error — the answer does not depend + // on either. + const anon = await exports.default.fetch(`${ORIGIN}/api/avatar/v1/lockeditems/bulk`, { + method: 'POST', + headers: { 'content-type': 'application/json' }, + body: JSON.stringify({}), + }) + expect(anon.status).toBe(200) + expect(((await anon.json()) as unknown[]).length).toBe(avatarItemsJson.length) + }) + + test('POST /api/items/purchaseInfos prices custom avatar items in tokens', async () => { + const item = await createCustomAvatarItem(env.DB, { + customAvatarItemId: crypto.randomUUID(), + creatorAccountId: 206, + name: 'Chrome Jacket', + description: '', + price: 425, + baseAvatarItemId: 1, + baseAvatarItemColor: '#000', + designFilename: 'design_pi.bin', + thumbnailImageFilename: 'thumb_pi.png', + accessibility: 1, + }) + const res = await exports.default.fetch(`${ORIGIN}/api/items/purchaseInfos`, { + method: 'POST', + headers: { ...(await bearer()), 'content-type': 'application/json' }, + body: JSON.stringify({ + Ids: [ + { itemType: 3, itemId: item.CustomAvatarItemId }, + // Dropped, both of them: an id nothing owns, and a type this doesn't serve. The + // response is one entry per RESOLVED id, so it is SHORTER than `Ids` rather than + // carrying a null in their places — the client must not read it positionally. + { itemType: 3, itemId: crypto.randomUUID() }, + { itemType: 1, itemId: item.CustomAvatarItemId }, + ], + }), + }) + expect(res.status).toBe(200) + expect(await res.json()).toEqual([ + { + // The reference echoed back verbatim: camelCase members under a PascalCase key. The + // client names them that way on both legs and PascalCasing them here loses the id. + ItemId: { itemType: 3, itemId: item.CustomAvatarItemId }, + // A UGC listing is keyed by guid, so `Type` 1 and `NumberId` null. A storefront's + // numbered `PurchasableItemId` would be the other side of the union. + PurchaseMethodId: { Type: 1, NumberId: null, Guid: item.CustomAvatarItemId }, + // RecCenterTokens (2) — the currency the creation UI's price floor is denominated + // in, and the one the client actually holds a balance in. A room currency (300) + // would draw a price nothing can pay. + Prices: [ + { + CurrencyType: 2, + Price: 425, + StorefrontSaleData: { SalePercent: 0, SaleStartDate: null, SaleEndDate: null }, + }, + ], + NewUntil: null, + AvailableAt: item.CreatedAt, + AvailableUntil: null, + CanBeGifted: true, + CanApplySubscriberDiscount: false, + SubscribersOnly: false, + IsFeatured: false, + }, + ]) + }) + + test('POST /api/items/purchaseInfos 400s without Ids and 401s without a token', async () => { + const bad = await exports.default.fetch(`${ORIGIN}/api/items/purchaseInfos`, { + method: 'POST', + headers: { ...(await bearer()), 'content-type': 'application/json' }, + body: JSON.stringify({}), + }) + expect(bad.status).toBe(400) + const anon = await exports.default.fetch(`${ORIGIN}/api/items/purchaseInfos`, { + method: 'POST', + headers: { 'content-type': 'application/json' }, + body: JSON.stringify({ Ids: [] }), + }) + expect(anon.status).toBe(401) + }) + test('GET /econ/roomEconConfig/:roomId echoes the room and disables sorting tabs', async () => { const anon = await exports.default.fetch(`${ORIGIN}/econ/roomEconConfig/92`) expect(anon.status).toBe(401) @@ -919,6 +1195,162 @@ describe('econ endpoints', () => { expect(await res.json()).toBeTruthy() }) + // TEMPORARY, alongside the probe in `econ.app.ts`: the storefront ids are swapped so it can + // be seen from the client which one the 2025 store actually reads. Delete this with the + // probe. + test('storefront 3 serves sf3 to old builds and the merged sf3-2025 to newer ones', async () => { + const store = async (headers: Record) => { + const res = await exports.default.fetch(`${ORIGIN}/api/storefronts/v3/giftdropstore/3`, { + headers, + }) + expect(res.status).toBe(200) + return (await res.json()) as { StorefrontType: number; StoreItems: unknown[] } + } + const at = async (version: string) => + (await bearer('42', undefined, version)) as Record + + // 20230414 is GAME_VERSION — what the rest of the stack targets — so the cutoff is + // INCLUSIVE and that build keeps the captured sf3 exactly as it has always had it. + const legacy = await store(await at('20230414')) + expect(legacy.StoreItems).toHaveLength(sf3.StoreItems.length) + // A same-day rebuild sorts by its DATE, not the `.NN` suffix. + expect((await store(await at('20230414.02'))).StoreItems).toHaveLength(sf3.StoreItems.length) + + // A caller with no readable build gets the captured file too: an unversioned token is the + // OLD client, so treating "can't prove its version" as "newer" would swap the store out + // from under the build that needs it. + expect((await store({})).StoreItems).toHaveLength(sf3.StoreItems.length) + expect((await store(await bearer())).StoreItems).toHaveLength(sf3.StoreItems.length) + expect((await store(await at('not-a-build'))).StoreItems).toHaveLength(sf3.StoreItems.length) + + // Later builds get the merged store — bigger than either half, and still storefront 3. + for (const version of ['20230616', '20250424.01', '20250718.01']) { + const merged = await store(await at(version)) + expect(merged.StorefrontType, version).toBe(3) + expect(merged.StoreItems.length, version).toBe(sf32025.StoreItems.length) + expect(merged.StoreItems.length, version).toBeGreaterThan(sf3.StoreItems.length) + } + + // The id does not change and nothing is renumbered: sf3's own items are in the merged file + // unchanged, so a newer client buying one is charged the same as an older client would be. + const bowtie = await exports.default.fetch(`${ORIGIN}/api/storefronts/v2/buyItem`, { + method: 'POST', + headers: { ...(await at('20250718.01')), 'Content-Type': 'application/json' }, + body: JSON.stringify({ + StorefrontType: 3, + PurchasableItemId: 73, // sf3's "Bowtie (White)", 450 tokens + CurrencyType: 2, + RequestedPrice: 450, + }), + }) + expect(bowtie.status).toBe(200) + + // And a CATALOG item can be bought from storefront 3 by a newer build — the half a + // listing-only swap breaks. `findStoreItem` resolves the purchase through the same + // build-aware path the listing does, so an item on the page is an item that can be bought. + // From the catalog half — see `catalogItems`, which is why this is not an id comparison. + const catalogItem = catalogItems()[0] + expect(catalogItem).toBeDefined() + const bought = await exports.default.fetch(`${ORIGIN}/api/storefronts/v2/buyItem`, { + method: 'POST', + headers: { ...(await at('20250718.01')), 'Content-Type': 'application/json' }, + body: JSON.stringify({ + StorefrontType: 3, + PurchasableItemId: catalogItem!.PurchasableItemId, + CurrencyType: 2, + RequestedPrice: catalogItem!.Prices[0]!.Price, + }), + }) + expect(bought.status).toBe(200) + + // The SAME item is not for sale to an old build, because its store does not list it. + const refused = await exports.default.fetch(`${ORIGIN}/api/storefronts/v2/buyItem`, { + method: 'POST', + headers: { ...(await at('20230414')), 'Content-Type': 'application/json' }, + body: JSON.stringify({ + StorefrontType: 3, + PurchasableItemId: catalogItem!.PurchasableItemId, + CurrencyType: 2, + RequestedPrice: catalogItem!.Prices[0]!.Price, + }), + }) + expect(refused.status).toBe(404) + }) + + test('sf3-2025 merges sf3 with the catalog, priced by rarity', async () => { + // The general store as the 2025 client sees it. Asserted against the FILE rather than the + // endpoint, because which file the route serves depends on the caller's build and this is + // about the file's contents. + // + // It reports storefront 3, not an id of its own: the client asks for 3 either way and + // neither half knows there are two files. + expect(sf32025.StorefrontType).toBe(3) + + // sf3's own items are carried through UNCHANGED — the merge adds to the store the older + // client knows rather than restating it. + const base = new Map(sf3.StoreItems.map((i) => [i.PurchasableItemId, i])) + expect(sf32025.StoreItems.length).toBe(sf3.StoreItems.length + catalogItems().length) + for (const [id, item] of base) { + expect( + sf32025.StoreItems.find((i) => i.PurchasableItemId === id), + String(id) + ).toEqual(item) + } + + // The subscriber discount is expressed ONLY in `SubscriberPrices`. The top-level + // `SubscriberDiscountPercent` stays 0 so a client cannot take the 10% a second time off an + // already-discounted price and post 19% off, which falls through the server's own + // subscriber floor and is refused as "Price has changed". + expect(sf32025.SubscriberDiscountPercent).toBe(0) + + const priceByRarity = new Map([ + [0, 150], + [10, 600], + [20, 700], + [30, 800], + [50, 3000], + ]) + // Rarity -1 is the developer/unreleased tier and is EXCLUDED rather than priced. An item + // listed here can be bought — `findStoreItem` resolves a purchase against this very file — + // so leaving them in at any price would put them on sale. + expect(catalogItems().filter((i) => i.GiftDrop.Rarity === -1)).toEqual([]) + + for (const item of catalogItems()) { + const expected = priceByRarity.get(item.GiftDrop.Rarity) + expect(expected, `rarity ${item.GiftDrop.Rarity}`).toBeDefined() + expect(item.Prices[0]).toMatchObject({ CurrencyType: 2, Price: expected }) + // Floored, matching the server's own `subscriberFloor`. Every tier here divides evenly. + expect(item.SubscriberPrices[0]).toMatchObject({ + CurrencyType: 2, + Price: Math.floor((expected! * 90) / 100), + }) + } + + // Every item is an avatar item with a real desc, and its id is in the GENERATED range, + // echoed in `GiftDropId` the way sf3 does on all 1161 of its own items. Ids must be unique + // or a purchase resolves the wrong row. + const ids = catalogItems().map((i) => i.PurchasableItemId) + expect(new Set(ids).size).toBe(ids.length) + + // The id IS the `catalog_id` — one number, no second numbering and no arithmetic between + // them. Catalog ids start at 10000 precisely so this is safe: every captured storefront's + // own ids are 2764 or below, and numbering from 1 would have collided with sf3's head-on, + // making one id mean two different items depending on which storefront it came from. + expect(Math.min(...ids)).toBe(CATALOG_ID_BASE) + expect(ids.every((id) => id >= CATALOG_ID_BASE)).toBe(true) + expect(catalogItems().every((i) => i.GiftDrop.GiftDropId === i.PurchasableItemId)).toBe(true) + expect(catalogItems().every((i) => i.GiftDrop.AvatarItemDesc.length > 0)).toBe(true) + + // An id with neither a capture nor an alias still 404s. + const missing = await exports.default.fetch(`${ORIGIN}/api/storefronts/v3/giftdropstore/1705`) + expect(missing.status).toBe(404) + + // 1704 is gone: it was a stand-in for a store that turned out to belong inside sf3, so + // nothing answers that id any more. + const gone = await exports.default.fetch(`${ORIGIN}/api/storefronts/v3/giftdropstore/1704`) + expect(gone.status).toBe(404) + }) + // Item 73 in sf3.json — "Bowtie (White)", 450 RecCenterTokens (CurrencyType 2). test('POST /api/storefronts/v2/buyItem 401s without a token', async () => { const res = await exports.default.fetch(`${ORIGIN}/api/storefronts/v2/buyItem`, { @@ -3238,6 +3670,7 @@ describe('econ endpoints', () => { 'GET /econ/roomOffer/room/{roomId}', 'GET /econ/roomOffer/room/{roomId}/purchaseCounts', 'POST /api/CampusCard/v1/UpdateAndGetSubscription', + 'POST /api/avatar/v1/lockeditems/bulk', 'POST /api/avatar/v2/gifts/consume', 'POST /api/avatar/v2/set', 'POST /api/avatar/v3/saved/set', @@ -3249,6 +3682,7 @@ describe('econ endpoints', () => { 'POST /api/equipment/v1/update', 'POST /api/gamerewards/v1/request', 'POST /api/items/bulkpurchase', + 'POST /api/items/purchaseInfos', 'POST /api/objectives/v1/cleargroup', 'POST /api/objectives/v1/updateobjective', 'POST /api/storefronts/v2/buyItem', @@ -3263,3 +3697,520 @@ describe('econ endpoints', () => { } }) }) + +// The item catalog. Loaded by migration, not written at runtime, so these exercise the SHAPE of +// the table and its query helpers against a handful of hand-seeded rows; the drift test at the +// end is what pins the thousands of real ones. +describe('catalog', () => { + // One row of each kind, plus the cases that decided the schema: an avatar_item_id shared by + // two rows and absent from a third, and keys that are alpha strings rather than GUIDs. + beforeAll(async () => { + const insert = (row: unknown[]) => + env.DB.prepare( + `INSERT INTO catalog ( + item_key, catalog_id, kind, friendly_name, tooltip, rarity, platform_mask, + thumbnail_image, avatar_item_type, avatar_item_id, is_base_avatar_item, tag_list, + created_at, prefab_name, unlocked_level + ) VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10, ?11, ?12, ?13, ?14, ?15)` + ) + .bind(...row) + .run() + + // `catalog_id` is handed out by the loader as 1..N over the captures. These seeds number + // themselves the same way but from a base far above N, so a test that inserts a REAL + // capture row (which carries its own low id) cannot collide with a seed — the constraint + // under test should only ever fire on something the test meant to collide. + let nextId = 900_001 + + /** An avatar item: `item_key` is its `AvatarItemDesc`, the skin columns stay null. */ + const avatarItem = ( + desc: string, + name: string, + tooltip: string | null, + rarity: number, + type: number, + id: number | null, + tag: string | null, + createdAt: string | null, + thumb: string | null + ) => + insert([ + desc, + nextId++, + 'avatar_item', + name, + tooltip, + rarity, + -1, + thumb, + type, + id, + 0, + tag, + createdAt, + null, + null, + ]) + + /** A skin: `item_key` is its `ModificationGuid`, the avatar columns stay null. */ + const skin = (guid: string, name: string, tooltip: string | null, prefab: string) => + insert([ + guid, + nextId++, + 'skin', + name, + tooltip, + 0, + -1, + '', + null, + null, + null, + null, + null, + prefab, + 0, + ]) + + await avatarItem( + '_OWVy3z6iU-M3-zbQgSLig,,,', + 'Vampire Hunter Gloves (Blue)', + // NULL, not '' — the two are different values in the capture and the client's DTO serves + // the difference through. + null, + 10, + 0, + 835, + null, + '2018-11-01T17:51:50.733Z', + 'cimomkml6k4toyowd1voh7hqm.png' + ) + await avatarItem( + '002a0f2f-1a24-4439-b578-470818ef8325,,,', + 'Turkey Sweater', + '', + 50, + 0, + 1570, + 'thanksgiving', + '2020-10-28T00:37:27.263Z', + '4g2r02n1g5w09re7hl1ba2yyi.png' + ) + // These two share avatar_item_id 9503 — the reason that column keys nothing. + await avatarItem( + 'c5010738-41fa-4eca-aeac-e24adaa29789,', + 'Helmet Hair', + '', + -1, + 0, + 9503, + null, + null, + null + ) + await avatarItem( + '60067e91-18b8-43ab-ae20-a8ea74c757bf,KUAMuM41hk-YLZoqTiKncA', + 'Green Cheer Sash', + '', + -1, + 0, + 9503, + null, + null, + null + ) + // A hair dye: AvatarItemType 1, NO avatar_item_id at all, and a desc that is a bare alpha + // string with no commas. Still perfectly keyed. + await avatarItem( + 'pQNfh-3DsEGWfiIls6Qf6g', + 'Permanent Hair Dye (Pirate Gold)', + '', + 0, + 1, + null, + null, + null, + null + ) + + await skin('19ef59c7-f74b-4c63-935a-1d4b1abd8518', 'Disc (Coop)', '', '[DiscGolfDisc]') + // An alpha-string key, from before the game moved to GUIDs. + await skin('bfrFOdnHzEaIwHqem2dXkg', 'Confetti Gun (Gold)', null, '[PaintballGun] Confetti') + }) + + test('an avatar item reads back by its desc, nullable fields intact', async () => { + const item = await getAvatarItem(env.DB, '_OWVy3z6iU-M3-zbQgSLig,,,') + expect(item).toEqual({ + AvatarItemDesc: '_OWVy3z6iU-M3-zbQgSLig,,,', + AvatarItemType: 0, + PlatformMask: -1, + FriendlyName: 'Vampire Hunter Gloves (Blue)', + // The one the column may never be defaulted to '' for. + Tooltip: null, + Rarity: 10, + TagList: null, + AvatarItemId: 835, + IsBaseAvatarItem: false, + CreatedAt: '2018-11-01T17:51:50.733Z', + ThumbnailImage: 'cimomkml6k4toyowd1voh7hqm.png', + }) + expect(await getAvatarItem(env.DB, 'nothing-has-this-desc')).toBeNull() + }) + + test('a skin reads back by its guid, and an alpha-string key is just as good', async () => { + expect(await getSkin(env.DB, '19ef59c7-f74b-4c63-935a-1d4b1abd8518')).toEqual({ + PrefabName: '[DiscGolfDisc]', + ModificationGuid: '19ef59c7-f74b-4c63-935a-1d4b1abd8518', + UnlockedLevel: 0, + // The catalog does not store this: it is a PLAYER's flag, and the capture recorded one + // account's. It is overwritten from the player's own `equipment` row. + Favorited: false, + PlatformMask: -1, + FriendlyName: 'Disc (Coop)', + Tooltip: '', + Rarity: 0, + ThumbnailImage: '', + }) + + // 191 of the skins are keyed by the short alpha-string ids the game used before GUIDs. The + // column is TEXT and compared as text, so these need no special handling — which is exactly + // why nothing here parses or validates a key's shape. + const gold = await getSkin(env.DB, 'bfrFOdnHzEaIwHqem2dXkg') + expect(gold?.FriendlyName).toBe('Confetti Gun (Gold)') + // Skins carry NULL tooltips too, so the projection must not flatten them to ''. + expect(gold?.Tooltip).toBeNull() + + expect((await getSkinsForPrefab(env.DB, '[DiscGolfDisc]')).map((s) => s.FriendlyName)).toEqual([ + 'Disc (Coop)', + ]) + expect(await getSkin(env.DB, 'no-such-guid')).toBeNull() + }) + + test('one key spans both kinds, and asking for the wrong kind gets null, not a mangled row', async () => { + // The lookup the inventory wants: a player's owned things are ids of exactly this shape and + // the row says which kind each turned out to be. No join, no guessing. + const owned = await getCatalogItems(env.DB, [ + '19ef59c7-f74b-4c63-935a-1d4b1abd8518', + '_OWVy3z6iU-M3-zbQgSLig,,,', + // Unknown keys are SKIPPED rather than left as holes, so the result is shorter than the + // input and must never be read positionally. + 'nothing-owns-this', + ]) + expect(owned.map((r) => [r.kind, r.friendly_name])).toEqual([ + ['skin', 'Disc (Coop)'], + ['avatar_item', 'Vampire Hunter Gloves (Blue)'], + ]) + expect(await getCatalogItems(env.DB, [])).toEqual([]) + + // A key is unique across BOTH kinds, so a typed accessor handed the other kind's key answers + // null rather than projecting a skin into an avatar item's shape. + expect(await getAvatarItem(env.DB, '19ef59c7-f74b-4c63-935a-1d4b1abd8518')).toBeNull() + expect(await getSkin(env.DB, '_OWVy3z6iU-M3-zbQgSLig,,,')).toBeNull() + expect(() => toCatalogSkin({ ...(owned[1] as CatalogRow) })).toThrow(/not a skin/) + }) + + test('avatar_item_id is carried as data and keys nothing', async () => { + // Two seeded rows share 9503 (five real ones do), and the hair dye has no id at all. Keying + // the table on it would have silently dropped four of those five at load time, which is why + // it is stored, not indexed, and never looked up by. + const shared = await searchCatalog(env.DB, CatalogKind.AvatarItem, 'a') + expect(shared.filter((r) => r.avatar_item_id === 9503)).toHaveLength(2) + const dye = await getAvatarItem(env.DB, 'pQNfh-3DsEGWfiIls6Qf6g') + expect(dye?.AvatarItemId).toBeNull() + expect(dye?.AvatarItemType).toBe(1) + }) + + test('search is case-insensitive, scoped to one kind, and takes wildcards literally', async () => { + const hits = await searchCatalog(env.DB, CatalogKind.AvatarItem, 'HAIR') + expect(hits.map((r) => r.friendly_name)).toEqual([ + 'Helmet Hair', + 'Permanent Hair Dye (Pirate Gold)', + ]) + + // `kind` scopes it: the same needle against skins finds nothing, so a skin search can never + // surface a wearable. + expect(await searchCatalog(env.DB, CatalogKind.Skin, 'hair')).toEqual([]) + expect( + (await searchCatalog(env.DB, CatalogKind.Skin, 'disc')).map((r) => r.prefab_name) + ).toEqual(['[DiscGolfDisc]']) + + // A needle of LIKE metacharacters matches them literally rather than everything — the escape + // is what stops a player typing `%` from pulling the whole catalog back. + expect(await searchCatalog(env.DB, CatalogKind.AvatarItem, '%')).toEqual([]) + expect(await searchCatalog(env.DB, CatalogKind.AvatarItem, '_')).toEqual([]) + // A hit that really does contain the character still matches, so escaping didn't break it. + expect((await searchCatalog(env.DB, CatalogKind.AvatarItem, 'cheer')).length).toBe(1) + }) + + test('seasonal rows come back by tag, and counts are per kind', async () => { + expect((await getAvatarItemsByTag(env.DB, 'thanksgiving')).map((i) => i.FriendlyName)).toEqual([ + 'Turkey Sweater', + ]) + expect(await getAvatarItemsByTag(env.DB, 'halloween')).toEqual([]) + expect(await countCatalog(env.DB)).toEqual({ avatar_item: 5, skin: 2 }) + }) + + test('the key is unique across both kinds, so a collision is refused', async () => { + // A second avatar item with the same desc... + await expect( + env.DB.prepare( + `INSERT INTO catalog (item_key, kind, friendly_name, rarity, platform_mask) + VALUES ('_OWVy3z6iU-M3-zbQgSLig,,,', 'avatar_item', 'Impostor', 0, -1)` + ).run() + ).rejects.toThrow() + + // ...a second skin with the same guid... + await expect( + env.DB.prepare( + `INSERT INTO catalog (item_key, kind, friendly_name, rarity, platform_mask, prefab_name) + VALUES ('bfrFOdnHzEaIwHqem2dXkg', 'skin', 'Impostor', 0, -1, '[PaintballGun]')` + ).run() + ).rejects.toThrow() + + // ...and a skin claiming an avatar item's key. The kinds share ONE key space, which is what + // lets an owned id be resolved without first knowing what kind of thing it is. + await expect( + env.DB.prepare( + `INSERT INTO catalog (item_key, kind, friendly_name, rarity, platform_mask, prefab_name) + VALUES ('_OWVy3z6iU-M3-zbQgSLig,,,', 'skin', 'Impostor', 0, -1, '[MakerPen]')` + ).run() + ).rejects.toThrow() + + expect(await countCatalog(env.DB)).toEqual({ avatar_item: 5, skin: 2 }) + }) + + test('baseAsset takes the first field of an AvatarItemDesc', async () => { + // `,,,` — the base asset is what decides whether the client can + // draw an item at all, so it is read off the key rather than stored twice. + expect(baseAsset('_OWVy3z6iU-M3-zbQgSLig,,,')).toBe('_OWVy3z6iU-M3-zbQgSLig') + expect(baseAsset('60067e91-18b8-43ab-ae20-a8ea74c757bf,KUAMuM41hk-YLZoqTiKncA')).toBe( + '60067e91-18b8-43ab-ae20-a8ea74c757bf' + ) + // A dye's desc is a bare alpha string with no commas at all; it is still the base asset. + expect(baseAsset('pQNfh-3DsEGWfiIls6Qf6g')).toBe('pQNfh-3DsEGWfiIls6Qf6g') + }) + + // The migration builds the TABLE; `runx catalog load` fills it. These two are the seam + // between them: the schema the tests build must be the schema the migration builds, and the + // loader must produce rows that schema accepts. + test('the migrations and CATALOG_SCHEMA_DDL build the same table', async () => { + // Both migrations together: 0015 builds the table, 0016 adds `catalog_id`. They are + // separate because 0015 was already applied, and an edit there would never re-run — which + // is exactly the drift this test exists to catch. `CATALOG_SCHEMA_DDL` declares the end + // state in one CREATE, so it is compared against the pair. + const migrations = `${catalogStructureSql}\n${catalogIdSql}` + + // Compared on identifiers rather than text, since the two are formatted differently, and + // `catalog_id` arrives via ALTER rather than inside the CREATE. + for (const column of CATALOG_INSERT_COLUMNS) { + expect(migrations, column).toContain(column) + expect(CATALOG_SCHEMA_DDL[0], column).toContain(`\t\t${column} `) + } + expect(catalogStructureSql).toContain('item_key TEXT PRIMARY KEY') + expect(CATALOG_SCHEMA_DDL[0]).toContain('item_key TEXT PRIMARY KEY') + expect(catalogIdSql).toContain('ALTER TABLE catalog ADD COLUMN catalog_id INTEGER') + for (const index of [ + 'idx_catalog_name', + 'idx_catalog_prefab', + 'idx_catalog_tag', + 'idx_catalog_id', + ]) { + expect(migrations, index).toContain(index) + expect(CATALOG_SCHEMA_DDL.join('\n'), index).toContain(index) + } + + // STRUCTURE ONLY. The catalog's contents change as the game's item list does, which is not + // a schema change — rows here would mean a migration and a deploy per refresh. If this + // fails, someone put data back into a migration instead of reloading it. + expect(migrations).not.toContain('INSERT INTO catalog') + expect(migrations).not.toContain('DELETE FROM catalog') + }) + + test('the loader maps both captures onto the columns it declares', async () => { + const { rows, collisions } = buildCatalogLoad(avatarItemsJson, skinsJson) + + // Every row carries exactly one value per declared column, in that order — the loader + // renders them positionally, so a column added to one side and not the other is a silent + // mis-load rather than an error. + expect(rows.every((r) => r.values.length === CATALOG_INSERT_COLUMNS.length)).toBe(true) + const keyAt = CATALOG_INSERT_COLUMNS.indexOf('item_key') + const kindAt = CATALOG_INSERT_COLUMNS.indexOf('kind') + expect(rows.every((r) => r.values[keyAt] === r.key)).toBe(true) + + // One key space, both kinds, no collisions between them. + expect(new Set(rows.map((r) => r.key)).size).toBe(rows.length) + const kinds = rows.map((r) => r.values[kindAt]) + expect(kinds.filter((k) => k === 'avatar_item')).toHaveLength(avatarItemsJson.length) + + // Skins are the one place the counts may legitimately differ: the capture holds five guids + // twice. A repeat is a defect rather than something the table models, so the loader keeps + // the first and RETURNS the rest for the caller to report — dropping them silently is the + // exact failure the single key exists to prevent. + const distinctSkinKeys = new Set(skinsJson.map((s) => s.ModificationGuid)).size + expect(kinds.filter((k) => k === 'skin')).toHaveLength(distinctSkinKeys) + expect(collisions).toHaveLength(skinsJson.length - distinctSkinKeys) + expect(collisions.every((c) => c.kept !== c.dropped)).toBe(true) + + // And the rows really do go in: the same table these tests built accepts a sample of the + // real load unchanged, so a capture that would be rejected in production fails here. Rows + // this file already seeded are skipped — they are real capture rows too, and re-inserting + // one would trip the key constraint on the seed rather than on anything under test. + const sample: CatalogLoadRow[] = [] + for (const row of [rows[0], rows[1], rows[rows.length - 2], rows[rows.length - 1]]) { + if (row && (await getCatalogItem(env.DB, row.key)) === null) sample.push(row) + } + expect(sample.length).toBeGreaterThan(0) + for (const row of sample) { + await env.DB.prepare( + `INSERT INTO catalog (${CATALOG_INSERT_COLUMNS.join(', ')}) + VALUES (${CATALOG_INSERT_COLUMNS.map((_, i) => `?${i + 1}`).join(', ')})` + ) + .bind(...row.values.map((v) => v ?? null)) + .run() + expect((await getCatalogItem(env.DB, row.key))?.friendly_name).toBe( + row.values[CATALOG_INSERT_COLUMNS.indexOf('friendly_name')] + ) + await env.DB.prepare('DELETE FROM catalog WHERE item_key = ?1').bind(row.key).run() + } + + // The row the capture had a skin pasted over. It is an avatar item, and the skin that + // overwrote its name lives in skins.json where it belongs. + expect(avatarItemsJson.filter((i) => i.FriendlyName === 'Disc (Coop)')).toEqual([]) + expect(skinsJson.filter((s) => s.FriendlyName === 'Disc (Coop)')).toHaveLength(1) + }) + + test('catalog_id is a contiguous, unique, load-order handle from 10000', async () => { + const { rows } = buildCatalogLoad(avatarItemsJson, skinsJson) + + // BASE..BASE+N-1 with no gaps, in capture order — avatar items first, then skins. Numbered + // AFTER de-duplication, so a dropped duplicate must not burn a number and leave a hole. + // + // From 10000 rather than 1 because a generated storefront lists a row under this very + // number as its `PurchasableItemId`, and every captured storefront's ids are 2764 or below + // — numbering from 1 would have made one id mean two different items. + expect(rows.map((r) => r.id)).toEqual(rows.map((_, i) => CATALOG_ID_BASE + i)) + expect(Math.min(...rows.map((r) => r.id))).toBe(CATALOG_ID_BASE) + expect(new Set(rows.map((r) => r.id)).size).toBe(rows.length) + + // The id in the row object and the id in the values it renders are the same number — the + // loader binds `values` positionally, so a mismatch would write one and report the other. + const idAt = CATALOG_INSERT_COLUMNS.indexOf('catalog_id') + expect(rows.every((r) => r.values[idAt] === r.id)).toBe(true) + + // It reads back by number, and the number is NOT the item's identity: `item_key` is. A + // caller that stored an id across a load would resolve to a different item or to nothing, + // which is why nothing may persist it. + const seeded = await getCatalogItemById(env.DB, 900_001) + expect(seeded?.item_key).toBe('_OWVy3z6iU-M3-zbQgSLig,,,') + expect(await getCatalogItemById(env.DB, 12_345_678)).toBeNull() + + // Unique where set. Two rows may not share a handle — a number that names two items is + // useless as a handle. + await expect( + env.DB.prepare( + `INSERT INTO catalog (item_key, catalog_id, kind, friendly_name, rarity, platform_mask) + VALUES ('id-collision-probe', 900001, 'skin', 'Impostor', 0, -1)` + ).run() + ).rejects.toThrow() + + // But NULL is allowed any number of times: the index is partial, because a row is + // un-numbered in the window between existing and a load numbering it, and the loader + // clears every id before handing out new ones so a merge cannot collide with stale ones. + for (const key of ['unnumbered-a', 'unnumbered-b']) { + await env.DB.prepare( + `INSERT INTO catalog (item_key, kind, friendly_name, rarity, platform_mask) + VALUES (?1, 'skin', 'Not Yet Numbered', 0, -1)` + ) + .bind(key) + .run() + } + expect((await getCatalogItem(env.DB, 'unnumbered-a'))?.catalog_id).toBeNull() + expect((await getCatalogItem(env.DB, 'unnumbered-b'))?.catalog_id).toBeNull() + await env.DB.prepare("DELETE FROM catalog WHERE item_key LIKE 'unnumbered-%'").run() + }) + + // `runx catalog load` MERGES by default so a partial capture can add a few items without + // wiping the rest, and REPLACES only when told to. Both halves of that live in the CLI's SQL, + // so this exercises the upsert itself — the CLI's own statement, built from the same column + // list, against the same schema. + // + // MUST STAY LAST in this block: the replace half empties the table, including the rows the + // other catalog tests are seeded with. + test('a merge inserts, refreshes and preserves; a replace removes', async () => { + const columns = CATALOG_INSERT_COLUMNS.join(', ') + const binds = CATALOG_INSERT_COLUMNS.map((_, i) => `?${i + 1}`).join(', ') + // Every column but the conflict target, derived from the column list exactly as the CLI + // derives it. + const conflictUpdate = CATALOG_INSERT_COLUMNS.filter((c) => c !== 'item_key') + .map((c) => `${c} = excluded.${c}`) + .join(', ') + + /** The CLI's statement: a full-width insert that upserts on the key. */ + const upsert = (values: CatalogValue[]) => + env.DB.prepare( + `INSERT INTO catalog (${columns}) VALUES (${binds}) + ON CONFLICT(item_key) DO UPDATE SET ${conflictUpdate}` + ) + .bind(...values.map((v) => v ?? null)) + .run() + + /** A skin row in column order, so a column added to the table lands here too. */ + const skinValues = (key: string, name: string, rarity: number): CatalogValue[] => + CATALOG_INSERT_COLUMNS.map((c) => + c === 'item_key' + ? key + : c === 'kind' + ? CatalogKind.Skin + : c === 'friendly_name' + ? name + : c === 'rarity' + ? rarity + : c === 'platform_mask' + ? -1 + : c === 'prefab_name' + ? '[MakerPen]' + : null + ) + + // A row nothing in a later load will mention — the one that proves a merge is not a wipe. + await upsert(skinValues('untouched-by-any-load', 'Hand-Added Sentinel', 0)) + + // Insert: a key the table has never seen. + await upsert(skinValues('merge-test-new', 'Freshly Datamined', 7)) + expect((await getCatalogItem(env.DB, 'merge-test-new'))?.friendly_name).toBe( + 'Freshly Datamined' + ) + + // Refresh: the SAME key again with different values updates in place rather than either + // erroring on the key or piling up a second row. + const before = await countCatalog(env.DB) + await upsert(skinValues('merge-test-new', 'Renamed By Refresh', 42)) + const refreshed = await getCatalogItem(env.DB, 'merge-test-new') + expect(refreshed?.friendly_name).toBe('Renamed By Refresh') + expect(refreshed?.rarity).toBe(42) + expect(await countCatalog(env.DB)).toEqual(before) + + // Preserve: neither of those touched the sentinel. This is the whole point of the default + // — a capture holding two items must not delete the other three thousand. + expect((await getCatalogItem(env.DB, 'untouched-by-any-load'))?.friendly_name).toBe( + 'Hand-Added Sentinel' + ) + + // Every column but the key is carried by the refresh. Derived rather than written out, so + // a column added to the table and forgotten would silently stop being merged. + for (const column of CATALOG_INSERT_COLUMNS) { + expect(conflictUpdate.includes(`${column} = excluded.${column}`), column).toBe( + column !== 'item_key' + ) + } + + // Replace: `DELETE FROM catalog` first, and the sentinel goes with everything else. That is + // why it is opt-in — pointed at a partial capture it removes whatever the file omits. + const { rows } = buildCatalogLoad(avatarItemsJson, skinsJson) + await env.DB.prepare('DELETE FROM catalog').run() + await upsert((rows[0] as CatalogLoadRow).values) + expect(await getCatalogItem(env.DB, 'untouched-by-any-load')).toBeNull() + expect(await getCatalogItem(env.DB, 'merge-test-new')).toBeNull() + expect(await countCatalog(env.DB)).toEqual({ avatar_item: 1 }) + }) +}) diff --git a/apps/econ/static/db/avatar-items.json b/apps/econ/static/db/avatar-items.json new file mode 100644 index 0000000..3d598c0 --- /dev/null +++ b/apps/econ/static/db/avatar-items.json @@ -0,0 +1,39786 @@ +[ + { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Gloves (Blue)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 835, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T17:51:50.733Z", + "ThumbnailImage": "cimomkml6k4toyowd1voh7hqm.png" + }, + { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,D0tP58wC30mJ00vNxw8hqA,N5wN1l0tYEau5np-9PoIiA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Gloves (Leather)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 847, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:53.807Z", + "ThumbnailImage": "bzkxvaged4oeb5kres30cpf1l.png" + }, + { + "Rarity": -1, + "PlatformMask": -1, + "IsBaseAvatarItem": false, + "FriendlyName": "Green Cheer Sash", + "AvatarItemType": 0, + "Tooltip": "", + "AvatarItemId": 9503, + "AvatarItemDesc": "60067e91-18b8-43ab-ae20-a8ea74c757bf,KUAMuM41hk-YLZoqTiKncA,LjQ1UKN2xkqJkok40Dxaew" + }, + { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,iJW8XGJfU0G12iXarjxhdQ,N5wN1l0tYEau5np-9PoIiA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Gloves (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 849, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:56.653Z", + "ThumbnailImage": "79l7swn4ouu72xp8nmx7n1meu.png" + }, + { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,Vxq6v55a_kGPODzwB5MC1g,N5wN1l0tYEau5np-9PoIiA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Gloves (Midnight)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 848, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:55.233Z", + "ThumbnailImage": "5colkn1hn7j9z19pn2vmuyjq5.png" + }, + { + "AvatarItemDesc": "_qXaNbm4yEeyalo372QbvA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Biker Goggles", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 749, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T18:47:19.037Z", + "ThumbnailImage": "dyz4zg15sdjewdf5zjojjk36p.png" + }, + { + "AvatarItemDesc": "002a0f2f-1a24-4439-b578-470818ef8325,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turkey Sweater", + "Tooltip": "", + "Rarity": 50, + "TagList": "thanksgiving", + "AvatarItemId": 1570, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:37:27.263Z", + "ThumbnailImage": "4g2r02n1g5w09re7hl1ba2yyi.png" + }, + { + "AvatarItemDesc": "002a0f2f-1a24-4439-b578-470818ef8325,d-scjeOeCESC0rQMKsozsA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "White Turkey Sweater", + "Tooltip": "", + "Rarity": 50, + "TagList": "thanksgiving", + "AvatarItemId": 2491, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-11T18:02:14.81Z", + "ThumbnailImage": "NjxKDOlshkq09A4VSq5gAQ.png" + }, + { + "AvatarItemDesc": "0058a7c6-04ca-4931-b2ff-03c46f99079f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Eggshell Chick Beanie", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2869, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:27.56Z", + "ThumbnailImage": "PPwy0yri-EypHFSutVm7-A.png" + }, + { + "AvatarItemDesc": "0088603e-ec3b-4478-8694-e6fb1989b3f2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angled Bob Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 620, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-03-22T19:07:25.39Z", + "ThumbnailImage": "am6f16pg9zk7wcjm1ks7meivl.png" + }, + { + "AvatarItemDesc": "00f0b914-aa22-4d14-9af1-996e1af61f4d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tiny Crown", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1504, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-17T20:05:46.093Z", + "ThumbnailImage": "49614bvc1m6rzznnvix44dnbb.png" + }, + { + "AvatarItemDesc": "01107a3f-9a4c-4fb9-8918-e6195e346d42,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Karate Wrist Wrap", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2188, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:15.663Z", + "ThumbnailImage": "oPruDc0j2EGwzv9I9FWS5g.png" + }, + { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Hat (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 530, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T20:48:09.147Z", + "ThumbnailImage": "dvw439bvcm7yg6u5gwrrduckq.png" + }, + { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,357eb160-360b-4a63-840d-65d11cc8ffc2,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Hat (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 534, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:35:59.32Z", + "ThumbnailImage": "6tvxvhjodc7ixkaqu2ncy473u.png" + }, + { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Hat (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 537, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:04.093Z", + "ThumbnailImage": "6ts6u23lp3vvh9g7zmcwgm6yd.png" + }, + { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,a38254c0-00e3-429b-9d5d-b9e6a9812e69,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Hat (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 535, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:01.677Z", + "ThumbnailImage": "7866xyln6cpoizvv5eps253jn.png" + }, + { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3a9b576-5433-4305-bd96-b08820c09212,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Hat (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 536, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:02.99Z", + "ThumbnailImage": "2mgmt7so1oho67truxxyy5key.png" + }, + { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3KmqVuMQkCYK6sVTMOTOA,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Hat (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1306, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:38.187Z", + "ThumbnailImage": "19rp9i0wdr1ua9vm9hgjiy1f2.png" + }, + { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,RKmRHk2N_U2gd91nybo6vg,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Hat (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1124, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T20:00:32.447Z", + "ThumbnailImage": "cgrpr9ydok6zdsitoa7a14oie.png" + }, + { + "AvatarItemDesc": "01d0fc12-3ebe-42e1-8caa-5513a40436c1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bat Bowtie", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1908, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-22T18:03:50.847Z", + "ThumbnailImage": "1snahzhx4gvw2hmv9vx8ves5r.png" + }, + { + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Artist Shirt (Gray)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 364, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:27:04.553Z", + "ThumbnailImage": "49e7ejka5p8qmdd0wplyjic3s.png" + }, + { + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,17b16982-871c-476a-860f-f6953c89ee8c,5a6db6ba-2a0f-4399-b537-dd78db94bf90,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Artist Shirt (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 407, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:33.227Z", + "ThumbnailImage": "7e9wiybe217zugyt61b0i6ten.png" + }, + { + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,8c94e45c-6605-4b4f-9ba4-2c6c6e557228,5a6db6ba-2a0f-4399-b537-dd78db94bf90,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Artist Shirt (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 406, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:32.237Z", + "ThumbnailImage": "eiioy82z0xbvbvebsm9vamslv.png" + }, + { + "AvatarItemDesc": "022ce375-ed02-479d-b87d-9d72d126bbd4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jack Frost Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1285, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-06T22:36:52.873Z", + "ThumbnailImage": "extmqwfwviflhb677k7y0j5vw.png" + }, + { + "AvatarItemDesc": "022ce375-ed02-479d-b87d-9d72d126bbd4,dpfTnOvsrUePTVs0XZD9qQ,gOt7BYXvw0uUS-U53KThAA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Carnivale Wings (2021)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1851, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:45:59.87Z", + "ThumbnailImage": "23wddlluexp562bjt32f4humv.png" + }, + { + "AvatarItemDesc": "022ce375-ed02-479d-b87d-9d72d126bbd4,H6fcuLxeBUSY3oERFc-plA,oGrNKZLpMU2bLwNEe4MPnw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jack Frost Wings (Lilac)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1753, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T01:40:02.11Z", + "ThumbnailImage": "f5anyvib4zotf2hlzp6twhrpq.png" + }, + { + "AvatarItemDesc": "02a5b48c-abba-4385-967b-ba900424829e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Safari Monocle", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 382, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-30T23:38:22.173Z", + "ThumbnailImage": "e4rsuhl9ws520phjximdfsour.png" + }, + { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Detective Coat (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 724, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-21T01:05:55.17Z", + "ThumbnailImage": "abhyjwyie97h1rlznlk29up36.png" + }, + { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,msOFHoFN9UORkeXXtdqBsw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Detective Coat (Grey)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 754, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T18:47:27.233Z", + "ThumbnailImage": "ec3q3cbtla7cn866qybjjfdaw.png" + }, + { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,Z1Ib9r_fkUqgoZk0uid_Xw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Detective Coat (Black)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 753, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T18:47:25.973Z", + "ThumbnailImage": "0dwm2kiido15zo6nhtcwi0vma.png" + }, + { + "AvatarItemDesc": "03ce3b52-0d0c-4b72-a027-ade53b7a5cc5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mecha Helm (Forbidden One)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2279, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:15.443Z", + "ThumbnailImage": "lQCcPfTrxkuFrwpWyZRiiw.png" + }, + { + "AvatarItemDesc": "03ce3b52-0d0c-4b72-a027-ade53b7a5cc5,GhulL0k9q0euEooMTUKTHQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Helmet (Invasion 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2703, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:39.127Z", + "ThumbnailImage": "b-rwdReQyEOex38lYG4k7g.png" + }, + { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Hat (Brown)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 357, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:26:54.537Z", + "ThumbnailImage": "2taoaui5i9giqj24levmdbst6.png" + }, + { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,225209dc-3afc-40cf-858e-89f7afa00c0d,efeb07ab-6253-436d-bb66-991ddad72e58,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Hat (Gray)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 398, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:22.147Z", + "ThumbnailImage": "a791dc940zynp12ezpj4sdavg.png" + }, + { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,3f6c8bd2-2c1d-4c8c-a9de-16600fee9645,efeb07ab-6253-436d-bb66-991ddad72e58,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Hat (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 396, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:17:57.71Z", + "ThumbnailImage": "2i2e0tjhgvflcauuva6tqucvx.png" + }, + { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,d7f0ffd3-ccf9-465e-8afe-4d7efb78dd2c,efeb07ab-6253-436d-bb66-991ddad72e58,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Hat (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 397, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:20.613Z", + "ThumbnailImage": "6e94bkakcfscxp997xunr45se.png" + }, + { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,G7p-E7TJHkSojZtj_5pDXw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Hat (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2515, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:19.783Z", + "ThumbnailImage": "lRJW1xa-LU2CmI1Uvlzzsw.png" + }, + { + "AvatarItemDesc": "04e348b7-107f-47b4-9331-ae3b9fa184ca,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Braided Bun Hair ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1980, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:18.097Z", + "ThumbnailImage": "6vl2aov7qwvmkpf2wux0rctq6.png" + }, + { + "AvatarItemDesc": "05ab6e79-1198-49f2-945b-528523e306bc,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wicked Sorceress Amulet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2388, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:35.763Z", + "ThumbnailImage": "k1-iNuM_jUadcrVNAvy83Q.png" + }, + { + "AvatarItemDesc": "05ab6e79-1198-49f2-945b-528523e306bc,aUsPNgV2c0u15VhGBAIyvg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dragon Necklace (Ruby)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2389, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:37.183Z", + "ThumbnailImage": "pR-mOlAIOEiskisbb6ZQUw.png" + }, + { + "AvatarItemDesc": "05b7af56-71f2-45ba-a377-c105bf6a6f7a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Werewolf Wrist", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 1521, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-30T18:21:05.307Z", + "ThumbnailImage": "5gcobmtf2n9884p336ea9z10x.png" + }, + { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Gold Sequins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1267, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:43.86Z", + "ThumbnailImage": "f561z4j5s60ih6h3mp3me6ath.png" + }, + { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,Wm30oV5BtEuFQZFk3dPK_w,tfiSfpRez0y_R4QjAhO0bQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Red Sequins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1614, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:19:46.457Z", + "ThumbnailImage": "cm7rzgd535abr6dvbm4wfb061.png" + }, + { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat-Eye Glasses (Red)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1004, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:28.253Z", + "ThumbnailImage": "814p75pufultq4i0yd07s46mi.png" + }, + { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,cypMpMaVeUuRjm4FLH4czQ,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat-Eye Glasses (Teal)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1883, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:18:02.58Z", + "ThumbnailImage": "crpsa73v3nvk6saa71tdx8k9u.png" + }, + { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,LTXy6g4xe0abuFzOLpVDUg,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat-Eye Glasses (Dark Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1881, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:56.363Z", + "ThumbnailImage": "84jgglt9m8uawzj1481xfk4fw.png" + }, + { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,tMsCUhDslkmdNBfogeSz7w,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat-Eye Glasses (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1884, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:18:04.75Z", + "ThumbnailImage": "eafwn78k3h4uaugzy9kay26kr.png" + }, + { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,whWKAUSGp0qprsJomq9Nwg,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat-Eye Glasses (Pink)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1882, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:58.197Z", + "ThumbnailImage": "7h6z4ycgbt833y56ccc3rtl3p.png" + }, + { + "AvatarItemDesc": "06475461-f3ab-4e92-ad92-243c00b19ff0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Prodigy Princess Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2019, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:41:25.603Z", + "ThumbnailImage": "wf_PLXUTzU6UXiDZCDulRw.png" + }, + { + "AvatarItemDesc": "06adb976-ca7f-4b8b-8b72-2e03c8bc10b3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Clover Head Bopper", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2025, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:08:18.167Z", + "ThumbnailImage": "ES_b9-XkfEGzWShw1v1EMg.png" + }, + { + "AvatarItemDesc": "07023692-97e1-4a65-a881-64ca6b4ae08e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbarian Helm ", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1677, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:06:28.823Z", + "ThumbnailImage": "0j5eiu15ludyj18o9vlghi84f.png" + }, + { + "AvatarItemDesc": "07116e9b-b182-40b4-90c2-99738e7aedd6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Parrot Purse", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2941, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-24T15:25:33.367Z", + "ThumbnailImage": "3b4RkTVS6UeA0lrNcM_BAg.png" + }, + { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf (Beige)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2337, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:08.553Z", + "ThumbnailImage": "Exs987LYAUOtBgHMuw7Rqw.png" + }, + { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,_T4zEki_wk-UIPdhSaBr_Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2341, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:17.897Z", + "ThumbnailImage": "J-3USpg66EG6TP6A0OF22g.png" + }, + { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,5z3jZhYvq0CGmdJ9IcUUsg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf (Brown)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2340, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:15.53Z", + "ThumbnailImage": "lEfY-3T1Lk6G8rEL0ZkSOg.png" + }, + { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,B3jdXiOJs0WO2ytm3-hXPg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2338, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:11.047Z", + "ThumbnailImage": "5L_MOzszIUOYUpjCKDoaog.png" + }, + { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,EgEoJzG7A0aJ92qfInbX7g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2342, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:20.543Z", + "ThumbnailImage": "OfSv7-HEQEudAjfpEbowJA.png" + }, + { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,NETGR8iysUyxcZM_oGmrwQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2344, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:25.36Z", + "ThumbnailImage": "dBD0grhWnUavKcZsyyx1FQ.png" + }, + { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,OlfQDuz1NUOr88AL2n0jXg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2343, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:23.107Z", + "ThumbnailImage": "L9nYH9XNvkGX3ZD8c3UfLw.png" + }, + { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,VudVdOAjZUibHmtFeNkvSw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2339, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:13.24Z", + "ThumbnailImage": "bymnCdtwu0SDAsat4NNB4g.png" + }, + { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Hat (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 656, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-02T20:48:17.393Z", + "ThumbnailImage": "57y04gj7sxv3ffgs9mbnww3wk.png" + }, + { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,e-oZt-PbKEOfawVammBQTA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Hat (Striped)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2263, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:12.277Z", + "ThumbnailImage": "6-G1yAklOU-Vz5BRJzhaAw.png" + }, + { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,jwXdjDbEmkOFyKZHT_RYOw,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Hat (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1553, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:40:48.737Z", + "ThumbnailImage": "augnnz7p6ycztoyhc5w3sitrn.png" + }, + { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,LdKaVAveokmp3qRwVBxnFA,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Hat (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1562, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-24T01:56:34.8Z", + "ThumbnailImage": "f11gnls9uil36r3thydrn8hk1.png" + }, + { + "AvatarItemDesc": "0736e71b-a32b-4485-bedf-6fde8fe3b09f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bat Hair Bow", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1909, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-22T18:03:59.107Z", + "ThumbnailImage": "2nbi9m6b47r4wal4q24bnxfms.png" + }, + { + "AvatarItemDesc": "0753d7a4-8247-4fca-a6fc-359c26086140,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fonzie Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 993, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:12.32Z", + "ThumbnailImage": "5h63afsihyt4jqw4p15rg5bnh.png" + }, + { + "AvatarItemDesc": "076e98b6-dc1b-48f8-bb02-aa65d26b33d1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Prodigy Princess Bracelets", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2020, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:41:29.513Z", + "ThumbnailImage": "SdP7P425CkCbPhAIfZCtaA.png" + }, + { + "AvatarItemDesc": "07bebdb7-bbe1-49ea-a746-c1d00e11f174,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Earrings", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2445, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:30.03Z", + "ThumbnailImage": "94mq42cmonwiia61g4kx9jsmu.png" + }, + { + "AvatarItemDesc": "07bebdb7-bbe1-49ea-a746-c1d00e11f174,ciwVtCaRHEO72BFPe4Ujmg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jack-O'-Lantern Earrings", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2446, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:32.16Z", + "ThumbnailImage": "0qumzncb3mqqivji6bma4w0vd.png" + }, + { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Poodle Skirt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1848, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:44:57.777Z", + "ThumbnailImage": "4hpfukjpch71fzmfokc3tx3s6.png" + }, + { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,tPAJqFHiX0yUQpDOE0MJ6A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Planetary Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2558, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-31T21:10:53.18Z", + "ThumbnailImage": "BHgotDTbX0umzVt4i36gBw.png" + }, + { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Cuffs (Pinstripe)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 560, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-06T22:35:08.653Z", + "ThumbnailImage": "76jy5kgg3ywcce4irqjp40e7o.png" + }, + { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,46970903-9799-4d25-b90a-7162c1f5dbef,05cff8b8-d437-485a-b4b8-41d35becd022,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Cuffs (Creators Contest 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 718, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-11T22:02:19.367Z", + "ThumbnailImage": "bo4sinu9h61ugjoyoi0qu6aqc.png" + }, + { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,531b4297-b38b-4362-9854-4f2139ea43be,c2a9c007-2748-4fa2-ab9b-0081eef792f1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Cuffs (Herringbone)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 717, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-11T22:02:18.28Z", + "ThumbnailImage": "5qsejkrvzfabn61cbd7tzrav2.png" + }, + { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,6ItbfT4igECHl2eLuhGLIA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Cuffs (Premium)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2825, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:41:02.733Z", + "ThumbnailImage": "1Z97coFGmUSgGU9P-pU5KA.png" + }, + { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,newGzX_zA0eGUX3Iayq5Ag,QBzMp7MdAUOLIofvddui1A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Cuffs (Purple)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1132, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T21:13:32.183Z", + "ThumbnailImage": "7oklc7x4ju4r3afyx70po80cx.png" + }, + { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mecha Armor (First Release)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1912, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-22T18:04:11.247Z", + "ThumbnailImage": "deey8zsy6ga64seu2ecdgbscy.png" + }, + { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,a9oUAXZpHUaW1_ncqhkYZg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Armor (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2489, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-11T18:02:09.657Z", + "ThumbnailImage": "zYe-zV8o90qtz6ryq0Q3aA.png" + }, + { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,CeebPv2TZUixq8cmVD5lUA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Armor (Invasion 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2706, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:48.17Z", + "ThumbnailImage": "wWzp1pLLbEq0Zrt_O6yaMA.png" + }, + { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,eG1Lf1vG60qNQiCBRsAhqA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mecha Armor (Forbidden One)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2289, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:51.973Z", + "ThumbnailImage": "8u2ve7984kGPN_F3hbDzFg.png" + }, + { + "AvatarItemDesc": "09177621-9ecd-4f6a-b6a5-64490139141d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flat Top Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 81, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "4q0530imylzalquyt6zrs4br4.png" + }, + { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Coat (Mastermind)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1377, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:54:44.647Z", + "ThumbnailImage": "alszurr07un4fg5ta4aw0z10o.png" + }, + { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,bQyNgFWAe0SPttPri6hxyg,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Coat (Rogue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1379, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:54:49.733Z", + "ThumbnailImage": "8r2mn0ynnf5yr8p2yifhlpskz.png" + }, + { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,wRPoHTsXFESK5pjkxVMqGA,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Coat (Outlaw)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1380, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:54:51.703Z", + "ThumbnailImage": "5lo58vo2p2eebv8s1aunra4xy.png" + }, + { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,YB7kXMyLJ0mF_5WidhmH8A,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Coat (Spy)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1378, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:54:47.32Z", + "ThumbnailImage": "bzgwcv1v83e9lql441lco77up.png" + }, + { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Quilted Vest (Black)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1296, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-22T20:21:56.54Z", + "ThumbnailImage": "52v2ad9kyewcmaefknqmm6l5i.png" + }, + { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,-HYrY2A5Tk2UWMi4_hmYbg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Quilted Vest (Orange)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1298, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-22T20:22:04.903Z", + "ThumbnailImage": "bldx6nf85lql3l8l0v9q3wmag.png" + }, + { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,IjRMopsYlUqSE6327I9TIQ,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Quilted Vest (Purple)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1299, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-22T20:22:10.223Z", + "ThumbnailImage": "7i0g7hs6aziwfqxrm0xnv67gg.png" + }, + { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,j3I0vVz0yUOYLX9wCOMyyA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Coat (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2559, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-31T21:10:56.717Z", + "ThumbnailImage": "2GOgnQwKxk2NkTSIxV9t_Q.png" + }, + { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,ons8s4ILoUmkdtliouAscw,ACrBLiAIgEur9V6l_B0CvA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Quilted Vest (Teal)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 6615, + "IsBaseAvatarItem": false, + "CreatedAt": "2024-03-27T22:53:49.423Z", + "ThumbnailImage": "GriWpcHg50eSLAxY5yc47g.png" + }, + { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,QBglgj80zkuvUkk55Y5Feg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Quilted Vest (Green)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1297, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-22T20:22:00.73Z", + "ThumbnailImage": "8je25aruza2779n4njv1gmsgd.png" + }, + { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,zTsJHduQ5kirH9-6mewV4g,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Quilted Vest (Yellow)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1936, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-03T21:35:36.413Z", + "ThumbnailImage": "8ntv07mm6o9xzz2hcltgnxkur.png" + }, + { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Dress (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 721, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-20T23:58:10.143Z", + "ThumbnailImage": "2awsas0vcecc7a11lr9fprbmy.png" + }, + { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,0ps19D7b_U2iejdKQFORyA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Dress (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 866, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:21.45Z", + "ThumbnailImage": "a73qlfdd1y677wh2wfqn4hheb.png" + }, + { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,pjkTGVHkIE-BzCVi1KAesQ,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Dress (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1313, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:06:12.74Z", + "ThumbnailImage": "856n9ywg3kp1796sqc8zm9yvz.png" + }, + { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,QP38EMygY0S-KIvdGatARA,m5Vw_MMCWUiSOOCL94QO0w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Dress (White, 2019 Fantasy Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 963, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-01-18T21:17:35.67Z", + "ThumbnailImage": "4sv3incjefp9fawup30vx3ih8.png" + }, + { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,t1MeoroFOUioYmPfT9mCeA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Dress (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 865, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:20.123Z", + "ThumbnailImage": "4chofv403g5ompt8exr51v7ai.png" + }, + { + "AvatarItemDesc": "0abb6b08-20ce-444f-879e-0d1344df096c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Round Earrings", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1620, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:20:12.7Z", + "ThumbnailImage": "3xh3iq78mo5epeepsiol6ghz1.png" + }, + { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Jacket (Blue, White, Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 208, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "20un14zo8e1w83oiatx99lwpt.png" + }, + { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,27af51bc-8226-4911-8d47-22d28ea8e378,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Jacket (Blue, White, Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 213, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "00jh263iuxouyk40imb4wjv0o.png" + }, + { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,3df5d13b-ba77-4b51-90b2-7a946e4d0be7,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Jacket (Black, Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 215, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3jnhwwxklxb0ojoszaexejbfx.png" + }, + { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,6145292a-9002-41c6-8cd5-43679b6f542f,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Jacket (Black, White, Grey)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 211, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9c3baiau5sgxnhlikff1pph09.png" + }, + { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,7c1aaa7e-503b-46ef-b1c5-0c61a75b916e,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Jacket (Black, White, Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 212, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "45br9sqobjiwgoh4alz5l9qf8.png" + }, + { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,857fdcd8-704f-43d0-92b9-bca26619b153,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Jacket (Blue, White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 214, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7ergraacf4272gslnvieytiw3.png" + }, + { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b5d62931-e756-4a8a-8f3b-760beba49319,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Jacket (Black, White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 210, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5iuznrq2zpc14fctl8tnp4odk.png" + }, + { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b9f51861-ad10-4878-a9b1-d849bccf532a,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Jacket (Black, White, Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 209, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "41op70bhqlf5s2l320femq7fa.png" + }, + { + "AvatarItemDesc": "0bd750d9-82ff-4d77-9f2e-7e2651316f51,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tokyo Machine Mask", + "Tooltip": "", + "Rarity": -1, + "TagList": "", + "AvatarItemId": 2730, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:30.143Z", + "ThumbnailImage": "K_CvxmWWCkugsiOwB8nZAQ.png" + }, + { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mechanic Hat (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1332, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:27.043Z", + "ThumbnailImage": "1xj0gybaafqrogg7hnsgqbscb.png" + }, + { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,24zVmiGiaESrM5qcRfF6gA,3pdsIrhM9EW-y-LNnjbFxg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mechanic Hat (Orange)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1334, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:36.91Z", + "ThumbnailImage": "20bhcftlu43jwrw06imhg37ox.png" + }, + { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,C9cPjOoiCUCHrCBi809CMQ,3pdsIrhM9EW-y-LNnjbFxg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mechanic Hat (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1333, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:32.023Z", + "ThumbnailImage": "0q7ysb2tsjy0mbxx1nes33jdx.png" + }, + { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,LOeHr4xoik6VOv1fOeImjA,3pdsIrhM9EW-y-LNnjbFxg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mechanic Hat (Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1335, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:41.437Z", + "ThumbnailImage": "0v5t8d3m8790n1lzjjp3qd9z5.png" + }, + { + "AvatarItemDesc": "0d1ae26e-aaa4-4914-ad70-c9ab8cfabc61,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Box Braids with Cuff Hair ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1979, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:10.777Z", + "ThumbnailImage": "d45c0mzfbqha85oe0312hkatw.png" + }, + { + "AvatarItemDesc": "0d4e7ebe-efd9-4e68-9900-5645916e7596,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Silver Sequins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1265, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:35.897Z", + "ThumbnailImage": "76fk7csv3rzv0frnesf1d575f.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Traveler Hat", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 972, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-06T01:55:40.617Z", + "ThumbnailImage": "3ki0gazw736edmje4kpkv8bvb.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,7Rw_gt9IUEOYsvVcOTbVBw,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tourist Hat (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1730, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:14:55.007Z", + "ThumbnailImage": "6v72ng5qy6zmim5nx1i6k7hy2.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,aiBfwCNwpUyJ0rYKCMa7qw,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Traveler Hat (Yellow)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1729, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:14:51.853Z", + "ThumbnailImage": "e25fr88d2412i6acn3s2e2khj.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,B6qNcZQ770eJel13RskuIg,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Hat (Begonia)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1433, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:48:46.09Z", + "ThumbnailImage": "9ozq264dxzs2juj87d64edd1i.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,cSFt9MWLj06CDzIzATqrTg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Hat (Poppy)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1432, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:48:44.383Z", + "ThumbnailImage": "1dcjmvlujpg9zj2zccxxccpcw.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,LEUQnDz-k0m-hY-AX3Z9Sg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Hat (Paradise)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1431, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:48:42.507Z", + "ThumbnailImage": "5eujgf1g27oi4kl20v8si25ry.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Mt2a9ygWPkS-DyXj1q-Kvw,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Hat (Lily)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1430, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:48:41.01Z", + "ThumbnailImage": "31sglupqv6cqh6rzb8embhfwz.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,p3g8YAOhTUKAiE-Wh-X-aA,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Hat (Dahlia)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1434, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:48:47.57Z", + "ThumbnailImage": "6qw0otr02xea0hnbor3sp5kas.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Pu_1I6Zq-0G1HBMHa5MrKg,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tourist Hat (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1731, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:14:57.993Z", + "ThumbnailImage": "can59da4g2r699415y5w5vr03.png" + }, + { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,SqHAYcqBXU2PtF2urWGruQ,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Hat (Primrose)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1435, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:48:49.483Z", + "ThumbnailImage": "5seeahrp9r3hyie3y148dclsb.png" + }, + { + "AvatarItemDesc": "0yFzgVESokC3gFd3hrS8bg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tutorial Gown (Doctor)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1097, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:21.95Z", + "ThumbnailImage": "bogc32ezqq4e260fqnwn6hunt.png" + }, + { + "AvatarItemDesc": "0yFzgVESokC3gFd3hrS8bg,GK3yolCNlEm3B_5DtHkE8w,yKb2A8M_m0GQDhFWCRUHTQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teacher's Gown (Level 3)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1258, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:04.307Z", + "ThumbnailImage": "bsih24pcifs39vkgb3nj2y01r.png" + }, + { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Gloves (Mastermind)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1385, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:55:15.65Z", + "ThumbnailImage": "ev03rmx75zjo4wrysupitq82o.png" + }, + { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,9SAPupKy_EO6YeG0SMkI5A,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Gloves (Rogue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1387, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:55:19.643Z", + "ThumbnailImage": "3gmgmoqsor5tij57yfuqtj9i0.png" + }, + { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,DtFYrQwaCky5C1ZycqZbiQ,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Gloves (Spy)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1386, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:55:17.857Z", + "ThumbnailImage": "3hl7xtr4md2vxqqi3d3z5zgxe.png" + }, + { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,hiMYlmk5sEqh-sElOY3A9g,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Gloves (Outlaw)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1388, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:55:21.94Z", + "ThumbnailImage": "29vqlnj8n33qtfh0u4ka6qbtz.png" + }, + { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Top Hat (Black, Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 72, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7beqslha3807spvktpk1rat13.png" + }, + { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,bd4a84e2-b67a-4269-a26a-17fb23ddb09e,ccf1ccc1-e229-4157-bb74-f2cdef01e547,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Top Hat (Black, SciFi)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 645, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:28.81Z", + "ThumbnailImage": "d8wvm262ivsmterpwyjcf0d3i.png" + }, + { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,DzgN67HoikexE2rTlZLdYQ,vm1ESK9ls0SaxSwHplNALQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Top Hat (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 915, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:49.663Z", + "ThumbnailImage": "e8kcw6vyqqzb5temhwr493mtf.png" + }, + { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,Em__GeYWaU2pAEqWYCBKpA,DG83ruIdI0Wu-GSRg4icYQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Top Hat (Gold)", + "Tooltip": "For earning $10,000", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1801, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:11:46.56Z", + "ThumbnailImage": "5948oo28re9hcl2wswbr309wb.png" + }, + { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,n8t0gIYFbUaPMhyQeWkPSQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Top Hat (Galaxy)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2482, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-04T17:41:32.06Z", + "ThumbnailImage": "zcove5uhGUSvwxXtkvlWow.png" + }, + { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,xeK_acj2hE-sYGhsMRwjhw,HwhHShudGkGjXagJxCN2uA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Top Hat (Patchwork)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1732, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:16:15.52Z", + "ThumbnailImage": "3nihpsb8d8hrh8ovb5pzd5f1a.png" + }, + { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Safari Shirt (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 375, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:15.093Z", + "ThumbnailImage": "1v72ao5s3ko2tz94379807tki.png" + }, + { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,84c016ad-133f-45e3-a412-cac35612540b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Safari Shirt (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 393, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T21:29:49.9Z", + "ThumbnailImage": "702vaqfirb8tw9cqhy7977bcq.png" + }, + { + "AvatarItemDesc": "105a5100-cb57-410f-a26b-1ee21002f067,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jack Frost Coat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1284, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-06T22:36:48.807Z", + "ThumbnailImage": "7b7sjloem429tv2xpco7r45jw.png" + }, + { + "AvatarItemDesc": "105a5100-cb57-410f-a26b-1ee21002f067,prEZHWvOM0ysaNfAe06ywA,q0nBwoIx_UWPe93wHDWTYA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jack Frost Coat (Lilac)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1754, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T01:40:03.68Z", + "ThumbnailImage": "36iyxpz2ym6qs0k43ssehyv05.png" + }, + { + "AvatarItemDesc": "11b3413f-2c18-41cb-8ef2-55fb825ed476,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Plush Bunny Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2884, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:59.893Z", + "ThumbnailImage": "j7uEUd9qPEerGchhJ6rmaw.png" + }, + { + "AvatarItemDesc": "11b3413f-2c18-41cb-8ef2-55fb825ed476,DNGqrCGe8kKrNmJaGzjjew", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Plush Bunny Backpack (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2885, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:13:02.473Z", + "ThumbnailImage": "B08PvxHhZUOcI_bnrefOFQ.png" + }, + { + "AvatarItemDesc": "11cec676-0ec3-4778-abe4-a9d399900b54,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gardener Belt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2821, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:50.42Z", + "ThumbnailImage": "BC8BhDnhAUWqYwj2dvuT2g.png" + }, + { + "AvatarItemDesc": "11e508a7-fe7d-470e-b270-2dba33e2f7a1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scientist Goggles", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 99, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9g1cba0qnig6whctstb0qaxyc.png" + }, + { + "AvatarItemDesc": "123de433-a005-4994-8a11-d2d84ad66b11,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Visor (Pink)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 576, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-28T21:55:28.717Z", + "ThumbnailImage": "500ajcxzkdjvi2db9ev74rstc.png" + }, + { + "AvatarItemDesc": "123de433-a005-4994-8a11-d2d84ad66b11,426d0592-f8e4-4bc6-9fe1-a62b91fd57d5,4e378419-d043-4e86-ad0e-66288ac21cf4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Visor (Blue)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 580, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-01T19:04:48.617Z", + "ThumbnailImage": "81x4cfhnckh1a4ni8mxn9trzj.png" + }, + { + "AvatarItemDesc": "123de433-a005-4994-8a11-d2d84ad66b11,-e6bmXnwZU2EVwZ8RupKbg,4e378419-d043-4e86-ad0e-66288ac21cf4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Visor (Teal)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 741, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-04T20:02:52.063Z", + "ThumbnailImage": "1mu93bk5rhp7yqekc2k5aukn9.png" + }, + { + "AvatarItemDesc": "123de433-a005-4994-8a11-d2d84ad66b11,oT1vLrHW6UC2hWLIT3f_SQ,4e378419-d043-4e86-ad0e-66288ac21cf4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Visor (Orange)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 740, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-04T20:02:48.94Z", + "ThumbnailImage": "9z5r4i4elegluux9nocggv8lh.png" + }, + { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Gloves (Brown)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 384, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-30T23:38:24.057Z", + "ThumbnailImage": "dik18b9lkprego4zu9vx7mv75.png" + }, + { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7fb8496f-0e6c-4e48-b8fa-5709ebbf4820,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Gloves (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 411, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:37.45Z", + "ThumbnailImage": "c6s4wxr4cgcoqmqlgwz47lrnh.png" + }, + { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7nRz9Jmnn066_PzngkhfFA,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Gloves (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1613, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:19:35.647Z", + "ThumbnailImage": "68cuiknni4ah1844qwlndids2.png" + }, + { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,97bbb384-b37e-4ea1-902c-88fbd6854ab5,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Gloves (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 410, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:36.417Z", + "ThumbnailImage": "cfko6vz2smqr4u7q3b5jh5jvh.png" + }, + { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basic Belt (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1740, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-22T21:44:20.33Z", + "ThumbnailImage": "byk3riscj527wx5q6aq2u1h1y.png" + }, + { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,6fmUy748hU2dgwgaijSkUA,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basic Belt (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1739, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-22T21:44:17.313Z", + "ThumbnailImage": "a6xlnnqmochthrsk0xmuemrpf.png" + }, + { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,buuNFd8sK0eap78TL1gMNQ,-UFHTNvJs0CGDStb0PFkbQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basic Belt (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1741, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-22T21:44:23.06Z", + "ThumbnailImage": "48ag7b3c5m2vy68rclwrb8km0.png" + }, + { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,dBR1uNgk206eVoWntVzVAg,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basic Belt (Brown)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1738, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-22T21:44:14.473Z", + "ThumbnailImage": "3bofvoeb5yy5y86dljqn9nqyw.png" + }, + { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,LIgagNf4gk68EYQdlDruxg,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basic Belt (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1736, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-22T21:44:07.117Z", + "ThumbnailImage": "e9d1k2tttj2ohpp10c8fp9uu1.png" + }, + { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,zPGCmxM_b0yTt7tqMaomcw,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basic Belt (Tan)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1737, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-22T21:44:10.627Z", + "ThumbnailImage": "3g3ewvd49267e67sqmpy9df0v.png" + }, + { + "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shark Hat", + "Tooltip": "Doo doo doo doo doo doo", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1133, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-07-16T18:20:43.96Z", + "ThumbnailImage": "8y0zbo7xaq7ymt78orz2j8b42.png" + }, + { + "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,ln5aTG458UOVh4sR820FJQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shark Hat (Tiger)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2197, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-05T16:52:48.68Z", + "ThumbnailImage": "znzGBCjJOESSUfgrMXG-dw.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 25, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "d7lvri8z5oviwaw0fgktu2pqv.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (Black)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 983, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:15:26.713Z", + "ThumbnailImage": "6u0dzdrw11sr5n7ix18tfuhu1.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,484b6c13-af22-4ad5-8c43-34c0de095d49,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (Light Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 29, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "35b472lvh2ejmoj4ppvh8nqvy.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 31, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "aghnwd2jnaxd0vtt7oq9ks3pp.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graphic Cap (Buckaneer)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1630, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:42:59.81Z", + "ThumbnailImage": "3lp8gu18idyrp1ify9n7g7h8m.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (Yellow)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 30, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9si5yzip1v33nbt5clp7t208l.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (White))", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 26, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "4rmm71n7z0wmlx9lj3u30z4u0.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 669, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:29.003Z", + "ThumbnailImage": "3eon8zbs1np0ijovp5ri8gb2h.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,cfiCxhJZ20u07X1x93tNZQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Hat (QuinnXCII)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2773, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:27.387Z", + "ThumbnailImage": "-lxSQ88W0UOAP-8tne9rSw.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 670, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:32.297Z", + "ThumbnailImage": "drn8bzb22wxe4zkanykjdw7il.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,M8IYDK6aTUyn5mRhr51GtA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (White, Orange, Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1633, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:44:18.773Z", + "ThumbnailImage": "9x0xbf4dhn0sn8fttdfpdd2k2.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,mdSSJyipq0KvjDNQ2NyUaw,LQheTa-EvUaAonSyoWNmXg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graphic Cap (Holographic)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1818, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T23:41:16.09Z", + "ThumbnailImage": "2g7h0rh45zr980awo5cvp4si2.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nzFUAOCAFUCd9S-x4EKRwQ,Qx7nrZH-K06CgIoJYfFCCQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (Heart)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2003, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:53.28Z", + "ThumbnailImage": "8jcewsfim13hla1ex6nlwucmp.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nZor-clxlkm8EO9Gco0Otg,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (White, Red, Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1216, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:59.177Z", + "ThumbnailImage": "d45mukwdi8abvszf0t0hbk5hr.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graphic Cap (Goblins)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1217, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:07:03.523Z", + "ThumbnailImage": "593u0j7z80kmuoamluu1rn0dg.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,VB_2uEBs70-9MnLn3__upw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skater Hat (Checkerboard)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2898, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:23.533Z", + "ThumbnailImage": "BJUjvFUapUqyNI-sHp5Plw.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,Vk1n941ZgkKrhrL9mh18oA,lxmw7EbzsUuoy0roRy5McQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graphic Cap (Minitron)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1707, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:32:17.39Z", + "ThumbnailImage": "59nj2htuon9c6gj41ptaat7jk.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,XLYLo5qgW0eociGDgQ16PA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (White, Yellow, Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1631, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:44:14.443Z", + "ThumbnailImage": "dospnezxsaqyxcdej4ac9k08b.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,xPs8BvGgdUC1i_luWAfSFA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NBA 75th Anniversary Cap", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2172, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:21.763Z", + "ThumbnailImage": "YHvgN-qla0-yF9DyWIkm1g.png" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,yxWEn-oaYE2YvvnrTVV5WQ,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Cap (White, Turquoise, Grey)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1632, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:44:16.503Z", + "ThumbnailImage": "ajy5peougbbudsm27960iaohq.png" + }, + { + "AvatarItemDesc": "155c13b9-3c72-4314-85ac-6fbac19cdc76,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rogue Shirt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1872, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:26.79Z", + "ThumbnailImage": "edcczm6mc1nc1pcanunxzgprq.png" + }, + { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Mask (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 63, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "bgxz7thjzppr81bia4pwvg2qh.png" + }, + { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Mask (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 488, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:09.4Z", + "ThumbnailImage": "59dj5f6fpgmoilwpcpugnwomn.png" + }, + { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,5_UnQ7vZ9E2T-EhJ7M-mQw,jL-LAsd03EeN1J-Zp8opew,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Mask (Green Lightning)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1511, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-15T19:18:23.36Z", + "ThumbnailImage": "a6g3l9h3i3ads39fgxf0lnwaq.png" + }, + { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,916384ca-e209-42a0-bd64-c64f5a40b56f,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Mask (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 487, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:08.363Z", + "ThumbnailImage": "4jk1xibdjjddzpvrwcw05usiu.png" + }, + { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,RA7cizxxYE6J8yV_0XwPxA,VSLcLM0TJU2kJU5gS4KZGw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Mask (Pouncing Tiger)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1735, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:20:56.65Z", + "ThumbnailImage": "cwfcqra4nyurw86ksh4qv0cjq.png" + }, + { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skateboard on Back (Skull Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2215, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:38.76Z", + "ThumbnailImage": "62A9TZ7RIEOpOwFfOh9vXA.png" + }, + { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,7WzGZTf51EWClLTLNhhGVg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skateboard on Back (Checkerboard)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2909, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:50.677Z", + "ThumbnailImage": "QhCcLdIsJE6qCUuMXJNKzA.png" + }, + { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,RDkLPQ8OukGIuLgTwnyqfw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skateboard on Back (Vaporwave) ", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2233, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:35:25.367Z", + "ThumbnailImage": "IVFZ9-hSgUC7-LCqkg6e_Q.png" + }, + { + "AvatarItemDesc": "162a3442-e6d0-4895-be09-40d78af16dc8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drumstick Glove", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2735, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:40.347Z", + "ThumbnailImage": "J_F4me5Ad06VJ52Xr7npMw.png" + }, + { + "AvatarItemDesc": "1631eb78-6718-478c-9b62-abbb0537e09c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jester Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1666, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-03T18:59:30.837Z", + "ThumbnailImage": "elfjxtuklom8p26dxh4behbx3.png" + }, + { + "AvatarItemDesc": "1631eb78-6718-478c-9b62-abbb0537e09c,9Yj55hS4gEOB34bggoRnzw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jester Hat (Mardi Gras)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2745, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:03.68Z", + "ThumbnailImage": "pRrGRfj8XE-CVSQQ4C_hmg.png" + }, + { + "AvatarItemDesc": "1633766e-fa77-48f3-8c6c-a233e56bf320,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gladiator Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1846, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-13T16:23:54.083Z", + "ThumbnailImage": "azdd85r2w7xl4v8s9ahpnhll3.png" + }, + { + "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mermaid Crown", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1466, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-17T20:43:44.783Z", + "ThumbnailImage": "7vpmmt96jkto0ifnjtv9nwy2a.png" + }, + { + "AvatarItemDesc": "16707919-756d-45ae-95fc-cfb6715b8ae6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Helm", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1547, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-14T18:28:04.283Z", + "ThumbnailImage": "cl2yzoi5qm9yxxli0m8dx34ey.png" + }, + { + "AvatarItemDesc": "16f4dc71-d35a-4269-b925-1a0cd85a43dd,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Werewolf Shirt", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 1519, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-30T18:20:58.077Z", + "ThumbnailImage": "abqsaidncml8v5e6w3cus33fc.png" + }, + { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Singlet (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1159, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:50.27Z", + "ThumbnailImage": "daw2bnn661kjxraiwzbj4o13s.png" + }, + { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,3frH6KxZ9kGUYkjeCDpylQ,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Singlet (Green)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1155, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:36.323Z", + "ThumbnailImage": "0tpxkoq49mfgt3w5y2vsjnqdm.png" + }, + { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,6t2rCb6WWEW6pJbcjsAFCw,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Singlet (Fuchsia)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1158, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:46.42Z", + "ThumbnailImage": "0q2tmuvx7l3fxuhgiq8vaftru.png" + }, + { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,i1XbjBqTu0CILIuJClWimA,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Singlet (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1156, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:40.35Z", + "ThumbnailImage": "9jul59tnxdwa6w6bjib681az8.png" + }, + { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,Lf4FjROSAEqXedFxpXFQfg,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Singlet (Red)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1154, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:32.82Z", + "ThumbnailImage": "92q8bqs03d33p72ljcvn79lpe.png" + }, + { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,zu0Jk24WTkan6XWSwGU1Uw,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Singlet (Blue)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1157, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:43.507Z", + "ThumbnailImage": "4u9h5rvuhapi02hegh14s9zet.png" + }, + { + "AvatarItemDesc": "1736a60b-6fb6-49bd-948a-fd3f3fc1be50,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Visor (Neutron)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1235, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:22.547Z", + "ThumbnailImage": "4eqc3t4t4z5gnf92sqf844nea.png" + }, + { + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Artist Beret (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 358, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:26:56.7Z", + "ThumbnailImage": "buiszvrl96xas7c9f7b7i84ia.png" + }, + { + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,14b43bf9-5ba0-484e-ae5d-55cfeb09a70d,3485a30d-27f8-450b-b5aa-1ff3cd227d19,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Artist Beret (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 428, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:39:55.43Z", + "ThumbnailImage": "c8eo8kzis4cfksqzadwx60q7a.png" + }, + { + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,5c8f36c5-07da-49f4-af02-d23207a43216,3485a30d-27f8-450b-b5aa-1ff3cd227d19,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Artist Beret (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 429, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:39:56.447Z", + "ThumbnailImage": "er774snrrar0qxts7cl1d2zb0.png" + }, + { + "AvatarItemDesc": "17e64798-f6ca-47b9-84ed-0c83b8678056,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Karate Gi", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2187, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:12.037Z", + "ThumbnailImage": "wsQ3uMHglEWj0o4orNrwvg.png" + }, + { + "AvatarItemDesc": "17f275d7-c5b1-4a0c-857f-8fb7a5d7c57a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Apocalypse Helmet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1802, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:11:49.917Z", + "ThumbnailImage": "5dszhnzwez2lmqbracuxzqjsf.png" + }, + { + "AvatarItemDesc": "184368a6-17fa-4cfd-bb57-a2862f6e17bd,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yeti Wrists", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2053, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:53.107Z", + "ThumbnailImage": "UHgH78a4iEmYmvBe9cKI7w.png" + }, + { + "AvatarItemDesc": "187569d3-23b4-4118-862a-ace7f50fec45,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rammy Floatie", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2190, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:21.723Z", + "ThumbnailImage": "dOpBUgepYk6c0zUHhvZxfw.png" + }, + { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbershop Shirt (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 387, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T20:28:59.283Z", + "ThumbnailImage": "224pkbmy07eojqcchbf4djy4z.png" + }, + { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,a5925738-a451-4f25-b622-ccbfa12bd88c,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbershop Shirt (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 414, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T00:16:22.253Z", + "ThumbnailImage": "93dtf3uavctg3si13zdcnelxe.png" + }, + { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,c64ac7a9-7fd4-4587-8626-0413a190b706,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbershop Shirt (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 415, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T00:16:23.487Z", + "ThumbnailImage": "cw4kg51jcq1ugso9kcmngkt04.png" + }, + { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flapper Headband (Silver)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 586, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-14T01:07:49.16Z", + "ThumbnailImage": "2q0dg92w8rd2uzk57ib0y1cj0.png" + }, + { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,565c17e0-496d-45bd-a2c3-564e118c06cc,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flapper Headband (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 624, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:41.39Z", + "ThumbnailImage": "e7tt4jrd0jwhdkeastwunm8bb.png" + }, + { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flapper Headband (Gold)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 625, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:43.967Z", + "ThumbnailImage": "1uukseprpubic1ed6c0zapb86.png" + }, + { + "AvatarItemDesc": "193a3bf9-abc0-4d78-8d63-92046908b1c5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Emo Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 991, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:06.46Z", + "ThumbnailImage": "60usmea9f77xjypmnvoptbc9g.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Untucked Tee", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2116, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-23T23:49:28.947Z", + "ThumbnailImage": "rgbXleaBw0Wb9fZ3vTUtbA.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,_aQEMQzp20eMT_Izfc64wA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Retro Cassette Tee", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2687, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-12T21:02:07.49Z", + "ThumbnailImage": "VT-6wtBaC0Gs78iXxiZS1A.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,42YaouiGVEe3zSjTsvyfoA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Rocks Tee (Clinton Kane)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2765, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-30T17:21:22.113Z", + "ThumbnailImage": "XEh7w_iBSEWOPDJHeE18nA.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,Eh1jgOjxpE-AEModcPAFMg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jazz Fluence T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2688, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-12T21:02:11.423Z", + "ThumbnailImage": "ZOvGH1iQ_kqzVB8EkYBpeQ.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,fzQzxcpDNEW8Rx122zmjAw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Rocks Tee (Charlie Curtis-Beard)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2814, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:06:09.027Z", + "ThumbnailImage": "WtNLFBwRdEqYa6RZtR82Lw.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,g_f9bH8tykGq3yRwWuQPOA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "KREQ Shirt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2297, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-10T15:40:52.627Z", + "ThumbnailImage": "dH9FOddSYkSjUWt2Ux_kSA.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,GU267AQ5T0m1jco3mNw_uw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Maker Pen Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2240, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-14T16:33:30.353Z", + "ThumbnailImage": "LvZbawPbAEWmg5aVGi-M_Q.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,hbF6ChMyEk-L8O4f6o_l6A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sports Fan Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2170, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:53.127Z", + "ThumbnailImage": "f4svRkfHhE-6a9L_W0YSwg.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,hZvsroTOnU6ew9HBWaqxHg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Rocks Shirt (2023)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2686, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-12T21:02:04.213Z", + "ThumbnailImage": "0UwHPWuWWEacVUf3ynSV8g.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,JpaGA1tG6U-VLsHH_vklzA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fourth Friday Tee", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2843, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:31:05.52Z", + "ThumbnailImage": "XapimDoowkSNnhZVot3imA.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,mzu-a8fcsUCW591ENABAgg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Rocks Tee (Haven)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2744, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:58.223Z", + "ThumbnailImage": "UDBwvAX1qUWFKJmxqFGxzw.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,ppH8miE39kGaSuACQv34WA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "RECDLC Shirt", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2689, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-12T21:02:17.7Z", + "ThumbnailImage": "2_H41S2JX0a9J5AqYS7boQ.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,QQVh8FdTakO26iOFdzGoBQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Rocks Tee (Akintoye)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2764, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-30T17:21:18.94Z", + "ThumbnailImage": "U0QKGodCxUOP2Vvs0UCeKQ.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,rQaQALql2E-zdM8072gfCg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Prom T-Shirt", + "Tooltip": "Rocked out at Rec Room's Prom!", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2169, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:50.943Z", + "ThumbnailImage": "LA32UPI01kqXUcm7xSrlmw.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,S_dLd3dzvk2hM6ZA2DKTWg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tennis Ball Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2241, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-14T16:33:38.903Z", + "ThumbnailImage": "E9mf1x4jp0yyg72cw7s-OA.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,SV2UmeQDjEaMK_A2Q4tt3w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Royale Shirt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2298, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-10T15:40:56.087Z", + "ThumbnailImage": "VasCRGTf-E-zXE53kLLl1g.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,vjO5ctMe0UC8GN6p61IC4A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "MrBeast T-Shirt", + "Tooltip": "Mr Beast's shirt", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2117, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-23T23:49:30.973Z", + "ThumbnailImage": "CF81YKO-nUGbzKI3slBEtg.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,V-vCW0ICl0Ke3QPAGo9GSg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bee Yourself Shirt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2296, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-10T15:40:49.13Z", + "ThumbnailImage": "pVwmecVkBEm37eRY3Jc_Qg.png" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,y78S5o6VXUGva1Wpd6sp3A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Creator Rewards Shirt", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2216, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:40.937Z", + "ThumbnailImage": "NkEwfQcQFUiQ_C-0VKPJhQ.png" + }, + { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Gloves (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 525, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:02:02.02Z", + "ThumbnailImage": "aifzs5jdida9x4pu9dc5p3lvb.png" + }, + { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,64545dcc-a8eb-4c69-a539-78ee73a2d327,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Gloves (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 526, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:02:04.34Z", + "ThumbnailImage": "8kbnanl6xae6f5zssdhow3qi6.png" + }, + { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Gloves (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 528, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:02:06.453Z", + "ThumbnailImage": "99lamaljd63j9ijdm4si9n6nz.png" + }, + { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,909ed249-ce09-4304-8b02-56794fa7567d,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Gloves (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 529, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:02:07.973Z", + "ThumbnailImage": "eiseqfjnni496s1qlbkfv63gw.png" + }, + { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,aBQ3R9boek-mYeSYSNvDbQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Gloves (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1319, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:06:57.837Z", + "ThumbnailImage": "ao77s83vraqs2p4xiwkoxdk8o.png" + }, + { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,e02838f8-4029-455a-b35c-dd40f972b05b,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Gloves (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 527, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:02:05.433Z", + "ThumbnailImage": "71i7ci2n620of8lk3jxy8p0xl.png" + }, + { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,Tbrc2MlSlE6mKua8qSoluQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Gloves (Leather)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1107, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:56.237Z", + "ThumbnailImage": "4baeboc0ifrxpbd0ko0ohkilh.png" + }, + { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Gal Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1468, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-24T21:34:11.313Z", + "ThumbnailImage": "ainuo5affylw7gah48hs640la.png" + }, + { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,_C4RxcDBQE-mHh2oyL9vGw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Gal Armor (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2101, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:10.56Z", + "ThumbnailImage": "P8mS2NTJS0e0H0VqDKvZUA.png" + }, + { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,bhYZTPD1nEaEercLIZRucw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Gal Armor (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2100, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:08.36Z", + "ThumbnailImage": "wBjDMVQgx0uxNDVdCLu4qQ.png" + }, + { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,zw-evwOmg0q14P040EYYiA,a3I7EyRNVUilLfE6hriYtw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Gal Armor (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2012, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-20T01:07:24.04Z", + "ThumbnailImage": "diaifnoquzrh4x2mmkz1mf8zh.png" + }, + { + "AvatarItemDesc": "19984948-b6b9-4d3b-8562-d0624930df6e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alloy Armor (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2005, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-20T01:06:12.19Z", + "ThumbnailImage": "ews3jw7aorj2ii9jvvnd7rr81.png" + }, + { + "AvatarItemDesc": "19984948-b6b9-4d3b-8562-d0624930df6e,Owi_JROR80-apNHw-4KNcg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alloy Armor (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2099, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:05.137Z", + "ThumbnailImage": "o9dqbqFcv0SWG6AF4UzpWA.png" + }, + { + "AvatarItemDesc": "19d83cda-692f-4ec1-8da0-15211f3a0c34,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousHawkMoth_Shirt) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1998, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:17.203Z", + "ThumbnailImage": "0swzhsru2itov2t18lj5ptr8y.png" + }, + { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Hat (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 3, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "a3yzsuscvgxw37qx4iplxyqvr.png" + }, + { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,5a614f97-ef7f-4b70-afff-9ed837a86407,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Hat (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 418, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:20.037Z", + "ThumbnailImage": "81kgcsyk5xpfnseux5kk365d6.png" + }, + { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,8053b5e5-0f67-4329-a45d-1ee9fc830820,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Hat (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 420, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:22.477Z", + "ThumbnailImage": "d4visb1djbytbo881ltks1hzo.png" + }, + { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,b444ed0a-eab5-4bd6-af34-d080de74a149,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Hat (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 419, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:21.5Z", + "ThumbnailImage": "06rlbrw6875digtc4y8c0l3i8.png" + }, + { + "AvatarItemDesc": "1a0319e4-24e7-40b3-9976-70bff2c7ff23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Banker Neck Tie", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2261, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:07.173Z", + "ThumbnailImage": "amQEmFoB-EK_ExgRPUaVoQ.png" + }, + { + "AvatarItemDesc": "1a71064b-794f-40fa-9109-8ad36602b6e1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shagg Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 95, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7taocf1uwgbysywpo7p7fmcsm.png" + }, + { + "AvatarItemDesc": "1a742ff9-c4f7-45d8-8e24-8f24aa021db2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Demon Horns", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1527, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T01:19:51.687Z", + "ThumbnailImage": "a2skv7f3dcpvd1rrpejoce5q8.png" + }, + { + "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Firefighter Jacket", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 180, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "573itausg418c5prdz6bv3dpo.png" + }, + { + "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,0x7a3hV5XUyzyf8cUuzVtQ,vYAcZMymO0m6bCNQIsI8rQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Firefighter Jacket (Tan)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2007, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-20T01:06:31.863Z", + "ThumbnailImage": "8gwu9vgybc4jmwudmwkep73uk.png" + }, + { + "AvatarItemDesc": "1bd891b1-6ec0-4227-9ed8-73c59af4f819,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cleric Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1893, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-26T19:21:25.687Z", + "ThumbnailImage": "6ugmcn0xr6htk34ah2hhep52p.png" + }, + { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Wrist Guard (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1164, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-28T06:02:29.02Z", + "ThumbnailImage": "435egcfj9uj17vp4n7ey9u4rv.png" + }, + { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,AC3zfm38JEyBZWuXDh4Ukg,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Wrist Guard (Purple)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1167, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-28T06:02:35.887Z", + "ThumbnailImage": "4poast86ikgyo8gx5xw0v6tl8.png" + }, + { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,dyEaPloE8kazWC7Zblv8uQ,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Wrist Guard (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1169, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-28T06:02:38.783Z", + "ThumbnailImage": "9ny1060mulzukvbnj8r8jsk77.png" + }, + { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,RfZNDPUok0WyQEa3Ko08ow,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Wrist Guard (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1168, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-28T06:02:37.173Z", + "ThumbnailImage": "3qn2bl4qw76u5zafxwim8hslp.png" + }, + { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,sX0ZZDcCUkyFSJISfvq0vg,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Wrist Guard (Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1165, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-28T06:02:32.527Z", + "ThumbnailImage": "bwo3vsz07ltq6bsv2c8bszrgs.png" + }, + { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,TnEDe1QoMUCUdqPL_7CxTA,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Wrist Guard (Lavender)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1166, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-28T06:02:34.323Z", + "ThumbnailImage": "aiygi6wtiasforjki3lnkg1ab.png" + }, + { + "AvatarItemDesc": "1c89e162-fbce-45e2-a158-6bf0c4f5e52b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Festive Antlers", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 2514, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:12.977Z", + "ThumbnailImage": "F2FsXvPi5UqyVCDKuPzs0Q.png" + }, + { + "AvatarItemDesc": "1c89e162-fbce-45e2-a158-6bf0c4f5e52b,1LtCxaCDjUmg62fYCjNUSQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Festive Antlers (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 2542, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:58:27.727Z", + "ThumbnailImage": "fNauUoIJ10uT7PJQCp9Agg.png" + }, + { + "AvatarItemDesc": "1d27b674-f9e2-4ffc-9d8c-a58a1be06457,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Afro Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": "", + "AvatarItemId": 986, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:15:49.417Z", + "ThumbnailImage": "47u2if3fx2rt8p4wj90qo988g.png" + }, + { + "AvatarItemDesc": "1db08f02-d559-40ea-9bae-dd11046694a7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Video Partner Headset", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2151, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-30T00:16:18.497Z", + "ThumbnailImage": "730oGQopMUGTrJNdUPTkeA.png" + }, + { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 42, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "73yfl2xb8qwuws91gzirri5dd.png" + }, + { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,0809a5cf-a0f3-4614-9f98-71518524518a,3290f148-1bd1-4ffd-a947-61fd0529af05,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow (SciFi)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 631, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:52.783Z", + "ThumbnailImage": "2d53cleqqzz1la8h0m130s58q.png" + }, + { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 630, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:51.627Z", + "ThumbnailImage": "8hxvd0blvnfweb21vtd3vyy7o.png" + }, + { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,c9589974-c261-485e-b571-cb2f34fb178f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 629, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:50.47Z", + "ThumbnailImage": "3suvedjn7frrhme4rxyn56qtt.png" + }, + { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Suit (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 709, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-06T19:33:50.8Z", + "ThumbnailImage": "67ho8qppd1uvf14zlw9l7bdmg.png" + }, + { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,1919d319-6cce-4500-8766-15fed6a13fa8,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Suit (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 699, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T19:45:50.677Z", + "ThumbnailImage": "2k4lcmck9k4oohw7zr54f80ke.png" + }, + { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,lBe3yxuE40eBmTrnEHBqQQ,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Suit (Purple)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 892, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:19.32Z", + "ThumbnailImage": "4if4tnkvzu35yc8tyran086ks.png" + }, + { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,oZ8k0Qv3SkG-DkY0_dP7UA,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Suit (Teal)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 891, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:17.877Z", + "ThumbnailImage": "bbjryyglvkoz6f7rpa627np9b.png" + }, + { + "AvatarItemDesc": "1fab9cd8-257e-4825-8b7d-bd8bd281d362,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Shovel (Invasion)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2371, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:26.323Z", + "ThumbnailImage": "ZImIysD_H0S8AXDFmb2-vw.png" + }, + { + "AvatarItemDesc": "1fab9cd8-257e-4825-8b7d-bd8bd281d362,q9hshPgwT0ijshnbKEBKWw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Shovel (Invasion 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2700, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:31.087Z", + "ThumbnailImage": "n4mGv9jTj0GUDOgF6nFXVA.png" + }, + { + "AvatarItemDesc": "1fcaf4fd-9012-407e-b691-fbc3ccf22421,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scarecrow Overalls", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1174, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:51:25.9Z", + "ThumbnailImage": "acu72xlzacl1k4mnepqsfd2td.png" + }, + { + "AvatarItemDesc": "1fcaf4fd-9012-407e-b691-fbc3ccf22421,S0AKRB_m2k-I7snHnUigtw,uTkbswCedUGyuZcaX0W6Ww,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scarecrow Overalls (Creators Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1175, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:51:31.083Z", + "ThumbnailImage": "9mad5t9bu3npfwut2s2mhtvkp.png" + }, + { + "AvatarItemDesc": "1fd69ef8-0b74-4962-af5a-67f0bf0358f2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ponytail Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 998, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:18.847Z", + "ThumbnailImage": "8k7za5lr83ybmyz1z2kx03poc.png" + }, + { + "AvatarItemDesc": "1fed823a-22bb-4225-bdc4-491da6eba875,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Apocalypse Gloves", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1807, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:12:25.963Z", + "ThumbnailImage": "duw3kiu7wtbc2uhma5er2l480.png" + }, + { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Server Apron (Red)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1339, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:05.17Z", + "ThumbnailImage": "drpze5r42trhdfe0kkmbirisr.png" + }, + { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,b7oobDcDtE-69fhM-5g5AQ,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Server Apron (Yellow)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1341, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:14.127Z", + "ThumbnailImage": "6k82rsbhcoow0xzix9ty8q06z.png" + }, + { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,Blev_VFjRUysY_nymGWAVg,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Server Apron (Green)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1342, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:18.63Z", + "ThumbnailImage": "3on8a1l5752ih0y8i5uu1zha8.png" + }, + { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,HdwZhjrqxE6wuf68MnDhDw,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Server Apron (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1340, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:09.803Z", + "ThumbnailImage": "9f3l01qhr5bcg8ed2l0i4d4wy.png" + }, + { + "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bog Monster Hood", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1338, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:59.613Z", + "ThumbnailImage": "5g3kf0itlpuocmwiedgwzxbrn.png" + }, + { + "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,afnIqin4lkKKqWrvBvVagA,bCuW1YadE06p6v1dBHsx4w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bog Monster Hood (Movie Magic Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1654, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:56:50.46Z", + "ThumbnailImage": "9uu4lgs1wp05xxg31w3ixcj1t.png" + }, + { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Animal Sweater (Ferret) ", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1658, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:57:38.493Z", + "ThumbnailImage": "2i9990m2ddrxscxf3csgnpkm5.png" + }, + { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,0wRS4Rs4ykqjJE_5Fk-Flg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Friendship Sweater (Oliver Otter)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2749, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:18.567Z", + "ThumbnailImage": "Q5OR2v7ST0mft6WFh5KyAg.png" + }, + { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,6dzz5ZcGtE6bEjQHxWmo0A,2cSC290cPkCOrW5vtlVUxw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Animal Sweater (Penguin)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1795, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-17T16:05:19.327Z", + "ThumbnailImage": "diqbk46zibrfi814wmivw7o97.png" + }, + { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,azbt5pgvrUS4LQwhndFeJg,cHZ4lDnSoUypIXCiRRowzg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Animal Sweater (Axolotl)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1659, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:57:46.297Z", + "ThumbnailImage": "4say0eirgh8p9gunfvf23skx6.png" + }, + { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,oIVUmOrjjUysnN4XoWvJSA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Friendship Sweater (Olivia Otter)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2748, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:14.76Z", + "ThumbnailImage": "wI9h7dAeEUOvsa1ogCNjiw.png" + }, + { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,qzvnj7D1tUuf01HvpiIvqw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweater (Cow Face)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2402, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:02:43.39Z", + "ThumbnailImage": "92nW2XOGOE2VbuJ1_fV_2A.png" + }, + { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,yXVeN9SzQUKE_6u_2KPzgw,sWgRczvpUU6ZHeoMrMD_yw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Animal Sweater (Toucan)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1796, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-17T16:05:21.943Z", + "ThumbnailImage": "1viyefngw9h64p6bq76mhiaym.png" + }, + { + "AvatarItemDesc": "21599b51-c50f-43d8-ac5f-62c30cd02ca5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lori Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 994, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:13.747Z", + "ThumbnailImage": "dmg8ywtfbzy57cutb6j4h3vjh.png" + }, + { + "AvatarItemDesc": "21caa68e-c3fa-474c-af5e-af1e742b7a60,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tennis Skirt (Blue)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1021, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:51.037Z", + "ThumbnailImage": "4hlua7fbqw8nlu7f4buxxbjgy.png" + }, + { + "AvatarItemDesc": "21caa68e-c3fa-474c-af5e-af1e742b7a60,758752bd-db2f-43d2-b580-55b3e1efffd5,b75ef67d-00c3-4ac1-9b72-212032460294,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tennis Skirt (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 682, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:50.783Z", + "ThumbnailImage": "bjhjw79pvyn169f35rgbnyhqa.png" + }, + { + "AvatarItemDesc": "21caa68e-c3fa-474c-af5e-af1e742b7a60,c5deba2a-6e35-4b13-8e94-8ba5457f39df,b75ef67d-00c3-4ac1-9b72-212032460294,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tennis Skirt (Yellow)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 681, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:48.617Z", + "ThumbnailImage": "aqlcnxazbwcmfgx7cp4mpgqpy.png" + }, + { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zipper Dress (Yellow)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1022, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:52.317Z", + "ThumbnailImage": "c45s37acw47y54ey191vc8g64.png" + }, + { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,6d703981-2734-4c45-8983-cdd5f328902f,cfabdefe-0890-436e-b2a3-b5c712e22955,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zipper Dress (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 255, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "8aayhgqe518c46fqbtd1x55jk.png" + }, + { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,830be2fa-60a5-48cc-931f-34b670eae4bd,cfabdefe-0890-436e-b2a3-b5c712e22955,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zipper Dress (Purple)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 254, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6ih1uyez4f5apbi0u4n5szfns.png" + }, + { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,bbfa08e3-8e6b-4e0f-b264-1b398d7cd44a,cfabdefe-0890-436e-b2a3-b5c712e22955,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zipper Dress (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 253, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "b119rnoqjo60vhf5wcwc9my42.png" + }, + { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Halo (Turquoise)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2345, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:27.563Z", + "ThumbnailImage": "j8rw1jLEy0qFDD5N24UOaw.png" + }, + { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,0p_eXn2gXUKrshSEmrQx6Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Halo (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2350, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:36.313Z", + "ThumbnailImage": "kHKrIJ-sKU-U7fZBCFu4rg.png" + }, + { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,3cPbhpDX-EqDQy6eN1E5Ug", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Halo (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2346, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:29.313Z", + "ThumbnailImage": "e0Y4CS-9IU2km0B3jwPCtg.png" + }, + { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,fAmEEm6ziUO2ZXTscQWtSg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Halo (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2351, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:38.103Z", + "ThumbnailImage": "rcFCLdci0EKcU2Y-zY7EuQ.png" + }, + { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,gEuE-X67b0-q5C0Tv11_nA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Halo (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2348, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:32.937Z", + "ThumbnailImage": "9ftPEgJCtkmrO_fAsxmXxw.png" + }, + { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,gk_mQ-jsakmxhZYYNlRl_w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Halo (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2349, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:34.663Z", + "ThumbnailImage": "UD9QOouEvE2Msgsa8r4Qng.png" + }, + { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,iCVglqDJrkKB36za9UiUxg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Halo (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2347, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:31.213Z", + "ThumbnailImage": "VH7wAcdrW0aDxhWBl3qs3Q.png" + }, + { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Bracers (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 533, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T20:48:13.533Z", + "ThumbnailImage": "42c0usoynxjhmimj6coo11rd3.png" + }, + { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,357eb160-360b-4a63-840d-65d11cc8ffc2,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Bracers (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 542, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:09.057Z", + "ThumbnailImage": "4kheccxh9b10611a6leuimejf.png" + }, + { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Bracers (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 545, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:11.85Z", + "ThumbnailImage": "cz0n5qaa95cagk71hmmypg87q.png" + }, + { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,a38254c0-00e3-429b-9d5d-b9e6a9812e69,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Bracers (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 543, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:09.97Z", + "ThumbnailImage": "ejoni0f6t3kbisv094qlswolb.png" + }, + { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3a9b576-5433-4305-bd96-b08820c09212,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Bracers (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 544, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:10.877Z", + "ThumbnailImage": "e4s49nshq56cwk2ptse4evh4p.png" + }, + { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3KmqVuMQkCYK6sVTMOTOA,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Bracers (Purple)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1320, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:07:16.283Z", + "ThumbnailImage": "0vwlyjwom9p9ef29kfe7nowjz.png" + }, + { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,RKmRHk2N_U2gd91nybo6vg,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Bracers (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1108, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:58.363Z", + "ThumbnailImage": "1n7pr3zdkb6nskzxhpvouxscx.png" + }, + { + "AvatarItemDesc": "22pyI3Kz-UullhcebC6DLQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snorkel", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1063, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:25.297Z", + "ThumbnailImage": "5bzqn0b3ouxa0kemvmre0a06k.png" + }, + { + "AvatarItemDesc": "23767c66-31de-4e6f-81f5-b17769a0fd5b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Neighborly Cardigan ", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1901, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-08T21:13:49.75Z", + "ThumbnailImage": "a6631bxfoa0zyvs7fxyzubtji.png" + }, + { + "AvatarItemDesc": "23944856-b567-4075-815f-261cb4655cff,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Apocalypse Jacket", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1808, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:12:29.707Z", + "ThumbnailImage": "1dqdlvwys8ok8v51xsyvdtnxs.png" + }, + { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Backsword (Leathered Iron)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1762, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-12T21:10:22.463Z", + "ThumbnailImage": "58mihxk3jk5j3t6ag197iz7x8.png" + }, + { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,GfC01_o8QkGTbnGNjv_DSw,7mLb5jMJMUug7Nzwxv6D4A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Backsword (Wolf Steel)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1886, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-12T17:06:16.05Z", + "ThumbnailImage": "8him9qwzellzbybe456axlevp.png" + }, + { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,rFCKF2ku1UWj-TF-VClPRg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Backsword (Cricket)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2114, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-23T23:49:23.943Z", + "ThumbnailImage": "u0lK1AO41UOMSqQHLjVEEw.png" + }, + { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,zld80uf3y0uu__Yejms-3Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Backsword (Galaxy)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2441, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:15.613Z", + "ThumbnailImage": "45ZUSM5vSES1q6qkk-rkFQ.png" + }, + { + "AvatarItemDesc": "241506f6-bf88-4b46-b5fe-513a225421f4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Half Up Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 417, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T00:30:04.203Z", + "ThumbnailImage": "3w6yoi9bpa2pl8w7wab8zwodb.png" + }, + { + "AvatarItemDesc": "24781418-38ad-411f-925e-2321fe616b51,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rain Cloud Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2928, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:16:03.14Z", + "ThumbnailImage": "ZZVGN49VWEOBaIP-aV-9gQ.png" + }, + { + "AvatarItemDesc": "24a240f4-1574-420b-b898-a7e91f170759,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Back Bun Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 582, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-08T00:39:09.067Z", + "ThumbnailImage": "7a6q8lttqfwygyoo0xob5drc6.png" + }, + { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Hat (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 590, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-01-10T20:32:56.67Z", + "ThumbnailImage": "byuimkku1xbrkury4h0dloo3g.png" + }, + { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,09Cg6dOq2kC2-tI5yyGSYg,YFZimVHKuk--lXS8RCrZTA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Hat (Snowman)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1596, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-23T22:21:29.873Z", + "ThumbnailImage": "d2wg3243jobc3bipqut3250ii.png" + }, + { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,3UxfTkPsEkezOXO__wz_mg,nalaCGqtL0SFA4Itwqmp8g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Hat (Vermont)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1669, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:04:21.05Z", + "ThumbnailImage": "aqnqkk7wewefq5ptgg8ky4ll8.png" + }, + { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,6vjA_vHq70Gclypll_GS_A,nalaCGqtL0SFA4Itwqmp8g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Hat (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 951, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-10T23:52:17.21Z", + "ThumbnailImage": "7c8t5ha57jkfu3nt2csays2c9.png" + }, + { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,mraJrTA4V0eARb_Kq7yYVw,NH0L99bd00OVKMyltuSnHQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Hat (Pine)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1224, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:34:35.883Z", + "ThumbnailImage": "6ujv4qof9f4vkfnmm5zhc3yqp.png" + }, + { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,u1JNHHTxSU-N53Bs9pRCoQ,0zHD3DaMAUOogqOqyd59SQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Hat (Ugly Ham)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1945, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-16T22:16:24.56Z", + "ThumbnailImage": "dq0ld9pvcoy11h7778869v6w4.png" + }, + { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,w7ybaJQVo0WCZFDPCJAtWw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Hat (Reindeer)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2677, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-05T20:28:21.66Z", + "ThumbnailImage": "ogsxq40HrUGm_XGRT-bDrA.png" + }, + { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,xVwzV9-m6E-8PVpkg4D-AQ,NH0L99bd00OVKMyltuSnHQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Hat (Frost)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1223, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:34:30.643Z", + "ThumbnailImage": "5h97nfxudddfga6xddftkdv7n.png" + }, + { + "AvatarItemDesc": "24d94673-f394-42e6-a3c8-276f8b8aa722,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Sensors (Pink)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 574, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:34.773Z", + "ThumbnailImage": "0mhwz2ogugpedmv34mtp8p649.png" + }, + { + "AvatarItemDesc": "24d94673-f394-42e6-a3c8-276f8b8aa722,08b7c12d-3317-4d27-9b40-34737a709454,959ed05b-0215-4bbe-bb3d-64e4448d676b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Sensors (Blue)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 575, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:35.903Z", + "ThumbnailImage": "1gwx6x19onp32q7iolw1hdeck.png" + }, + { + "AvatarItemDesc": "24d94673-f394-42e6-a3c8-276f8b8aa722,2Z_FxSPiyUODtlFZWF9DFQ,959ed05b-0215-4bbe-bb3d-64e4448d676b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Sensors (Teal)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 743, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-04T20:05:17.087Z", + "ThumbnailImage": "2mtxs666msasqmqw57iol4efk.png" + }, + { + "AvatarItemDesc": "24d94673-f394-42e6-a3c8-276f8b8aa722,jkuw9EhCpEKn-2lKJXWd3Q,959ed05b-0215-4bbe-bb3d-64e4448d676b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Sensors (Orange)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 742, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-04T20:05:11.49Z", + "ThumbnailImage": "4b2c3lu6x2lix8wwu23es1z9t.png" + }, + { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nightcap (Zonked)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1413, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:45:09.143Z", + "ThumbnailImage": "09zvd3ohdxjul97glak50v2zt.png" + }, + { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,2vawoQvJPUegnClmr2RNAQ,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nightcap (Zzz)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1414, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:45:10.537Z", + "ThumbnailImage": "5oixy16bep4bh46cp4ma645d0.png" + }, + { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,kIcd-yEnsEqxoeogquvmRw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nightcap (Dozy)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1415, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:45:12.117Z", + "ThumbnailImage": "7wpy1gh40rv5ibcltdnowpd05.png" + }, + { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,qHyKfCsrbUqSWomjLXf7Hw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nightcap (Sandman)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1416, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:45:14.067Z", + "ThumbnailImage": "0415gb7q368nr2qadddcg1i0k.png" + }, + { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,ZvUwd0aVfk6SjA7oyouXUQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Starry Night Cap", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2064, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:16.59Z", + "ThumbnailImage": "g4VIHBisj0-q7bWIQ6IMfA.png" + }, + { + "AvatarItemDesc": "2565d597-9d17-4c47-a66f-b683583f0cf8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Bunny)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2106, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:19.58Z", + "ThumbnailImage": "LHx48xU5E0OkqfpqJBes6A.png" + }, + { + "AvatarItemDesc": "25769d1f-4ecb-4d92-b692-322b38c013b5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Martial Arts Gi (Strength) ", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1571, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:37:33.507Z", + "ThumbnailImage": "89it9c90iy4bi8otctbxs4kl0.png" + }, + { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Vest (Brown)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 310, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "16fi077y627ijhrcmqr0t298e.png" + }, + { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,002b07bb-4256-44ce-8ca4-25510e70b6b5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Vest (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 334, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-20T18:24:56.927Z", + "ThumbnailImage": "ed58vssma43zkdcb28nce7hhe.png" + }, + { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Vest (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 314, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "c02xchxpap45jxgdksgsouq6h.png" + }, + { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,90869e86-cbc5-4024-9d08-fcdc41c64eb5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Vest (Grey)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 313, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "5iogm3iyqg7sp05x3hgihphdy.png" + }, + { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,bzYdPb8GWUS-CgT4wrziIA,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Shirt (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1110, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:09.277Z", + "ThumbnailImage": "2ce642u8nppm5zamly1hq59fs.png" + }, + { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,e821aa74-2d47-4388-bcfb-1893b8a83a52,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Vest (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 311, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "8zkofpgk5o77fd65ks8x95cxv.png" + }, + { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Vest (Cherry)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 312, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "3seplqtowg3fi113bsetxytpu.png" + }, + { + "AvatarItemDesc": "25e76b00-4c56-4259-968f-046c14fb36fd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Earrings (Musical Note)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2760, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-30T17:21:06.417Z", + "ThumbnailImage": "70axtgsjoojk0df4289594v6q.png" + }, + { + "AvatarItemDesc": "26b8c05a-e960-4039-9e50-4e27befaa44c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousLadyBug_Shirt) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1992, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:43:56.903Z", + "ThumbnailImage": "ddhkud4mfi72rzypwa7k6q892.png" + }, + { + "AvatarItemDesc": "26f5e849-14b3-4cb3-ab92-673c94b37c51,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Demon Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1526, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T01:19:48.1Z", + "ThumbnailImage": "6fwxedm1vpp6m7vdyj1mjush3.png" + }, + { + "AvatarItemDesc": "26f5e849-14b3-4cb3-ab92-673c94b37c51,CwObTyhghkWonhm5nTnAaw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flying Machine Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2179, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:35.277Z", + "ThumbnailImage": "ZrqDYptat0GjjSq9O6O2TQ.png" + }, + { + "AvatarItemDesc": "274cb9b2-2f59-47ea-9a8d-a5b656d148c6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Saija Helmet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 65, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "98wzkbq0ttvls6my69cezxa1o.png" + }, + { + "AvatarItemDesc": "2786fc22-3d6c-440d-afcc-15890c061577,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bee Antenna", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1187, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:52.543Z", + "ThumbnailImage": "2ubi3qjigszacxmdn65q4d2nj.png" + }, + { + "AvatarItemDesc": "2786fc22-3d6c-440d-afcc-15890c061577,dXz9B9OH2UuLNV35u8KB-A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ladybug Headband", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2775, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:31.85Z", + "ThumbnailImage": "TgcLGc1A7UK1C6_N3Au8WA.png" + }, + { + "AvatarItemDesc": "27c2eb7f-9fac-4c42-90c7-44e7a33d5303,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Wings (The Blue One)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1363, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-17T19:30:31.28Z", + "ThumbnailImage": "4mbd5lxxwtmjvp5enggelazu8.png" + }, + { + "AvatarItemDesc": "27cdecd2-88f1-40a8-80a9-87abd827c3c5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Beard", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 531, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T20:48:11.04Z", + "ThumbnailImage": "633t2xbzngvd2f2x91gj77qth.png" + }, + { + "AvatarItemDesc": "27e742bf-3081-4274-ba70-301f0edeb4f1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Doctor's Coat", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 224, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2chr298lunemuuurc2ka18725.png" + }, + { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Towel Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1798, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-17T16:05:29.8Z", + "ThumbnailImage": "9cqrtp4vgci8mnuccke5s2itk.png" + }, + { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,GAzH2pThjECghCmCwKJPrQ,4T-xj-xtSEiv1PDYv30URg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "The Defenders Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2014, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:40:36.13Z", + "ThumbnailImage": "2IWuPA8HGU6KrdC4ohARXQ.png" + }, + { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,Hae8Pfe8mEWeF8mL9hC9dw,Vat8nL4ZBEK9mLABJiXS6A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "The Amazings Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2016, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:40:40.127Z", + "ThumbnailImage": "HTVSEzDsKUSnkvdGvplfvg.png" + }, + { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,kE9vr2bKoUSFm7AkcXSmew,5o-249dUdUOhW28lrJY82A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Valor Society Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2015, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:40:37.797Z", + "ThumbnailImage": "S0ChF4sn40ewzPHkvLcNGA.png" + }, + { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,pEWioft3gkOMWS4tZFping,gOw6NOX-QUegt4mxjtfpfA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Masterminds Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2013, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:40:34.047Z", + "ThumbnailImage": "avkdszecpez6tb8kq3563bp59.png" + }, + { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,SN8HDRADZ0GvrFgEHKMhWQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Towel Cape (Rainbow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2181, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:39.193Z", + "ThumbnailImage": "pyxx1jg0F0qzsZMmUcX81w.png" + }, + { + "AvatarItemDesc": "2822aa50-4344-434d-b46f-fd9443f865b9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Curly Bob Hair ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1981, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:20.473Z", + "ThumbnailImage": "e9zj12umhuny6tnh1cdk7tu47.png" + }, + { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Wristbands (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 376, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:15.98Z", + "ThumbnailImage": "4d1njsjeb0jzje2jyt4qwnpjf.png" + }, + { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,a6796264-9c7e-4605-830c-06db8d0dc780,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Wristbands (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 377, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:16.94Z", + "ThumbnailImage": "1px8h9mdfc4sqsqsgszmxrx0h.png" + }, + { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,baffdefe-de21-4551-9330-b50873965bdd,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Wristbands (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 394, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T21:30:01.813Z", + "ThumbnailImage": "0kiv90a8q8p0qlzhtvo821u6h.png" + }, + { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,f3b2330a-b981-4c7e-902f-1f57382f2388,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Wristbands (Pink)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 378, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:17.86Z", + "ThumbnailImage": "8b0gvz7zqfujt7dgbozqj2clf.png" + }, + { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frantic Rabbit Vest (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2428, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:34.867Z", + "ThumbnailImage": "YAStiIqV1kOk0QSNHUcb4w.png" + }, + { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,AcLApWMhAU6tK10O7KoOog", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frantic Rabbit Vest (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2429, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:37.91Z", + "ThumbnailImage": "PKZOkAkm-EK4joFEnKiyWg.png" + }, + { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,dhJm0moskU6urIwG1TXs_A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frantic Rabbit Vest (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2430, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:41.207Z", + "ThumbnailImage": "SsUBkL6SS0OyRRh-yZ886g.png" + }, + { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,J8z15LYBak6jHu3ZaaKAXw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frantic Rabbit Vest (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2431, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:44.253Z", + "ThumbnailImage": "mjpFdsz4lkijguGsysSzgQ.png" + }, + { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,QSXXWZrS6UaoAUn3u7hXFw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Frantic Rabbit Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2432, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:49.033Z", + "ThumbnailImage": "dTQ_d68ca0Ct3Gh71yHo4Q.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Mask (White Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1182, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:30.173Z", + "ThumbnailImage": "21qmin6ucgfg45pvh611izmvq.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,7BrllPDzNEyD9UZgdgM1Dw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Mask (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2305, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:52.033Z", + "ThumbnailImage": "4Sc2MIKVHkWz1i42WTaUvA.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,DJnKyNXtuEW1tbKBFscIng,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Mask (Pink Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1534, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T23:55:38.15Z", + "ThumbnailImage": "02lomjpecz0msvhsrrykghrca.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,FO32QjZ17E66PiSEDyf0xA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Mask (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2307, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:56.807Z", + "ThumbnailImage": "Z6ugLoGUCEiPuvn_pWpROA.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,Ftonil9tzEWQnmRQuTxwxQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Mask (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2306, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:54.353Z", + "ThumbnailImage": "LKhhC901_Ei4OyKUfa82Hg.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,jhPUIkf5bkinMSsqPTK3fg,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Mask (Yellow Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1536, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T23:55:43.833Z", + "ThumbnailImage": "23626wp454o5pqka9wlihhylb.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,kHPSqeM7JUqzMDtVxBGyBg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Mask (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2304, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:49.617Z", + "ThumbnailImage": "i_i6gp2yhEyV8tCehNVavg.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,rv8cpfd8kUCK5NbwjNmExg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Mask (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2303, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:47.08Z", + "ThumbnailImage": "KlT8BALxYUisE34P3vbNZg.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,s6DQxJ3gY0CG8L7JmcmRTQ,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Mask", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1183, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:33.773Z", + "ThumbnailImage": "08urzyypklh9ip5h98tczkuaj.png" + }, + { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,ZY0rVNemjEuEMGMjuPNZyA,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Mask (Blue Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1535, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T23:55:40.967Z", + "ThumbnailImage": "965z4xrxm4jg3xkv7a7vkdam0.png" + }, + { + "AvatarItemDesc": "28f00eee-d3d1-4cac-ac70-fca064fcbaf0,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "He-Man Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2577, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:34.597Z", + "ThumbnailImage": "KeJx2mtu3UWduFaoj3_lzQ.png" + }, + { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Helmet (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 39, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "e9shr5go0vsw8gb8dght6710s.png" + }, + { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Helmet (Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 984, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:15:44.043Z", + "ThumbnailImage": "6at7h1u119kqoj0j8z06fflxl.png" + }, + { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Helmet (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 985, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:15:46.463Z", + "ThumbnailImage": "ampb4pvmmtdhc5913do72skwc.png" + }, + { + "AvatarItemDesc": "2a61c844-81c6-4f82-9c75-66cf308ed4e1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowgirl Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2254, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-06T16:31:38.723Z", + "ThumbnailImage": "d837uciWekyImW4Ny0wliQ.png" + }, + { + "AvatarItemDesc": "2af73868-b619-43f7-9b7a-37a8fe2502bf,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Edgy Earrings (Spiked)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2719, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:13:58.487Z", + "ThumbnailImage": "02dj9jh2t6iwcatksesgdp9v5.png" + }, + { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Headband (Pink)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 22, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "20q0kpiy9pbsmzz8qgeyhz0kt.png" + }, + { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,827a1538-51bb-4fef-99c1-7f1bebd9866c,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Headband (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 480, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:34:50.713Z", + "ThumbnailImage": "c1g1jmqtrkrhxhm8c2puubehx.png" + }, + { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,c5884778-a87f-4612-9717-86fbb65d440f,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Headband (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 479, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:34:47.563Z", + "ThumbnailImage": "548zksu11edcwj6jg6aoag1s7.png" + }, + { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,rZOgFhv59UKssAH7k-UDyQ,eVl7mLA1VkmnR81YLF-ZNg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Crown", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1875, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:39.017Z", + "ThumbnailImage": "bmw4n7qs969ehy3whhp8d7x2q.png" + }, + { + "AvatarItemDesc": "2b325613-84c1-46d8-86b4-a167d79661da,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sports Scarf (Buckateers)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2203, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-05T16:53:05.683Z", + "ThumbnailImage": "-yUmlgdAekKg0XMSaP8K7g.png" + }, + { + "AvatarItemDesc": "2b325613-84c1-46d8-86b4-a167d79661da,ggpNxFtZMEaHlvWXsDl9Tw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sports Scarf (Goblins)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2204, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-05T16:53:09.08Z", + "ThumbnailImage": "bnXH-F2F6EG-wTVhwSmaaA.png" + }, + { + "AvatarItemDesc": "2b325613-84c1-46d8-86b4-a167d79661da,Jd_ahlwRskehLggn1T-GdA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sports Scarf (Shamrock)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2812, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:06:02.387Z", + "ThumbnailImage": "KiAiCi-3AkKa90OHtKGapg.png" + }, + { + "AvatarItemDesc": "2b7a32da-eda1-45e1-b28a-f9f882cda7fa,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Toy Jetpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2004, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-12T22:10:14.817Z", + "ThumbnailImage": "70dggr2u22pi1bpl844m6ozue.png" + }, + { + "AvatarItemDesc": "2b7f4dae-51da-4af0-b009-12d6005c85c6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mullet Hair", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 359, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:26:58.017Z", + "ThumbnailImage": "2o15q3ks9rbgmv8h3mf4bdpj3.png" + }, + { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rain Hat (Yellow)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1359, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-17T19:29:50.737Z", + "ThumbnailImage": "5slbcv7tlqy8kpl75ol21jidq.png" + }, + { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,kX7ocqn8X0-4M1nw-KrwFQ,qC66Hu6yKEu2Res2o2z1Kw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rain Hat (Getaway Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1481, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-08T19:52:44.653Z", + "ThumbnailImage": "agse5pe0hx0ij3ujgprl3xcsz.png" + }, + { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,v3af60p1Q02NpdCqIRO9lw,1hVOI7IuY0mKvtr2PZXLww,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rain Hat (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1360, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-17T19:29:57.017Z", + "ThumbnailImage": "0ds3vsjpe01l47ks32nxbst5q.png" + }, + { + "AvatarItemDesc": "2c3773a5-a0b4-41c5-a4df-6572dff516c9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "2020 Glasses", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1275, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:16:18.133Z", + "ThumbnailImage": "eauoml21rxj3iqwoccpn04y5p.png" + }, + { + "AvatarItemDesc": "2c679f89-c76e-4cfb-94e9-448c8fd44d55,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Saija Shirt", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 246, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "bbp0mhypju37l680pb4b7mrdr.png" + }, + { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Hat (Calico)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 1716, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:33:20.743Z", + "ThumbnailImage": "7c9vakaf9hozc3kfkfgvgows1.png" + }, + { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,V1M2-FXZSEG782d6D0AhUg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Hat (Burmese)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1715, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:33:18Z", + "ThumbnailImage": "825i9txrb63ysexwqx6avbebh.png" + }, + { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,NaXiRmxgkkGK1U7IQ4yn8w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grinning Cat Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2479, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-04T17:41:24.557Z", + "ThumbnailImage": "GsDtJeTdtUqMwfH0lH8bfg.png" + }, + { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,T-JZqXUd3kC1P8L5Pu4ZmA,ao-eeUnb8ECcW2IFGuk76w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tiger Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1942, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-09T18:27:29.993Z", + "ThumbnailImage": "5xbgkkfn1legwnjtvtt5uvco3.png" + }, + { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,VeZQlPI72E6e57IQqAOq6w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grinning Cat Hat (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2480, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-04T17:41:27.223Z", + "ThumbnailImage": "HbIV9ocBIE6QOVO0wQaSrA.png" + }, + { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,wNde5lsob06eQxEH2t-zUw,5KeLrnvaKEWnEiap1xzmjw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Hat (Tabby)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1714, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:33:14.887Z", + "ThumbnailImage": "4c5dywgjhkaf3fk8o08x91iz8.png" + }, + { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Unicorn Horn (Spirit)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1060, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:16.867Z", + "ThumbnailImage": "6xa1zsivxbibzmgrkhclxi34k.png" + }, + { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,FNe9LkWJMUeC3frYJMyEaQ,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Unicorn Horn (Harmony)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1061, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:19.22Z", + "ThumbnailImage": "43eqpst8khtmcw02hx4g56yts.png" + }, + { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,mudt-Z5-5USdnIq-xaDgOw,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Unicorn Horn (Joy)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1062, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:21.547Z", + "ThumbnailImage": "8txs4ivnem6d79jibl2zf6qtx.png" + }, + { + "AvatarItemDesc": "2cb4f372-3372-4583-8b57-c4e3988e3c28,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punky Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 999, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:19.97Z", + "ThumbnailImage": "0v8t308zwge73zqhs45g27w4f.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Atlanta Hawks T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2121, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:41.587Z", + "ThumbnailImage": "aTYlG6TI1ESQrh8Tyzi-bw.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,2MUexARJAU-Vc-Qebqqepg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "LA Clippers T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2127, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:56.22Z", + "ThumbnailImage": "-Ct_cbd5DUeGp8zl21aLMA.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,49mpP0duKEylQ2v5ZU9SYg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Portland Trail Blazers T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2148, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:50.05Z", + "ThumbnailImage": "1lch9FUPrk23Vdmwl61lHA.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,4UTuNYISo0OP70FuGzmOsg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brooklyn Nets T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2137, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:22.74Z", + "ThumbnailImage": "cTeuIowAx0KzIVy0-WH2cg.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,9bQaIrqI00qtjdtkIkj_3g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Los Angeles Lakers T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2134, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:15.247Z", + "ThumbnailImage": "lrUa6D6QQUec3po_q7y2-g.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,a4r3MYNjT0Ok0uQX9BYH6w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "New York Knicks T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2133, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:12.097Z", + "ThumbnailImage": "MKQctCVd20ONb5z9deG31g.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,B3wjSG3Ui0ipGgN3h7BFiw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Orlando Magic T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2135, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:17.8Z", + "ThumbnailImage": "kOzNsMW2mUGpmPEeT0AnUw.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,clStIXndXk2ayewq-1LKng", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Miami Heat T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2129, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:01.5Z", + "ThumbnailImage": "AGZJkBZVWUy1O-nlqtYI3A.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,dpxEW-2Un0eeVIsg5_o6Xw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boston Celtics T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2126, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:53.597Z", + "ThumbnailImage": "vndWqkhOjEiG1tfAoDZoig.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,eAq9xK51mE-Nu4RQY0ds4Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Detroit Pistons T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2141, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:32.133Z", + "ThumbnailImage": "-6_8xc5kqEyRKQ1vuvbNYg.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,eCEF5P5N7EC_cEjM9-5iUA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golden State Warriors T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2149, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:52.6Z", + "ThumbnailImage": "3ABGwcegD0CZluvQKynPlQ.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,H_lV3FQG0EC4ebW5vfnRIA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Philadelphia 76ers T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2122, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:43.937Z", + "ThumbnailImage": "yjtuZ5Fb5kGrGUDMaeoyEQ.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,hE5scNMqJ0igY_jhufvNmg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chicago Bulls T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2124, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:48.817Z", + "ThumbnailImage": "r1RzRtaGuUKZ-8XAY3Dh2A.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,hoXpo41nnEOPGq20Tq-t9A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sacramento Kings T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2132, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:09.607Z", + "ThumbnailImage": "Qficbcavm06029T8l_tmgw.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,hU2rt41rvUqulLM1H5NX4g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Phoenix Suns T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2145, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:42.453Z", + "ThumbnailImage": "HUAmHnGyBU-bYA17m4hILA.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,ibmxOUIFs06gOpRYLe58xg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cleveland Cavaliers T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2125, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:51.143Z", + "ThumbnailImage": "YC4ouQXwGEOyXXjSiDhPkg.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,j3S5Gk92mEOKlD424seciA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Minnesota Timberwolves T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2147, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:47.57Z", + "ThumbnailImage": "W9BC4K_6K0G3J8tY9fyJeA.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,JBFu1kZ8C0ya5JZLDh0ynw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "New Orleans Pelicans T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2140, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:29.763Z", + "ThumbnailImage": "NNC2C7t7sUaTbsPQB8wOmA.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,kk271nI1MUu-gZjec9djrQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Toronto Raptors T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2142, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:34.69Z", + "ThumbnailImage": "Ss8R7vuL6UqFDQeWpt-fxw.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,LpUOG6fHz0uQPtmOLtUlKw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dallas Mavericks T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2136, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:20.173Z", + "ThumbnailImage": "up6nS7ge3kWq1ROeCQ9GTg.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,M3vXSuDRw0GLNh9A4dF4vA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Washington Wizards T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2150, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:55.3Z", + "ThumbnailImage": "lqK4K0ia5kCA6osf4p36eA.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,nEBw9Nh1-kWcOynsm7P8Pw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NBA 75th Anniversary T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2183, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:44.05Z", + "ThumbnailImage": "K5HHE0xLXUyHcne6GNjNig.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,oflbr1qvHUyvwUxdFZMcmA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Milwaukee Bucks T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2123, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:46.357Z", + "ThumbnailImage": "ako-ThG7XEqcnjIt9OZnlw.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,OpWc8pumTk6M6x1WSw3a6Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Houston Rockets T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2143, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:37.287Z", + "ThumbnailImage": "2t_BBgqutkWjsMndffuawA.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,ow_9g2xNj0G33-zWIhjW-Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Indiana Pacers T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2139, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:27.393Z", + "ThumbnailImage": "QTk8hWoyH0KjtihHXsQ3ww.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,pvnZdyL9NEaYYX8T12AgVA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Memphis Grizzlies T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2128, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:58.697Z", + "ThumbnailImage": "kf_qLY9VIE2q2gSCp5L1uQ.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,RddbstjtZ0ClxgY-s66tTw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "San Antonio Spurs T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2144, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:39.773Z", + "ThumbnailImage": "KwQTRfiStkqFs1xlwiPgUw.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,sVeZH49mP0yBRKrbVr-0LA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Denver Nuggets T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2138, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:25.077Z", + "ThumbnailImage": "NMpKzkwrjkmapWagtUmY4A.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,tkHJl8TQHEiSeD-seDV4jg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Utah Jazz T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2131, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:06.673Z", + "ThumbnailImage": "Kgk79zh1rka-JRcVXk1xnQ.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,yVNoqFjSeU6mPJxEJnzRLg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Charlotte Hornets T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2130, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:04.047Z", + "ThumbnailImage": "1KoWvmLOa0m99qKETLTIOA.png" + }, + { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,ZDsylFpkEUi5PijTLSfYNg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Oklahoma City Thunder T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2146, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:37:45.02Z", + "ThumbnailImage": "PLv73v1H3EaMsBsQJzBVqw.png" + }, + { + "AvatarItemDesc": "2cf6ceee-4c45-4fb4-b9df-cb8437742e85,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Doubloon Necklace", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1506, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-17T20:05:56.36Z", + "ThumbnailImage": "bvjmdwvfu70toj5uhdjc9bmyn.png" + }, + { + "AvatarItemDesc": "2d07c0d0-b277-46dd-8980-382bdaa4749e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angel Halo", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2185, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:07.793Z", + "ThumbnailImage": "NboCAaiehkigdPqWgZxRoA.png" + }, + { + "AvatarItemDesc": "2d07c0d0-b277-46dd-8980-382bdaa4749e,f6O5cw0vc0ineEptRysocg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Halo (Invasion)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2554, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-31T21:10:44.14Z", + "ThumbnailImage": "z5qNLmnhd0aHhDdIxO-wsg.png" + }, + { + "AvatarItemDesc": "2ddd2c2b-596c-4022-a488-655b0db1c265,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bounty Hunter Glove", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1552, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:40:09.96Z", + "ThumbnailImage": "1kkukibngh4tv7hnld1z6zmzk.png" + }, + { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket Cuffs (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 762, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T19:04:27.993Z", + "ThumbnailImage": "0luffpfh5ls3knh5u8r6w0x5u.png" + }, + { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,HWc25-d8dUmNN2F3n8mV5A,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket Cuffs (Red)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 938, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:15.18Z", + "ThumbnailImage": "4hbdjfasjaponwtrx2tmjnwa3.png" + }, + { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,MS7EPNLJEEyMLC6_yHQYtA,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket Cuffs (Purple)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 940, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:17.667Z", + "ThumbnailImage": "8uiva9ffm7qrizcvqx99frs29.png" + }, + { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,UUyjVU4mvECPhI9xTMYR1Q,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket Cuffs (Green)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 937, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:13.837Z", + "ThumbnailImage": "amfc2bzt0jj15t76n2lnhv25e.png" + }, + { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,Y0e7o0_BKUm7XJSLediN5w,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket Cuffs (Black)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 939, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:16.18Z", + "ThumbnailImage": "39guqwt3fqru9qq6psoua1yff.png" + }, + { + "AvatarItemDesc": "2e31fd6c-dffa-4571-8e53-fc28fd0c98e0,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gardener Apron", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2820, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:47.357Z", + "ThumbnailImage": "uc9Y0cmhYUi-BL1OyWYdxQ.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Plaid, Blue)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1009, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:34.91Z", + "ThumbnailImage": "aouoxffd4nu47wnb2ngptwmhv.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,071d1bf3-86dc-4a31-b54a-e6579fab8649,d015cae7-a905-49e4-8823-6dec069689a6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 158, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7k5gf8gh1bklveyos3l1ydl68.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,0iSsaY-HgkmLaRHCn5vEdw,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Blue)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1014, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:41.117Z", + "ThumbnailImage": "cpcymryww9ol7mfcdpyp63o47.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,48abd952-214f-48b2-a8f1-1146f6f69aa2,c2a91a10-2f5b-4ab0-a79f-51408cf4b047,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Referee Shirt (White Collar)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 166, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "b3stfwojthp7css2c8xqi5n5y.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,48abd952-214f-48b2-a8f1-1146f6f69aa2,RNN0ejjlm0yqGDcEuUkLjw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Referee Shirt (Black Collar)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1042, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-03-11T21:45:58.3Z", + "ThumbnailImage": "29urcstxxxjo9a30k66pvi43j.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,55901f12-d5b5-4fa8-b4c8-e479689ee39d,f600037d-c9c0-43fa-b45b-02f456f9dd5f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Denim)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 674, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:38.867Z", + "ThumbnailImage": "0bb1u3you3uny9smblxzcmwyf.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,bf82f2f6-9af8-431e-a296-0890dea48ba7,d015cae7-a905-49e4-8823-6dec069689a6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Argyle)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 672, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:36.07Z", + "ThumbnailImage": "077ospe8q8kka3lqwcvd2df6w.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,EfdMcnfHt0mr0PQ_maaYOg,DRJcNhkqvkKFEaZpOguR6w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Flowers, Green)", + "Tooltip": null, + "Rarity": 0, + "TagList": "", + "AvatarItemId": 1016, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:43.8Z", + "ThumbnailImage": "130079y56zsb2j2jv5bahhp77.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,FAviMCQ_EE2Mpt6QPo5OEw,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Red)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1015, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:42.253Z", + "ThumbnailImage": "4pvbqpmw9ghysmvyr445pupr1.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,jGj28vhq8EGwP2RuM074aQ,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Yellow)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1012, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:38.33Z", + "ThumbnailImage": "60nyc11l4xym89g52ynudx3bm.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,kmj5zOjcwku_WWKroCeiVQ,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Pink)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1011, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:37.143Z", + "ThumbnailImage": "0f3qdah3r9o4qv7cqk39g3l7s.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,MFrcSQ1DYUm8imvy4ypgvw,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (White)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1013, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:40.003Z", + "ThumbnailImage": "13r4rms2vr6r67kp1gm17g388.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,n4SdiVms4kaqdjXdbjRBbw,YEMLBlOWsEO4tELHseZ7LA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Referee Shirt (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2026, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:08:22.573Z", + "ThumbnailImage": "cjm3isfczhcb0g2sceven3lwz.png" + }, + { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,ojvIFCTpJkeegestF065wA,10fYSIBytk-yUjveDa407w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Shirt (Plaid)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1010, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:36.08Z", + "ThumbnailImage": "4t0t0evfwd04sjvdwb35fvj5n.png" + }, + { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Cape (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 117, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "23zm48ii99k5gviu6wd03hbo7.png" + }, + { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,22dc463a-a89b-46ad-9a0d-557c742b4a80,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Cape (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 120, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "1r4tyyoovhhxpcatrb3ixmuwl.png" + }, + { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,59866578-d4e0-417b-9483-233ab108b1ac,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Cape (Cherry)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 119, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7rnan20ml6o94ezwuvfv1cpqu.png" + }, + { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Cape (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 121, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "d1fd8ubrjvta346f7rqtixtxy.png" + }, + { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ed134bee-d199-43eb-98bd-206571603f40,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Cape (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 118, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6zfzza7fqr56kicscf9e2lil6.png" + }, + { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ITH2OpzjP022vZ5JgxV_iQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Cape (Yellow)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1119, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:56.78Z", + "ThumbnailImage": "3dqqaqnta15d1edl9k3vlzu5f.png" + }, + { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,PMa9370LPEig_7pKwCceEQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Cape (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1308, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:46.787Z", + "ThumbnailImage": "e6hsc92hhcj6jhxh9avyxdqvj.png" + }, + { + "AvatarItemDesc": "2e7cbdb0-cf22-4938-964f-acca57d221b7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hearing Aids (BTE Earmold - Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2878, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:48.703Z", + "ThumbnailImage": "4hydnfkwj5yum1oq7pdpajh6t.png" + }, + { + "AvatarItemDesc": "2e7cbdb0-cf22-4938-964f-acca57d221b7,aEsXeTI_SEOclbm82n17tg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hearing Aids (BTE Earmold - Gray)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2880, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:52.453Z", + "ThumbnailImage": "9ejntda7ab26w71takrqy1wuc.png" + }, + { + "AvatarItemDesc": "2e7cbdb0-cf22-4938-964f-acca57d221b7,pZDvYABTN06KdJ5Ck60XLA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hearing Aids (BTE Earmold - Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2879, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:50.61Z", + "ThumbnailImage": "5kr6spnm1wjdvlki1808o40y6.png" + }, + { + "AvatarItemDesc": "2f77696c-618c-4fb8-9220-33839cd3bfcd,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tiny Top Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1897, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-30T21:02:30.067Z", + "ThumbnailImage": "56r92qv64w04tvm8920bhyjlv.png" + }, + { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Jersey (White, Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 139, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "703se3u45kueznyorg28dx2d4.png" + }, + { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Jersey (Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 478, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-10T16:50:09Z", + "ThumbnailImage": "4ur6eolr90837mh7229goao2z.png" + }, + { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Jersey (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 477, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-10T16:50:08Z", + "ThumbnailImage": "5iy6yfd9qvpfzdo6symnk32xf.png" + }, + { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,de0a5a3a-8aff-4799-8269-9efa3aeb383a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Jersey (White, Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 493, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:16.667Z", + "ThumbnailImage": "coknzs3avuwcbyl6z2drrxtd1.png" + }, + { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,e5de2e45-207c-46af-9a5e-eb01a0c621fe,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Baseball Jersey (White, Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 492, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:15.62Z", + "ThumbnailImage": "b124kxp8adqvgs4bryq7tcrra.png" + }, + { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(Skis_Shoulder) ", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2721, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:03.47Z", + "ThumbnailImage": "iCZlDOC3T0yMCT2lIaEPrA.png" + }, + { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,hPVbRnQq-EW3g0q17N6G5w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski's on Back (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2724, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:13.727Z", + "ThumbnailImage": "LdbyV0Td6Uuj5MUaG1720Q.png" + }, + { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,HQ1M8kINaEu-0HJtz7f8Gg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Red Ski's on Back", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2725, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:16.57Z", + "ThumbnailImage": "5I7iBS_W3EG0-nf--ECAJg.png" + }, + { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,OScwXIzJHUKzb-NC6gUnxw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski's on Back (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2722, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:07.327Z", + "ThumbnailImage": "BP7vd50iWE-mLN5Go0g5hQ.png" + }, + { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,QVsGyxlefEeomtJO-dFAOw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski's on Back (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2726, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:19.427Z", + "ThumbnailImage": "lCMwxmYnFE2_25yjGunDzg.png" + }, + { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,sNtmG8EODkOoiAdOi5Hetg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski's on Back (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2723, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:10.393Z", + "ThumbnailImage": "nT7I-G6ixUSQ6Om25gsUGA.png" + }, + { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Hat (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 503, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:30.1Z", + "ThumbnailImage": "3dzbcs7n1malcbemyi60hae9g.png" + }, + { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,2Mgx6S9f8k2H1AAYbkzjQg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Hat (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2309, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:01.357Z", + "ThumbnailImage": "V_xCN9YtNEqAF6pAvOkE9w.png" + }, + { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,48c18418-01dd-40ff-9dfe-c4cf5f4e1245,ddf429fd-a883-48a5-869b-bc12e44d30bf,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Hat (Gray)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 504, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:31.243Z", + "ThumbnailImage": "bwzoz4dtuwlngxk9f0tu4ubak.png" + }, + { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,6584dada-499e-4d7c-958d-466955b20640,ddf429fd-a883-48a5-869b-bc12e44d30bf,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Hat (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 505, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:32.11Z", + "ThumbnailImage": "1iqnljjvv128u9d8mlok69amn.png" + }, + { + "AvatarItemDesc": "2fadddc1-babd-4cb3-8f5a-0e7c889c3785,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bounty Hunter Helmet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1548, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:39:57.163Z", + "ThumbnailImage": "3j8vqf9bf8mtlc1esp7pjg52y.png" + }, + { + "AvatarItemDesc": "3028ba83-0c85-4e27-a47a-56609fa58b33,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dirt Bike Chest Protector", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2858, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:40:46.4Z", + "ThumbnailImage": "p0HdGaW4sE2gqP6I_UnOTA.png" + }, + { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Dress (Red)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1260, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:17.57Z", + "ThumbnailImage": "1wfcf6b158y11zvf8rsj18asi.png" + }, + { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,HzTJsuYdLkC_NY3ClszRpQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Dress (Premium)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2819, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:45.093Z", + "ThumbnailImage": "abYMjMnf3UyRf8ys43UA1A.png" + }, + { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,ktnYOVEhtEmuxmjM1TjIOQ,EqNosRGf5U-5P1nKIRV3fw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hallow's Dress (Patchwork)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1924, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-05T22:17:26.863Z", + "ThumbnailImage": "dhy0nd82sozehq400v5il9pjj.png" + }, + { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,oM7qz730lke-off_cQw-cA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Midnight Gala Fancy Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2553, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-31T21:10:41.1Z", + "ThumbnailImage": "sWwqVZYnhEuU3MEH8_419g.png" + }, + { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,rcdwgNvO30Cvx2ycE1GfHw,JmFzNL5v_0q1p0bgoOlBpQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Dress (Black)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1261, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:21.21Z", + "ThumbnailImage": "1hodrkppvhvmxs18btxdu979c.png" + }, + { + "AvatarItemDesc": "3044adce-90c0-4f66-81f5-39c4fca86fdf,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Gloves (Pink)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 579, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-01T18:30:43.647Z", + "ThumbnailImage": "15nrb536jxz09ck6emxavel7l.png" + }, + { + "AvatarItemDesc": "3044adce-90c0-4f66-81f5-39c4fca86fdf,426d0592-f8e4-4bc6-9fe1-a62b91fd57d5,3b825377-d2eb-41e4-a736-b107f88f62d6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Gloves (Blue)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 581, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-01T19:04:55.21Z", + "ThumbnailImage": "dzm37a1dmgdsj0aetwi19afes.png" + }, + { + "AvatarItemDesc": "3044adce-90c0-4f66-81f5-39c4fca86fdf,EC0ttvk6eU2HEMacLAx2Iw,3b825377-d2eb-41e4-a736-b107f88f62d6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Gloves (Orange)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 744, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-04T20:06:17.987Z", + "ThumbnailImage": "0qqunbtr2dxrzl797zjamcpg9.png" + }, + { + "AvatarItemDesc": "3044adce-90c0-4f66-81f5-39c4fca86fdf,mhsglVEtREmElF5wuLw3NQ,3b825377-d2eb-41e4-a736-b107f88f62d6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Gloves (Teal)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 745, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-04T20:06:20.897Z", + "ThumbnailImage": "13cf7bho89ewryskk93gh33it.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (June Pearl)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1682, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:34:24.383Z", + "ThumbnailImage": "9gv2f7uy1uo763i2urf7qdtys.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,46f7Ewe99E6tF2qFaMtQ0g,8IK1U23XlUOV-2ibVznkDQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (April Diamond)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1684, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:34:27.593Z", + "ThumbnailImage": "ekdcofkpc4pqcwpk0rwxxdu21.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,adwzLAQEykK8D5hZGQ6yiA,0Nca5nBUpUquFhExd5dxcQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (July Ruby)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1686, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:34:33.707Z", + "ThumbnailImage": "2qnbcqo4a9vldg7eer5ofwli9.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,C9CZUwEZeUiuOue4CK4luA,gUxl7WNXlUqFYHZ9eGq1cg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (February Amethyst)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1693, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:35:26.517Z", + "ThumbnailImage": "51ybcms7jhdsyx03odmfrhned.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,FgLAEMh1e0GyHO8J8_xj5Q,iM-04HpG6k2N8n-P3XS22w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (January Garnet)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1692, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:35:22.693Z", + "ThumbnailImage": "b4372447x75hrt7zmp36xexi3.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,imOiYzABkUm9C5EVzvjXgg,0eZVIsv7wUyZ0ohLmF1jGQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (December Turquoise)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1691, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:35:19.483Z", + "ThumbnailImage": "1o20o1igl0kxcykasd3bf7drr.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,kQD41xK4dU6dI_6pRkP0qA,aSeusgYlPE6vOBu9Ua_dWA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (September Sapphire)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1688, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:34:40.923Z", + "ThumbnailImage": "4z8ff179kc1znimkl5hhclu3c.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,mM7I9kDTx0ut243UkWKXvw,YKaJjmMHo02FWwem8nw1yw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (March Aquamarine)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1683, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:34:25.937Z", + "ThumbnailImage": "awvrj98971hzwbeeg8i9zxo3l.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,R0f3hHGY9UqUEW4aR1fssA,KSqfmVTiGUKOKijwGDSwgQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (May Emerald)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1685, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:34:28.83Z", + "ThumbnailImage": "4xaaxp8lgcjr1lrwq0jnqoxbt.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ro4sD9txVE29_eT2jK-wEg,0YF5bACMsk2sN4tixbJbKw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (October Opal)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1689, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:34:45.027Z", + "ThumbnailImage": "62x43h2lnvgu2pa5ubjuz4yuk.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,-YsxhNXLAk2qbeXMqwAqng,aNOhXS4nuUeqs0CVw6K7Hg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (November Citrine)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1690, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:34:51.07Z", + "ThumbnailImage": "17kngr9n3ywkzhzibzp9gckn0.png" + }, + { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ZsWc8wRafEGl3B7cr6UkzA,ByIfwCtDwU-p9rEfqpjfGg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthstone Earrings (August Peridot)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1687, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:34:38.08Z", + "ThumbnailImage": "3ap2lnn1cayd34hkw01ody958.png" + }, + { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fox Ears", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1454, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-05-13T21:06:17.563Z", + "ThumbnailImage": "dmas6u15o98831skwq4yiijbp.png" + }, + { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,A-xoYdSUF0aEr_XZ9Me-3Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fox Ears (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2178, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:32.917Z", + "ThumbnailImage": "2Q7b4md8JE2YQ8VUXFaioQ.png" + }, + { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,db-JiDmRhUKX69weDLiHsQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fox Ears (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2176, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:28.837Z", + "ThumbnailImage": "oTmagc6WVkCO9huhLC83Lw.png" + }, + { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,UZY81cnsV0meMp2lg3_UaA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fox Ears (Brown)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2177, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:30.87Z", + "ThumbnailImage": "puLgwYOR7UaDsU2V90_S0A.png" + }, + { + "AvatarItemDesc": "32b7a724-1112-476d-9ddc-2d04655c9df0,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Leaf Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2199, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-05T16:52:54.42Z", + "ThumbnailImage": "ZN_075PMnUq0_A0OEIo51g.png" + }, + { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hiker Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2252, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-28T17:06:07.487Z", + "ThumbnailImage": "nonED7GaH0qPJ67vtt7QxQ.png" + }, + { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bat Costume Ears", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1926, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-13T18:55:55.95Z", + "ThumbnailImage": "cheqz81i6ydobk59q4ybrjfks.png" + }, + { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,85pvpo4QqUSrdsbofGkoWg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Green Bat Costume Ears", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2517, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:23.993Z", + "ThumbnailImage": "kWsDoa_x1UmDw33BY2rMCw.png" + }, + { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,f6XXbe_mhEuZJ9in5vDRGw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bat Costume Ears (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2518, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:26.787Z", + "ThumbnailImage": "TP2iURkjWE2-TVyQJGWkVw.png" + }, + { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,mnYzlq3Rw0-Q89gmc5f9XA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bat Costume Ears (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2516, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:21.683Z", + "ThumbnailImage": "lQoHL1kpXEKcBNWXhquQXw.png" + }, + { + "AvatarItemDesc": "34023e02-f59f-4e90-b245-e298cbc1a6d8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousLadyBugHair_Hair) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1990, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:43:51.917Z", + "ThumbnailImage": "4f78dqx34vgtcv34rpbpetpea.png" + }, + { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Goggles", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 105, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "42cr1t40qzbgiloer9d71sb28.png" + }, + { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,3HAMDzfFO06jtYNXm2Bsjg,_Jx5VqGbVUCPwl_SaUCTRA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Goggles (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1947, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-16T22:16:38.027Z", + "ThumbnailImage": "4bndj29hiu03hkt63qwabedlj.png" + }, + { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,kS7jek5tPkSkIgjIF369Vg,_Jx5VqGbVUCPwl_SaUCTRA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Goggles (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1946, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-16T22:16:35.48Z", + "ThumbnailImage": "52yxsadxjnh09e02kzlza70z7.png" + }, + { + "AvatarItemDesc": "341dcb4a-818c-4d7c-9ae3-1dabbb79519a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Solar System Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2384, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:57.45Z", + "ThumbnailImage": "0MfRmLg2yUGhr0zEhMC8Pw.png" + }, + { + "AvatarItemDesc": "34654303-9760-447f-8614-1c26506db994,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Electrician Hat", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 356, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T22:31:51.653Z", + "ThumbnailImage": "8o02lqyi0dx2nwz9l24ei0511.png" + }, + { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basketball Jersey (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 140, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "dyz7t3e9p724lfy2lqohcvl0m.png" + }, + { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,4effd67c-a52f-4b41-a5b0-04287f91a7bc,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basketball Jersey (Purple)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 651, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:37.047Z", + "ThumbnailImage": "5csh82iknt6zuuty86qfpx32k.png" + }, + { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,59a62fa3-9e15-463e-9bd5-3aecdf604c1b,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basketball Jersey (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 650, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:35.363Z", + "ThumbnailImage": "2z5f34xrfn5i5rko8oh08suh0.png" + }, + { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,ojTIShRZHEOV1qQRfhwvTA,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basketball Jersey (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1728, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:13:41.417Z", + "ThumbnailImage": "4nvt3kwtn2k367794r49ve87e.png" + }, + { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,RU-B71GUF0WPduoSOI1XMg,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basketball Jersey (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1726, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:13:25.593Z", + "ThumbnailImage": "86hv8nip4c5kphcs19ulpi7xv.png" + }, + { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,se0-2ylLD0u6sqCVPkeP6A,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basketball Jersey (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1727, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:13:35.79Z", + "ThumbnailImage": "24n1sqxebe37pk9ina0smo1nn.png" + }, + { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Shoulder Pads (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 182, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "ewgz9ts3guc8ukhtofeng0haj.png" + }, + { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,32dde6dc-e3dc-43ee-9b7c-987bc6778c17,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Shoulder Pads (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 183, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "e8nojpjvm8xk8hxnuivjumxe8.png" + }, + { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,88c3ed05-ce41-4a9d-a4a7-8a428d240b3f,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Shoulder Pads (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 184, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5wkaquhpl7lseclkpi4mgjdkp.png" + }, + { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,dzCc_QmTYUGQ67r4yy3XpA,e17481fc-b2b6-47a5-91e5-7205f45a3247", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Shoulder Pads (Black, Gold)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 6607, + "IsBaseAvatarItem": false, + "CreatedAt": "2024-03-27T22:53:35.393Z", + "ThumbnailImage": "cJAAR0vVREamuQT8FfpdHQ.png" + }, + { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,G7B-u9qn5EGqSNskBCVsAA,e17481fc-b2b6-47a5-91e5-7205f45a3247", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Shoulder Pads (Black, Yellow)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 6608, + "IsBaseAvatarItem": false, + "CreatedAt": "2024-03-27T22:53:37.033Z", + "ThumbnailImage": "6FJtINu9eEeqW-_S2Cd5Rw.png" + }, + { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,jV1TGp1dHUWCJzVMbJskyQ,e17481fc-b2b6-47a5-91e5-7205f45a3247", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Shoulder Pads (Blue, Green)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 6609, + "IsBaseAvatarItem": false, + "CreatedAt": "2024-03-27T22:53:38.807Z", + "ThumbnailImage": "Y_q7sebeeUuwLnOb_qMjtw.png" + }, + { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,kCqthBeVvUKZA9b76kxuVQ,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Shoulder Pads (Gray)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1665, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-25T19:26:34.957Z", + "ThumbnailImage": "2oj4qcrvtpo7yivbcpx3f2voa.png" + }, + { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,vMqhT19x302aYEo6E9HhOA,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Shoulder Pads (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1664, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-25T19:26:23.867Z", + "ThumbnailImage": "d34fyy9i80gyrjrhwyh2coy4s.png" + }, + { + "AvatarItemDesc": "34f45c5b-fea7-40b4-add7-bc7a37000ab5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Star Captain Hat ", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1655, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:57:02.21Z", + "ThumbnailImage": "c5xy43pxfjwaaum08f6rtf6um.png" + }, + { + "AvatarItemDesc": "34fa5014-e516-42a1-aaa8-91d2b6f59727,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bladed Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2222, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:33:39.79Z", + "ThumbnailImage": "RWXXh3Ixg0KSe82fQIeKiw.png" + }, + { + "AvatarItemDesc": "34fa5014-e516-42a1-aaa8-91d2b6f59727,fWZekjhIxUWhxgVGTWrVsg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Midnight Gala Bladed Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2552, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-31T21:10:38.607Z", + "ThumbnailImage": "te1b6n09g0WjqI3yH5n3mg.png" + }, + { + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lumberjack Shirt (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 245, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0t92rww5x13bmx7jh4n78jqtx.png" + }, + { + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,7amHTgEv-UOJSGl0ofo4mw,CUCKsNVnIkavHjcspWAv_A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lumberjack Shirt (Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 775, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:07:58.83Z", + "ThumbnailImage": "8u0ou663lluquhfy88m3nuvu9.png" + }, + { + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,cKHAetNcgUOxFfDkAPPF9w,CUCKsNVnIkavHjcspWAv_A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lumberjack Shirt (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 776, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:08:00.437Z", + "ThumbnailImage": "ba5xrtahc2k6jzt6i6q17wg7u.png" + }, + { + "AvatarItemDesc": "352b49fc-99a2-4f05-a688-866ade1cd394,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Retro Gamer Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1962, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-03T22:58:27.077Z", + "ThumbnailImage": "5y0de11wldvhcpeo87sdq0vyq.png" + }, + { + "AvatarItemDesc": "352b49fc-99a2-4f05-a688-866ade1cd394,PabSuDB_GEejMahhLvLkJg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dark Retro Gamer Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2906, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:44.753Z", + "ThumbnailImage": "q-bZ8zTCIkOyfHecJwDDng.png" + }, + { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Overcoat (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1748, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-29T20:43:55.407Z", + "ThumbnailImage": "6rf1m7pd44oq6kn8h6yf9xeqj.png" + }, + { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,_3hxdSy9wU6OUPZJA9kGmA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brown Turtleneck Coat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2213, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:32.797Z", + "ThumbnailImage": "fZkRsxu0GEq0HJicKi0Gxg.png" + }, + { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,B5t5RbzKdEObKDlXLcRp7Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pastel Turtleneck Coat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2865, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:41:04.15Z", + "ThumbnailImage": "FSw9DUpPzECdOB8T9OOx4g.png" + }, + { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,J36t8RwGPUqtLBsF-_UtEw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pastel Purple Turtleneck Coat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2866, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:41:06.073Z", + "ThumbnailImage": "G1k3m0JjFkWpKsbWb3D4eQ.png" + }, + { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,OaOC278jEE-owjtDP9ZLow", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pastel Yellow Turtleneck Coat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2867, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:41:07.793Z", + "ThumbnailImage": "QqL58lbLCkSvxjPln1rEsQ.png" + }, + { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Skirt (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 695, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-31T00:52:30.813Z", + "ThumbnailImage": "8usltv63g871msvqw5fh4v055.png" + }, + { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,2bb65868-ee12-4871-b50d-64bbc9066f0b,e65530f7-543c-43e9-bf12-b6cda2bc755c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Skirt (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 702, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T19:45:53.837Z", + "ThumbnailImage": "636348tvnldqryf6iouybgnoy.png" + }, + { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,VL_OnsbYNkGgGAV16x5tQA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zombie Girlscout Shirt (Mutant)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2405, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:02:56.903Z", + "ThumbnailImage": "3krD9e7_gUezvWyLO30zZQ.png" + }, + { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,XxVqGAlweUKta__sKdMP3Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zombie Girlscout Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2404, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:02:52.663Z", + "ThumbnailImage": "KhdXc-odtUiy82uWA9Hyfg.png" + }, + { + "AvatarItemDesc": "36b2ccf4-4f42-4dc4-aeaf-f3d10b2a6d30,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Etched Fade Hair ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1982, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:23.007Z", + "ThumbnailImage": "abs1vh2rd21swanjh7vd6hi3h.png" + }, + { + "AvatarItemDesc": "3739a9e1-6dfa-45d2-af54-cc83a58d436a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cosmic Hero Suit", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1923, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-05T22:17:15.71Z", + "ThumbnailImage": "5m4wvktjw7xe4tdyw0cs3p4wk.png" + }, + { + "AvatarItemDesc": "3739a9e1-6dfa-45d2-af54-cc83a58d436a,GpYghupLTUK9cuiL-0uHYg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cosmic Hero Vest (Rhythm and Rooms Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2743, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:55.197Z", + "ThumbnailImage": "6daz2-CA9keE0A25Vugkvw.png" + }, + { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Sweater (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 592, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-01-10T20:33:04.94Z", + "ThumbnailImage": "dll3aenct2b8668hjuionbuff.png" + }, + { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,09Cg6dOq2kC2-tI5yyGSYg,3fQj_7meDEeQqm_7RfEfxQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Sweater (Snowman)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1595, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-23T22:21:26.96Z", + "ThumbnailImage": "ajy0ulpcn5j6v22cwvub3mj4g.png" + }, + { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,fq0xC9BjLECbsQIZfAvK9A,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Sweater (Vermont)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1673, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:05:17.633Z", + "ThumbnailImage": "44uerp68eefsysf8d98xb2sj1.png" + }, + { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,fTWOc1eEl0aVKXwTYYjA9Q,31nK13dsTkaIf3tGFrZlJQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Sweater (Ugly Ham)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1943, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-16T22:16:19.577Z", + "ThumbnailImage": "aa8mp2wzw823pnrmg36w1gge6.png" + }, + { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,i33RmJJCwUem-ADkOwMNQQ,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Sweater (Pine)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1228, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:02.25Z", + "ThumbnailImage": "f0y7tht9axiudht3tlhqeysgc.png" + }, + { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,LDqcPkvNXE2gFXxbpNkfhA,Too5jpb1w0iQenkjRRS-QA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Sweater (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 948, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-10T23:52:03.517Z", + "ThumbnailImage": "779n1128jegvy95s8avlm32fs.png" + }, + { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,PG6H6px5HkO4X_xPRd1idA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Sweater (Reindeer)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2609, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:48:13.093Z", + "ThumbnailImage": "1ZjDS_OAMk6uv03QVqK4vw.png" + }, + { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,XOBIPrKCr02xa4tKj8wN9g,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Sweater (Frost)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1227, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:00.187Z", + "ThumbnailImage": "5e6rkamgfx1r7o0j31z8lkrc8.png" + }, + { + "AvatarItemDesc": "37668d3d-c9f4-4bd6-81d4-a4f64ba2d61b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bee Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1188, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:58.677Z", + "ThumbnailImage": "ex0h92b7vqpk3ao6jhdf8acdf.png" + }, + { + "AvatarItemDesc": "37668d3d-c9f4-4bd6-81d4-a4f64ba2d61b,USdUyjIzY0q5af3AeTFCOQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ladybug Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2776, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:33.427Z", + "ThumbnailImage": "NvZjNy5k-k6-IOXr5Mm2TA.png" + }, + { + "AvatarItemDesc": "37b68987-73d9-4aae-8e3a-edd24ae890a9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(LayeredNecklace_Neck) ", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2855, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:40:41.697Z", + "ThumbnailImage": "5Zki1DsZ0UW_pMecyP3JoQ.png" + }, + { + "AvatarItemDesc": "37b68987-73d9-4aae-8e3a-edd24ae890a9,UCxz68a5E0WaZkocDfEf5A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Silver Slugger Necklace", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2856, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:40:43.29Z", + "ThumbnailImage": "_uhKCE9kyU6LOgc4Sixxqw.png" + }, + { + "AvatarItemDesc": "37f7b94a-92ba-4f5e-b94c-de00acfa4722,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Etched Flattop Hair ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1983, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:26.283Z", + "ThumbnailImage": "252m5s6mamg4ajchjb98l8me6.png" + }, + { + "AvatarItemDesc": "380a5e35-b4d0-4119-9721-8ce4c0840fbd,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Starship Helm", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1510, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-08T21:59:46.563Z", + "ThumbnailImage": "aun7sd8qe3iqtu86eeyec9uq1.png" + }, + { + "AvatarItemDesc": "383d4bb7-1ffc-4b40-9b7e-cfeaf9ac5fdd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Thick Shades (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2767, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:05.927Z", + "ThumbnailImage": "BktGoS3OckmmBQXz83eY4g.png" + }, + { + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Belt (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 600, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-13T00:04:24.773Z", + "ThumbnailImage": "bu0ii93b6dmvvc93szjfnal02.png" + }, + { + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,0f71b9a2-dd88-435c-a571-4503d12dcf2d,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Belt (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 611, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:47.463Z", + "ThumbnailImage": "0rvymvsae95r30k0psb64iavr.png" + }, + { + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,f4ad4b9e-dd42-4711-9437-5beae51966f6,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Belt (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 612, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:48.677Z", + "ThumbnailImage": "0pyrhi595qqyqin50b6zfj2ws.png" + }, + { + "AvatarItemDesc": "38e7e182-5166-42d9-9ed3-b525b98579c1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teela Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2585, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:51.363Z", + "ThumbnailImage": "HwOW8GYsaESO0xHdf6rxQQ.png" + }, + { + "AvatarItemDesc": "3916a22b-ef4b-4ecc-9945-fd57867af597,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hiker Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2253, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-28T17:06:11.093Z", + "ThumbnailImage": "dwCEXZw8HkeluG48ThKdoQ.png" + }, + { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lacrosse Shirt (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 243, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5zxnu4wl529tzcip7nwk8im0o.png" + }, + { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,e3454bc7-c88d-4958-8b81-db3fe5472a1e,da36bbcc-2a9a-4ba2-9e4a-6f52c9b1ef74,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lacrosse Shirt (Pink)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 244, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0pmiv1zb13od6nl9giu03eizj.png" + }, + { + "AvatarItemDesc": "39854685-4793-439b-9c64-c98825456a03,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweet Tooth Shirt (Milk Choco)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2758, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:44.793Z", + "ThumbnailImage": "0tGRQjD2mEKhf-jbbGpp7w.png" + }, + { + "AvatarItemDesc": "39854685-4793-439b-9c64-c98825456a03,qVeFYveZQEmobBTEMg1RTw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweet Tooth Shirt (White Choco)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2759, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:47.607Z", + "ThumbnailImage": "NRd9D3di1kKciSpywTnJwA.png" + }, + { + "AvatarItemDesc": "39dde11e-7aa1-4bd2-8532-62665e8d8dd3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gentlelady Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2373, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:30.353Z", + "ThumbnailImage": "wUMF4BFbWkqp6MofjZVxOw.png" + }, + { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Mittens (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 593, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-01-10T20:33:07.01Z", + "ThumbnailImage": "0hlts8hq83dvp3ifo504f57oz.png" + }, + { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,09Cg6dOq2kC2-tI5yyGSYg,xq7bizx6UEGaMTHB9zI3pw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Mittens (Snowman)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1594, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-23T22:21:24.43Z", + "ThumbnailImage": "9k6nv0za82bel8lvz8220tor9.png" + }, + { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,83jS7d-cUUC_GNDcGpiDxw,jQjfiz2i6kaPfrkjnBGxBA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Mittens (Vermont)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1674, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:05:24.137Z", + "ThumbnailImage": "0iiuzgowl2qneslonnzfktvaz.png" + }, + { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,afWY5VGiF0isGn6qpo4KeQ,_yvss6L59US4-8QYZgcCdA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Mittens (Frost)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1229, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:04.827Z", + "ThumbnailImage": "00oq8k2l0ag3pn1lp8zpc36rz.png" + }, + { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,e6hTzFc-fEiJe0L4jDVxRQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Mittens (Reindeer)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2680, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-05T20:28:33.517Z", + "ThumbnailImage": "zwdzcRCLDEeGDboAcpAzOQ.png" + }, + { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,MmGNESXgOkiZ0xCG41E9ig,Nc6jwNeK_kyajH5xKzCNVw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Mittens (Ugly Ham)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1975, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:21:21.67Z", + "ThumbnailImage": "e6jg4ugpje9gdl4iyf223r1e0.png" + }, + { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,SWvJWvMDpE-it5PFoPgERg,jQjfiz2i6kaPfrkjnBGxBA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Mittens (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 949, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-10T23:52:10.39Z", + "ThumbnailImage": "aiitap49m6e7fam5fzxlgszq0.png" + }, + { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,tyzdtSkR9k-YCnjNvPAT6w,_yvss6L59US4-8QYZgcCdA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Mittens (Pine)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1230, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:08.053Z", + "ThumbnailImage": "9uo8iwvaprweq4i5xoa11qb42.png" + }, + { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chunky Scarf (Yellow)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1965, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:19:14.85Z", + "ThumbnailImage": "5gq339wje3p8y6ppfyku4gwyt.png" + }, + { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,09zFwIT2AEaQsijLJR2aSw,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chunky Scarf (Beige)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1968, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:19:25.143Z", + "ThumbnailImage": "6cyfecuvuiz6xxc0mom9o8a12.png" + }, + { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,g4_xqu9o9US9lIiBsn2BKQ,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chunky Scarf (Olive)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1967, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:19:22.51Z", + "ThumbnailImage": "a3r79cjrswbxqhnvo4sy9xfav.png" + }, + { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,mtIyC_me2EuHSur1ghsKDA,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chunky Scarf (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1969, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:19:27.973Z", + "ThumbnailImage": "2wll5s9pcyyfdicg3i1sgsbf4.png" + }, + { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,RvVVu7gWUEmofuJiZqevlg,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chunky Scarf (Purple)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1966, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:19:19.287Z", + "ThumbnailImage": "015zn2g9spl2iit7pplji0g62.png" + }, + { + "AvatarItemDesc": "3ae0eb82-13ce-43a2-bbc2-99a1cdbec63f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Crab Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1472, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-24T21:34:29.59Z", + "ThumbnailImage": "6l2rw2xqkm2h6er2jcsouoohm.png" + }, + { + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Belt (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": "", + "AvatarItemId": 596, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-07T02:21:13.237Z", + "ThumbnailImage": "4b0c6i1j57butbjhen02dvnxd.png" + }, + { + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,53dd9e44-7096-438e-a7c3-11d7c307426f,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Belt (Brown)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 613, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:49.847Z", + "ThumbnailImage": "3rvrjylez3infpqjran7vpvjs.png" + }, + { + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,c3c9f89c-580c-43c4-b38b-07394044e0e1,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Belt (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 614, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:51.047Z", + "ThumbnailImage": "a8hpjaq8s1osstq81y66f1yk0.png" + }, + { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Jacket (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 601, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-13T00:04:26.273Z", + "ThumbnailImage": "5ynt63fbqq9vg0dnp6obm10jk.png" + }, + { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,556141f7-6fbc-4065-9faa-8d8240a93d7f,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Jacket (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 607, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:42.113Z", + "ThumbnailImage": "5ftzyq0wpssi4a8hsrmla5jml.png" + }, + { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,d81d0b62-e052-46c2-9252-4bc5fb219f53,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Jacket (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 608, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:43.603Z", + "ThumbnailImage": "69yr1pl69y8de2fpn7tvc0f34.png" + }, + { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,xGmnUGF-Ck-jP43r8tVVjg,52053afd-9f12-4fec-a358-7eb3fe8c19bb,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Jacket (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1112, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:14.817Z", + "ThumbnailImage": "bm2ft9q0v5z0q0i1x8nutm0yw.png" + }, + { + "AvatarItemDesc": "3b30adc7-a1ad-46ff-96ff-08e656396c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boombox*", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2734, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:35.557Z", + "ThumbnailImage": "BwziYgoOMkSILcJf4wBllg.png" + }, + { + "AvatarItemDesc": "3b792b59-50c0-4c28-b367-fc694b1d65d1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Belt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2417, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:30.403Z", + "ThumbnailImage": "scABHZiEIEOr3uyq1HhN5A.png" + }, + { + "AvatarItemDesc": "3b792b59-50c0-4c28-b367-fc694b1d65d1,0Ua_WtxcNEWc_KoRuuHhtg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Utility Belt (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2419, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:34.48Z", + "ThumbnailImage": "wWHYtq4i-EeTTmy0RHGJqQ.png" + }, + { + "AvatarItemDesc": "3b792b59-50c0-4c28-b367-fc694b1d65d1,PXssHhcJsUmUKGA8T4u85A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Belt (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2418, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:32.373Z", + "ThumbnailImage": "_pw8woutPUabGOMaUuOihw.png" + }, + { + "AvatarItemDesc": "3bb50a88-09ae-48c7-a42c-df5879680eff,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Construction Gloves (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 270, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "4w02bnkzhi1ylgnq3yy60xyag.png" + }, + { + "AvatarItemDesc": "3bceb51c-ef29-4942-8b8b-a15ed4a41451,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Moon & Stars Earrings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2291, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-10T15:40:37.973Z", + "ThumbnailImage": "emdth023j0ib2692bu9zs42fg.png" + }, + { + "AvatarItemDesc": "3bceb51c-ef29-4942-8b8b-a15ed4a41451,4lwF00Rvb0Kr3FJz07HlOQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Moon & Stars Earrings (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2292, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-10T15:40:39.193Z", + "ThumbnailImage": "d6l7ba33mqkha8zbtzg8cty02.png" + }, + { + "AvatarItemDesc": "3c2ed30c-ca2a-4f9f-9bfa-ffe561c4a686,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Retro Layered Jacket", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2768, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:07.55Z", + "ThumbnailImage": "q3OFxpl3vkyZ2Y6zGTfobg.png" + }, + { + "AvatarItemDesc": "3c9acb9e-3353-4359-aa5a-ae9512b086b4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scarecrow Wrists", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1176, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:52:54.323Z", + "ThumbnailImage": "6vc9gb07nhld11lkb3agtr3xq.png" + }, + { + "AvatarItemDesc": "3c9acb9e-3353-4359-aa5a-ae9512b086b4,dro7VLV8BkGjqpPAbJheYA,bNA44H2wzUy-FkWgyOq1Kw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scarecrow Wrists (Creators Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1177, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:52:58.203Z", + "ThumbnailImage": "8otr4d3cafso2wpwxnuskm5o5.png" + }, + { + "AvatarItemDesc": "3cd52c5d-0c46-41c0-8254-c4542805da31,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pioneer Bonnet", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2264, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:14.947Z", + "ThumbnailImage": "Av7hkeKA7Ei1Stn-Fk2txw.png" + }, + { + "AvatarItemDesc": "3ce86805-987e-4958-bcc9-57d89c4a5b1a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Star Glasses", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2168, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:49.62Z", + "ThumbnailImage": "PbHPcqrg4EqJp9-zB9HpRQ.png" + }, + { + "AvatarItemDesc": "3ce86805-987e-4958-bcc9-57d89c4a5b1a,PGZihr096kC4XZvHfmVMzA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Star Glasses (Popstar)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2779, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:42.31Z", + "ThumbnailImage": "Qs_cSEoU-Uy3_fGkJeIHKg.png" + }, + { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Ears (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 44, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "a78j3mr78eeqcg6enr7t2usio.png" + }, + { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,37f8378b-b98c-477a-b8c9-9340772800b5,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Ears (Creators Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 712, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-11T22:02:11.383Z", + "ThumbnailImage": "ee3wf3szcjj03dklm3r2yu3qx.png" + }, + { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,713781e5-ce47-41c6-a24f-94d42a565e30,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Ears (Brown)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 713, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-11T22:02:12.837Z", + "ThumbnailImage": "e4o0sq9fto4a26lfver3ezwyq.png" + }, + { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Ears (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 714, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-11T22:02:14.413Z", + "ThumbnailImage": "cs7qiwunx61p8789gg5w4alhp.png" + }, + { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,c1e430c5-fd8d-4032-9e3f-8d87cc8784da,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Ears (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 715, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-11T22:02:15.83Z", + "ThumbnailImage": "9k2zja3ouictarzennr87c6lx.png" + }, + { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Vest (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1231, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:10.867Z", + "ThumbnailImage": "4ktwnvhbdb6vrphngnp2a7pne.png" + }, + { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,9RPbhHJWBkqwpDbMg-QumA,Qzklnrvw0EOiZ1mrj_nAYw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Vest (Premium)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2050, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:41.717Z", + "ThumbnailImage": "l-xQVuiMukee1yhQpZD6Dw.png" + }, + { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,bJXcVtY7qUK101QUAgr05A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Midnight Gala Gilded Vest", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2561, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-07T21:47:03.197Z", + "ThumbnailImage": "NMm13SJapEefUXYk6zAzcQ.png" + }, + { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,ffHKr5EcIU24PbAtWSnalw,bVrkIyADCUiGNYWdmP_HPw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Vest (Red)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1232, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:14.707Z", + "ThumbnailImage": "3h61nzryygyv3hlalnxl445sd.png" + }, + { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,m4W5D0Oa9kaWa-8I96YYzA,WF_fg80f30qvHit0vGBwCA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Vest (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1233, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:17.36Z", + "ThumbnailImage": "8a8z4irf5f2f0qemw44a9ksy3.png" + }, + { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Electrician Shirt (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 351, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T22:31:31.823Z", + "ThumbnailImage": "7mhhpensvbg501x8mtatplhsh.png" + }, + { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,5fb2e235-8c67-4335-b432-edb10db2b139,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Electrician Shirt (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 355, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T22:31:40.93Z", + "ThumbnailImage": "40dmxzroivdmghm7ola3zu9u1.png" + }, + { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,67fc9269-8dd8-4d6f-b594-c77e716f2482,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Electrician Shirt (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 353, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T22:31:35.853Z", + "ThumbnailImage": "a4ha61zluoi17g7smiinsv5pp.png" + }, + { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,b539777f-48b2-44a2-9d63-17ac703e4d57,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Electrician Shirt (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 354, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T22:31:37.063Z", + "ThumbnailImage": "ef0ejvn9b4x628qk2dfjie7xo.png" + }, + { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,b995b419-1897-4c1d-98be-83d551f7ba71,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Electrician Shirt (Grey)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 352, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T22:31:34.137Z", + "ThumbnailImage": "73egrs7lt4bztq4mkimehdlwx.png" + }, + { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Gloves (Brown)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 321, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "2bncfuckcjmwaa7wano2sn1od.png" + }, + { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,002b07bb-4256-44ce-8ca4-25510e70b6b5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Gloves (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 333, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-20T18:24:56.927Z", + "ThumbnailImage": "9vn2nq6cpu4mjyomplb7mld09.png" + }, + { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Gloves (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 325, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "7botyxuklwv4dbcddyrwdpcbc.png" + }, + { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,90869e86-cbc5-4024-9d08-fcdc41c64eb5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Gloves (Grey)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 324, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "97ynsh86vqwidiuno90esdvqs.png" + }, + { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,bzYdPb8GWUS-CgT4wrziIA,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Gloves (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1103, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:41.373Z", + "ThumbnailImage": "de8u98lwjl6796f9eeq8g7zfr.png" + }, + { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,e821aa74-2d47-4388-bcfb-1893b8a83a52,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Gloves (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 322, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "648nagff1d7nh5vgo6tx3tpqr.png" + }, + { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Gloves (Cherry)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 323, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "7mr1xqf0fhgcv6v8p96yba2sx.png" + }, + { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Hat (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 599, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-13T00:04:22.817Z", + "ThumbnailImage": "dl4lc9lujy638xdphs121fg3k.png" + }, + { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,17040a88-87f1-4613-b439-3316e33dbd48,71fd06e3-cac8-4923-a09c-ef91183712d2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Hat (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 603, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:32.64Z", + "ThumbnailImage": "5o6eyu7tmzl4ffq27fn0ucofj.png" + }, + { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,f9aaa7c5-59bc-486c-9a6e-27a8ac618f84,4cc0ea9f-65af-486f-8319-02b85ab5197f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Hat (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 604, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:37.94Z", + "ThumbnailImage": "b90z3pydklkb08tidovz5jd1g.png" + }, + { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,jQwNBXyoU0Gk4FyNw6jFxg,4cc0ea9f-65af-486f-8319-02b85ab5197f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Hat (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1128, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T20:01:03.567Z", + "ThumbnailImage": "7zbbv8oqo767y92w7mp1p6brm.png" + }, + { + "AvatarItemDesc": "3e139dd9-4757-43a8-8546-8da70dc17f0a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ranger Stache", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 109, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5xt4rvf95k2jm6bpmmwurfs07.png" + }, + { + "AvatarItemDesc": "3e307eca-0850-4d85-8cc1-f5c176bfa7e9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Apocalypse Scarf", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1804, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:12:03.057Z", + "ThumbnailImage": "3k1od2jqyltyokb1zgvbyxoll.png" + }, + { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (Sleeveless, Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1201, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:05:49.823Z", + "ThumbnailImage": "bb4i0uki9qbf8p96v4jfo349e.png" + }, + { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,4Eck_dNL1UKlIZWsA1YppQ,WeyKw_WS70Cx3NZdOaxGeA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (Sleeveless, Grey)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1205, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:04.717Z", + "ThumbnailImage": "dn6y0cqf5ukxig24sgivzxa2i.png" + }, + { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (Sleeveless, Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1204, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:01.793Z", + "ThumbnailImage": "3t7w6vu3h429ps4eurav4diui.png" + }, + { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (Sleeveless, Black)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1203, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:05:58.26Z", + "ThumbnailImage": "0x06arb0upzvorpzdr0ci4qjo.png" + }, + { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,wMo3Bq1aXkCMFSRJft81BQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Punk Jacket", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2763, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-30T17:21:13.407Z", + "ThumbnailImage": "AmL-fduRx06s08e_Pzs1tg.png" + }, + { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (Sleeveless, White)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1202, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:05:53.483Z", + "ThumbnailImage": "5hykjpkvkk03yf3qjii3sm1ii.png" + }, + { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Headband (Primrose)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1444, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T23:28:25.747Z", + "ThumbnailImage": "9hmp8axdgbs7r6mungzjw2kzt.png" + }, + { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,Asfe0ZRi50eryD5wlJzgzA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Headband (Dahlia)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1449, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T23:28:34.877Z", + "ThumbnailImage": "afqbc9aj7hwgkwft5kyonc1xk.png" + }, + { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,B9DJPqTeYUuPnPHRbKzEJA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Headband (Poppy)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1446, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T23:28:29.37Z", + "ThumbnailImage": "7nuouk86sz6hwwhfoh6ca9e3a.png" + }, + { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,fV4H_1ZXx0-OVtlasI-xGQ,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Headband (Lily)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1445, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T23:28:27.79Z", + "ThumbnailImage": "0gg1ctgab27af7zjuvqitr0zi.png" + }, + { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,J5VsmblfWU2MeUjNo0fz1Q,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Headband (Begonia)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1448, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T23:28:32.76Z", + "ThumbnailImage": "4sf5uwmo0j53djcg0konx31j5.png" + }, + { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,yXZO-donI0SHB9-TT0jUdw,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Headband (Paradise)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1447, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T23:28:31.077Z", + "ThumbnailImage": "1u22xuxo0l7hbu4dipegf91f6.png" + }, + { + "AvatarItemDesc": "3ec19cb7-d0a3-4c35-a7e0-dc1f8609d373,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pretzel Vendor Tray", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2275, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-01T19:00:26.713Z", + "ThumbnailImage": "TtA9vfjAmUSSZ0HliWFsDg.png" + }, + { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Guitar Pick Necklace", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2736, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:42.26Z", + "ThumbnailImage": "PEHKs2wQe0SFdV5ekTdSkA.png" + }, + { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,0FlA_T8GsUe9PdiZamlP_g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Guitar Pick Necklace (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2737, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:43.917Z", + "ThumbnailImage": "GjQ7GjOgmUSLmyl9DH0hjA.png" + }, + { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,2r_gYLhQrkS0bjwaxLecfw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grey Guitar Pick Necklace", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2738, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:45.753Z", + "ThumbnailImage": "EfUdI1XtV0eRy8PsZBG2dg.png" + }, + { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,dtuR9xLXVUGzSi2G1DMh7A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Red Guitar Pick Necklace", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2741, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:50.557Z", + "ThumbnailImage": "h6jjmTpeBkGLdb3Sbt_-0Q.png" + }, + { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,Gct9Vt-L4UiTjAl61hsebQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Guitar Pick Necklace (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2739, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:47.393Z", + "ThumbnailImage": "rVsH83vYHkO80KaIwEVyyw.png" + }, + { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,U8ZZiMEeZ0-qJfcpqBP72A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Guitar Pick Necklace (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2740, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:48.94Z", + "ThumbnailImage": "-IEuy3vB4kK_xxTTWTsQXw.png" + }, + { + "AvatarItemDesc": "3R_zf8xliEiurVU8GwaItg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Queen Gown", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 953, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-11T23:14:48.097Z", + "ThumbnailImage": "7lqx31eaisz33b3nvpajuxr47.png" + }, + { + "AvatarItemDesc": "3R_zf8xliEiurVU8GwaItg,iqSyLD37IUejWYa8ndvqnQ,qrXO8rdEaUqUCXC1QVkhsw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Queen Gown (Lilac)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1940, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-09T18:26:48.137Z", + "ThumbnailImage": "edfuldgko8416a06hqug8ckhi.png" + }, + { + "AvatarItemDesc": "40258a3d-0d5b-4b67-bb99-4bafc6410311,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Helmet (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2487, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-11T18:02:04.517Z", + "ThumbnailImage": "PaCn_gU9XUWR1kli2ZdIYQ.png" + }, + { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Gloves (White)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 710, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-06T19:33:52.737Z", + "ThumbnailImage": "36kccfcoypwfay2raguim9kb9.png" + }, + { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,1919d319-6cce-4500-8766-15fed6a13fa8,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Gloves (Gold)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 703, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T19:45:56.727Z", + "ThumbnailImage": "dqln9eqsu4l7dk5wpe8ad2i8c.png" + }, + { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,lBe3yxuE40eBmTrnEHBqQQ,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Gloves (Purple)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 927, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:03.07Z", + "ThumbnailImage": "82jnl4qpioioo5e84i408z96v.png" + }, + { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,oZ8k0Qv3SkG-DkY0_dP7UA,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Gloves (Teal)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 928, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:04.147Z", + "ThumbnailImage": "egoh9oarmlgl1e2wh5az6t7vu.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 6, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9tssl8yucapudl7wbupmjwwfw.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,0809a5cf-a0f3-4614-9f98-71518524518a,3290f148-1bd1-4ffd-a947-61fd0529af05,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (SciFi)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 563, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-13T20:56:57.173Z", + "ThumbnailImage": "ckopqewba1tguffkue6s78rc3.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Grey)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 11, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "cwxdnevuziov7r3meknz7vmkr.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 663, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:16.37Z", + "ThumbnailImage": "9x7n4sd9ecxc01cpbo417a6h9.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,484b6c13-af22-4ad5-8c43-34c0de095d49,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Light Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 12, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "c4pq7xaobf8onr988cn3t6lzb.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Orange, White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 667, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:26.44Z", + "ThumbnailImage": "8a4fwzyn75woyrsc9rz1hucpr.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 13, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "338vomh9pt5m5bf07wih64yjo.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Yellow)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 16, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5uw2gb9nq7yeqmoplvw1pcsqf.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,6dd95046-acf8-42fe-ab78-80a334096a9d,56a92c8d-af53-413e-929e-4a9a3cfad780,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Red, White, Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 668, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:27.603Z", + "ThumbnailImage": "5j9o29zmheavd8i64j65gc7d5.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,7d8e55fe-3c34-4b4b-9753-0021f6cc6454,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Cream)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 664, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:22.347Z", + "ThumbnailImage": "6xdunx482y5cr10gt2joszy8u.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,8377ab96-c908-457f-9fee-b784c9a759f3,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Red, White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 20, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "1sdg06t7cb2h44qy4zmiv7uz8.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 7, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0sr1gkccjdo3hx6ruc2ss61p8.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Pink, White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 666, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:25.033Z", + "ThumbnailImage": "d1xnxod7dtl3g6htemy60mxxj.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Pink)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 14, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6onf6k881dne4cqk3bid15ryf.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Blue, White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 665, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:23.827Z", + "ThumbnailImage": "bt1et6gecchq8vwnxdydsijvs.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 15, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5kh0jn19pdtrpbc2g180026s5.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 10, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "4nxr6u9ei794sh6gu0ucu4ddi.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,RnrXuIRvMkeW5w1lcNiuaQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soccer Print Headband", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2077, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:14.543Z", + "ThumbnailImage": "dl4fJip8EEukov2aRWgT7A.png" + }, + { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,TeSudgm-NEy3DXe3z_VRqg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headband (Retro)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2076, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:11.677Z", + "ThumbnailImage": "JGqSITx8dk6mMtS4gTrMaQ.png" + }, + { + "AvatarItemDesc": "405f20aa-f888-4e21-b322-34d11017ff16,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frog Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2228, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:34:47.327Z", + "ThumbnailImage": "b4ixc77euj1q8qnhp0oronjic.png" + }, + { + "AvatarItemDesc": "405f20aa-f888-4e21-b322-34d11017ff16,f-RfHoCWik6QgNKDhCs7Vw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frog Backpack (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2690, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:38:13.097Z", + "ThumbnailImage": "6s01rm1gm99uf83uib3fvl2fe.png" + }, + { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Crown (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 719, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-20T23:58:00.79Z", + "ThumbnailImage": "76b2m8j7wi2u4yhfscwdacit8.png" + }, + { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,E1GfXDLUaUKaG9hTLAfFPA,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Crown (Silver, 2019 Fantasy Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 962, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-01-18T21:17:27.29Z", + "ThumbnailImage": "auqhtl8pre7pp954pnbtgfdm6.png" + }, + { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,QkfA71-1z0qOiZAVrbzhtA,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Crown (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1304, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:20.24Z", + "ThumbnailImage": "aq5apzhwgqow1ci3zzpz4gmlg.png" + }, + { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,wCe2yC2U1kyYvPd8Z1rX2w,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Crown (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1303, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:15.783Z", + "ThumbnailImage": "6e9fx1i4uk389yevktgtc9s2e.png" + }, + { + "AvatarItemDesc": "4095a06c-ccdb-41a0-ac95-5a97372c9a02,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Disco Ball Earrings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1956, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-03T22:57:55.843Z", + "ThumbnailImage": "b70wx32unnc05ssstrdjeqdl9.png" + }, + { + "AvatarItemDesc": "40c1f20f-182c-4751-afd1-b572b0fd061e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dirt Bike Gloves", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2859, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:40:48.9Z", + "ThumbnailImage": "Mz1ko5b7O0GghTIcaFyRTw.png" + }, + { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Torso (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 520, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:01:57.623Z", + "ThumbnailImage": "c6y6kr8pkktfh9j9jrwbdbiop.png" + }, + { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,64545dcc-a8eb-4c69-a539-78ee73a2d327,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Torso (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 521, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:01:58.547Z", + "ThumbnailImage": "dbbbxrdwflnaiaj1nx1ovh07r.png" + }, + { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Torso (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 523, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:02:00.3Z", + "ThumbnailImage": "6crngu0sszkwju23mkpdiihjs.png" + }, + { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,909ed249-ce09-4304-8b02-56794fa7567d,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Torso (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 524, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:02:01.117Z", + "ThumbnailImage": "cfce1ejdgdy1jvubqb4vyv8k0.png" + }, + { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,aBQ3R9boek-mYeSYSNvDbQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Torso (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1315, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:06:26.05Z", + "ThumbnailImage": "dci33hnvmb7vrbgaa8u6zvrlg.png" + }, + { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,e02838f8-4029-455a-b35c-dd40f972b05b,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Torso (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 522, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:01:59.45Z", + "ThumbnailImage": "40hz8pm5dpxvycg72a9eqhqu4.png" + }, + { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,Tbrc2MlSlE6mKua8qSoluQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Torso (Leather)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1096, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:18.373Z", + "ThumbnailImage": "9hmvdv7ncpyo5f6agy7dh9rxv.png" + }, + { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Safari Hat (Tan)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 380, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-30T23:38:19.98Z", + "ThumbnailImage": "9s3qbhep0iagvjuzfxnb10ab1.png" + }, + { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,0dabda0d-842c-4d39-a6b9-a8ca3ec20825,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Safari Hat (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 389, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T21:28:26.303Z", + "ThumbnailImage": "ah0cj8axzd6ex6de2x2474x3m.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1389, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:43:56.653Z", + "ThumbnailImage": "3kk89nprwfzgkc47ddr46nppo.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,_fBrHCkTKUe82QgxCyI-Kw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1399, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:15.713Z", + "ThumbnailImage": "6w4cwzijj4bww69aju5fi9pzj.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,58YffnGSUU6umcI1i0RvZw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1390, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:43:59.52Z", + "ThumbnailImage": "0si8omfozqsiv0jjns5uz7x3v.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,c24f1DNZjEmqkt-FibKUjQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Brown)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1391, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:02.787Z", + "ThumbnailImage": "6go7wf3t618gcga8rjoywcwo1.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,CJKB3OO2CkeEVsAK0jeeDA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Pineapple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2219, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-18T17:40:06.273Z", + "ThumbnailImage": "zsqqOW8x1EqW9fjjiRFwTw.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,F5vJzMfNB0Ob6Abjadho7Q,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Pink)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1396, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:10.843Z", + "ThumbnailImage": "2ejkmb3z1znhlpdst7q3jztb2.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,fLWfBSEO6U6aHrDm3nKFEQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1395, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:09.307Z", + "ThumbnailImage": "e4rjntdbfbgxnzzds63z8k3i7.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,Iezz6gCFfkKdVcmPXIhunw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Orange)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1394, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:07.673Z", + "ThumbnailImage": "2rnnyghpth3r3etbu364c02mc.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,k-WZIhNJAkSpIWLxC2D40Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Beanie (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2438, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:06.047Z", + "ThumbnailImage": "7kcx60xKr0C5aWqnubk3Og.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,SeVmHtrMS0y7gKCYkHcrOA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Gray)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1392, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:04.453Z", + "ThumbnailImage": "clgnc91prro3ozkp7tnx5ld66.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,uDcJZClcFkiNdkEEh9IIyA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Blue)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1393, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:06.073Z", + "ThumbnailImage": "59xbft3ixffciz9wybly1ufd4.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,vbOUaJsGHEaSfQCivNcMWg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (White)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1397, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:12.477Z", + "ThumbnailImage": "7gi71ssytha4oltxzdg3vekb0.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,VE_cHMHKBE2Wuugoqj4rZg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Beanie (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": "halloween", + "AvatarItemId": 2439, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:10.157Z", + "ThumbnailImage": "j73o6WaQmEubCEKCMVcsLQ.png" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,wbFPXIg5gUK3QK6YycZexg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1398, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:14.137Z", + "ThumbnailImage": "5p5se3p4opi1nd646csh6pvsd.png" + }, + { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Coat (Brown)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 383, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-30T23:38:23.14Z", + "ThumbnailImage": "bqf55zk90gccgpaf57wtsf14z.png" + }, + { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,2APfqVnnQUaDYKi-fQg8jg,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Coat (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1611, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:19:20.657Z", + "ThumbnailImage": "2tmvikftvfs2sv1ll3oaqfq0w.png" + }, + { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,bea795cc-aabd-4229-84dd-49ab4f91a445,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Coat (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 409, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:35.353Z", + "ThumbnailImage": "c32bq37y8bertjy6ivb388xbe.png" + }, + { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,da185fbb-ad2b-4f30-87a2-491f24b78ebb,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Coat (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 408, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:34.303Z", + "ThumbnailImage": "66bl5lmlw2ayp67bzz7mlitzm.png" + }, + { + "AvatarItemDesc": "42f1a780-1fe1-402e-bf11-176b768e33b9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Strawberry Side Purse", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2727, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:22.837Z", + "ThumbnailImage": "tP86FtoqYkyI7ZU9u21Ryw.png" + }, + { + "AvatarItemDesc": "42f1a780-1fe1-402e-bf11-176b768e33b9,jzGTu3tSB0WM430AiMGAAw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Strawberry Side Purse (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2728, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:25.363Z", + "ThumbnailImage": "mAe4p7EG9kGOltV99JqDCw.png" + }, + { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Suit (Pinstripe)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 558, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-06T22:34:54.637Z", + "ThumbnailImage": "28199zgfnoo8pyinqru3bjurg.png" + }, + { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,46970903-9799-4d25-b90a-7162c1f5dbef,c2052d8c-fbcd-4462-8f08-bcf5b3dfde2f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Suit (Creators Contest 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 716, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-11T22:02:17.077Z", + "ThumbnailImage": "cqin0ca6oahx1odk9wqkjoqzv.png" + }, + { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,4VkPVbBVLE-eJHilwGMAbQ,HTjlzAlWZ0ezY6w3ngSQSg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Suit (Hearts)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 966, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-01T22:12:59Z", + "ThumbnailImage": "a6mox6qxfhus2uphu75sycnf6.png" + }, + { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,531b4297-b38b-4362-9854-4f2139ea43be,33ee376a-586e-4aff-a7e4-4213445a3e92,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Suit (Herringbone)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 559, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-06T22:34:58.107Z", + "ThumbnailImage": "28rrxlerexeuvbdhwah6qw82t.png" + }, + { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,newGzX_zA0eGUX3Iayq5Ag,6Jv4AJGBYUGP_n4sDcz2Kw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Suit (Purple)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1131, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T21:13:30.413Z", + "ThumbnailImage": "2ohuwbw1u9rnkyon9psv94x54.png" + }, + { + "AvatarItemDesc": "43354e59-4938-44bc-81e0-4fba47d0ac12,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mardi Gras Mask (Carnival)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1325, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-31T00:38:11.83Z", + "ThumbnailImage": "bjo835jgyqtwaijuhly8otljo.png" + }, + { + "AvatarItemDesc": "43354e59-4938-44bc-81e0-4fba47d0ac12,4xp-xZyNWEi_jJCIhAPI3g,Ulie-RkcJEmblLyoucx-JA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mardi Gras Mask (Revelry)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1652, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:56:38.027Z", + "ThumbnailImage": "9x7rlsmit2ca70h5xx2vgtwez.png" + }, + { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Swing Dress (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 757, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T19:04:22.32Z", + "ThumbnailImage": "1ofk56iwklqug6u3ihb27rfex.png" + }, + { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,BLgkgLeS-EyazgPQxGcavg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Swing Dress (White)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 807, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-10T19:02:35Z", + "ThumbnailImage": "aje5q2u76zjjzgeehfysg6dik.png" + }, + { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,eb3SmJTIh0628LrZUkI4KQ,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Swing Dress (Pink)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 797, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:27Z", + "ThumbnailImage": "7wagu7eu1akvlpi9036qjkgkx.png" + }, + { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,NpvUosaJTECohTIAR38egg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ladybug Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2777, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:36.287Z", + "ThumbnailImage": "MGp8JbVCX0OTgJwakQwccA.png" + }, + { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,QzjakcO8tUaPeiI5KBLKtg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Swing Dress (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 788, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:25:25Z", + "ThumbnailImage": "6sddopu5d9s5sghb2jjycwa4u.png" + }, + { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,Yr0mF1EWzEaIyRMOWFiY6w,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Swing Dress (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 789, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:25:27.97Z", + "ThumbnailImage": "3rko5wknqf4g6gbl016rfci55.png" + }, + { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,ZvPidQ57rUS50Qz89ERmLw,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Swing Dress (Halloween)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 790, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:25:31.573Z", + "ThumbnailImage": "clsb49us68oqy8d5uyq5q31r0.png" + }, + { + "AvatarItemDesc": "45695fba-5abc-4c5b-b9eb-949d5174d1f5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Racing Gloves (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1853, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:46:12.32Z", + "ThumbnailImage": "chi1z36iwxalp98kkl4coqu8h.png" + }, + { + "AvatarItemDesc": "45695fba-5abc-4c5b-b9eb-949d5174d1f5,oFjt2tSsa0CJ7j0s3P6b4Q,XD9dH8LF_ECmL0TwXJW1zg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Racing Gloves (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1899, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-30T21:02:41.383Z", + "ThumbnailImage": "7trthor2vpnt3r9e6aywi0ohc.png" + }, + { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Helmet (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1153, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:28.913Z", + "ThumbnailImage": "ac4yc0p8960f0pcub6ys93vk1.png" + }, + { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Euf1h1qsZ02evDsyoHYbPQ,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Helmet (Orange)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1152, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:19.783Z", + "ThumbnailImage": "diwahrdx0ag6e8a70yal6uos9.png" + }, + { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,JVZHZm6nGEqE2zEEPoHbwA,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Helmet (Green)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1150, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:10.34Z", + "ThumbnailImage": "6urhwi4bkj3jxkd4pq9lxzapp.png" + }, + { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,L2iFQcL170OajqfW7t6sVw,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Helmet (Yellow)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1148, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:03.823Z", + "ThumbnailImage": "a22f3ny3x4czh17wi8o7cxnp9.png" + }, + { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,lsyYlxY9o0a3TbUrHkxeyQ,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Helmet (Purple)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1151, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:14.403Z", + "ThumbnailImage": "8i6nmv636c2mf1lxl17ox1d4i.png" + }, + { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,zlqLrGEa8E2WW9ey_szREA,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Helmet (Pink)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1149, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:06.927Z", + "ThumbnailImage": "6m4gs8ysz42vgc0rn06moyk71.png" + }, + { + "AvatarItemDesc": "459ff0a0-ad68-4337-9399-57e3b03e4bf6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yeti Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2051, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:47.08Z", + "ThumbnailImage": "kq1OCF490kKmBUv0YF5PPw.png" + }, + { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Skates on Neck (Slate)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2695, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:38:23.657Z", + "ThumbnailImage": "5YfnXd6wCEGAI8JfuYuzDQ.png" + }, + { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,ENYQugZRP06SDh6d-oJcjQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Skates on Neck (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2698, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:38:29.557Z", + "ThumbnailImage": "7vZa1r1ZS0CNjfN_JffQ5w.png" + }, + { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,KdsZQVCA-E2TiEozsSUv7w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Skates on Neck (Brown)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2697, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:38:27.543Z", + "ThumbnailImage": "VLP_xmNQBkWJGvDaXrvrQQ.png" + }, + { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,uQjh0DySZE6M6DzD2VUPgA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Skates on Neck (Black)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2696, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:38:25.65Z", + "ThumbnailImage": "cdkQ8Fl7h0-dBHorHAVq7g.png" + }, + { + "AvatarItemDesc": "45eaab67-19c2-4601-8f80-3565a4dceba4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pompadour Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1199, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:05:36.7Z", + "ThumbnailImage": "6xn7zsaqaimo5w5vryw7cyaxt.png" + }, + { + "AvatarItemDesc": "45f5e714-8a5f-4385-a97f-675066167011,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Seventies Stache", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 112, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "acy5d2ixrgg8d4qlb09csvhm4.png" + }, + { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fancy Cape (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1584, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:06:59.907Z", + "ThumbnailImage": "bbiqjubciywrt9n52sthcrv57.png" + }, + { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,bTAQ-CkyRUOZoXqXuap2Ig", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fancy Cape (Basketball)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2161, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:28.917Z", + "ThumbnailImage": "GadkXWWyHEOkWhpEtq2mrw.png" + }, + { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,crl8VlZ59kGxG01noGEWmA,EckOEU0mJkGIVDvYoKBN9g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fancy Cape (Gilded)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1585, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:07:02.587Z", + "ThumbnailImage": "appu9oibb8u3du39aint01ugz.png" + }, + { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,l2BbgbHCe0S_SDUbfmpSeQ,XHJ0lW4zYkGcL5UyI1HfEg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fancy Cape (Premium)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2027, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:08:28.417Z", + "ThumbnailImage": "-FiTuUGn-kGGXgQjYaAC7Q.png" + }, + { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,WqX8pAB7LkyPKEzIUCtnNg,8Y2F-cVStkSn9YB47VCoKA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fancy Cape (Holiday)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1925, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-05T22:17:47.087Z", + "ThumbnailImage": "8eli5j86ufvn0nzgy2emp66xo.png" + }, + { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flapper Gloves (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 589, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-14T18:57:33.243Z", + "ThumbnailImage": "acmwuunndj6ex6zr3885jbewo.png" + }, + { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,2cf2b644-3fa6-449c-9fe8-d0ab917f3106,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flapper Gloves (Gold)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 644, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:25.997Z", + "ThumbnailImage": "3v8m5i8t4wkf4669wvp55t2ex.png" + }, + { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,30c61e63-5e09-4a6f-8915-1e1fe4d55cf0,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flapper Gloves (Silver)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 643, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:23.793Z", + "ThumbnailImage": "5b73p030rhcezdz56gzz5ke13.png" + }, + { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graphic Cap (High Fashion)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1218, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:07:10.573Z", + "ThumbnailImage": "9gmjkk497nr0pq75gtfcilfjl.png" + }, + { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graphic Cap (Buckaneer, Collector's Edition)\t", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1721, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:12:31.097Z", + "ThumbnailImage": "cllwjm7phajd4j2pjnk1lq87l.png" + }, + { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,-C1ui-T280GEfW6-vPQ-ig", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flat Brim Hat (Basketball)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2221, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-24T19:42:09.56Z", + "ThumbnailImage": "IDVmIRptBkSiYWCmC3zeVA.png" + }, + { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,cpTKHXjj0kulivZCKVQqiA,Mrf17aidXEeCF-fFURUUcQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graphic Cap (Hyper Ramen)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1220, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:07:20.093Z", + "ThumbnailImage": "3cnf1qorsglce2vtvvj1nf4cz.png" + }, + { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graphic Cap (Sticker, Goblins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1219, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:07:15.737Z", + "ThumbnailImage": "bfdnrz82ejhtasrdzh7azcyxx.png" + }, + { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Goggles (Brown)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 381, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-30T23:38:21.117Z", + "ThumbnailImage": "0xipn9pseh8wykz3t6hpadi3l.png" + }, + { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,23428ca9-be75-4146-b400-df01d1dadac9,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Goggles (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 402, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:27.3Z", + "ThumbnailImage": "edzgkcu9p46xum15ttgjb0r3p.png" + }, + { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,7b82c3c5-fd1f-45ec-b83f-e32668aa8dce,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Goggles (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 401, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:25.657Z", + "ThumbnailImage": "dzmu6jtu8g9jr5k1y002d2m6v.png" + }, + { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,qJGX62O_HUiZWN61NAc1Lg,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Goggles (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1629, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:42:54.72Z", + "ThumbnailImage": "bx1ejsvvshgpo945a7kst7w1x.png" + }, + { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Gloves (Orange)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 326, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "7izb4xifehd19st4qgaf70jqg.png" + }, + { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,4ElTihrMA0ipcgeb9UG01Q,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Gloves (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1106, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:53.233Z", + "ThumbnailImage": "0crijq94h4xfrkph110y254b5.png" + }, + { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,68273c9e-96d6-4ddb-aaab-d99229e864d5,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Gloves (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 331, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "0u3e41638g5e5afvuyqxror2x.png" + }, + { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a089bcc6-798d-4777-98e2-7afd290dc6b6,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Gloves (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 329, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "3qre9n3k1ubvucbztpra48in4.png" + }, + { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a36d252b-16ac-4a82-bece-de145147e7d9,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Gloves (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 328, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "5zeohu1rh1ox5hoix80fbfl50.png" + }, + { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Gloves (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 327, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "anqd573o831mzengh9221nawt.png" + }, + { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Gloves (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 330, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "0k5d0e2dbwkixi838nrtd06ll.png" + }, + { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,LVnNy7-nFkyvi19nNcdFgQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Gloves (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2326, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:52.52Z", + "ThumbnailImage": "lmmMFWBKYUqm66trPr35Yw.png" + }, + { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,uWe5nxA4qkaicmXm3tMw9g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Gloves (Invasion 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2713, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:42:03.51Z", + "ThumbnailImage": "9nzqt8ExHU6STyCJinXlUA.png" + }, + { + "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elven Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1797, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-17T16:05:26.56Z", + "ThumbnailImage": "8ss3ohgl1cgeoknp1gcpackva.png" + }, + { + "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,M5QwJJRRBUy42HLyp6ghtg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elven Armor (Jade)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2191, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:23.323Z", + "ThumbnailImage": "sR5683LqRUiQsI8U2LXZVA.png" + }, + { + "AvatarItemDesc": "4885683e-a87e-4d27-990a-c16f1df7a28f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Retro Gamer Gloves", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1960, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-03T22:58:22.777Z", + "ThumbnailImage": "em7ibip6ffvp7q0jpp5qcx4j5.png" + }, + { + "AvatarItemDesc": "4885683e-a87e-4d27-990a-c16f1df7a28f,hKBSHovOeUy84yCbvutkOw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dark Retro Gamer Gloves", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2908, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:49.02Z", + "ThumbnailImage": "_uzRLVwLNku8gCel1chHsg.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1400, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:48.343Z", + "ThumbnailImage": "2jzqx1rojlzf9q9pado9u0t1o.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,3Xlg70ev6UqdcIAmJ9hmlA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2095, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:30.213Z", + "ThumbnailImage": "8i3Shpwj70mbaFZ0_YazXg.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,9tTuREkoQkW0ycqOjWXsiA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (White)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1403, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:52.947Z", + "ThumbnailImage": "7k8ttzh9wehwhm80g5p4gopa0.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,C8b4lTZ-TEOlCVv7Gs219g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie with Brim Holiday Market", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2094, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:28.21Z", + "ThumbnailImage": "nJX4hvcYAEaOsI07CK_m0w.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,gT0WA7Y1H0my5uMlteIMMg,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1408, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:59.94Z", + "ThumbnailImage": "7bp85mlgk50a43bna39drnbwj.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,Hd9xNn-UA0uxwv1axFVqGQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Pastel Pink)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2093, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:22.917Z", + "ThumbnailImage": "CCiQ0TXblUORW6PKW2gHkg.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,m7KXVnULz0iHvKfCFzFoyw,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Pink)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1407, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:58.557Z", + "ThumbnailImage": "340d5n3lde4t69b8l5kc2jupr.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,MVkY4sU5BkGC4QhweRiyIA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Orange)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1404, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:54.37Z", + "ThumbnailImage": "cijefzd028p1ktkkbndlk0iio.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,QCOMyeCUK0Gudx4ljBmAdw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beanie (Musical Notes)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2774, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:29.857Z", + "ThumbnailImage": "ODGgLfHg60m9YanIDHhtGA.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,RL6HkufaJ0yubTpCGVI9eQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1402, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:51.51Z", + "ThumbnailImage": "5tpxbss93q52nayhe1d5fpao8.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,t2bByt5oUEG90PMMePCP6A,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Gray)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1406, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:57.157Z", + "ThumbnailImage": "bl1xc0woq0y8j4zowmiyc2wbz.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,ux9DQVSRyU-_5GA-t197OA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1405, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:55.773Z", + "ThumbnailImage": "9bijtfphf1w416loccnpc2v4m.png" + }, + { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,-XSM6ZcSjE-vrWL7jyF4fQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimmed Beanie (Blue)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1401, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:44:50.037Z", + "ThumbnailImage": "110fo1snzkucd8yr0l83dt96u.png" + }, + { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Leather Necklace (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1742, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-29T20:42:33.82Z", + "ThumbnailImage": "4wuzoct4aayihilzg800scbtb.png" + }, + { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,COZbkLDc20mdUlWSkqMX-w,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Leather Necklace (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1747, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-29T20:42:44.947Z", + "ThumbnailImage": "b5f3a10evhggitywma8wlxt69.png" + }, + { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,gsHBUqA1gE2XNTPA3VvBLQ,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Leather Necklace (Brown)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1745, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-29T20:42:41.01Z", + "ThumbnailImage": "ctkuncvuk0nur9iwwe48eo2ed.png" + }, + { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,JUQn0_PLIkytCrkAg0FflQ,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Leather Necklace (Tan)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1744, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-29T20:42:38.993Z", + "ThumbnailImage": "8umo8jp69be1v9log6wxdhkct.png" + }, + { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,SDbpnjVYmEGQneK5fhZ0Cw,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Leather Necklace (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1743, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-29T20:42:36.717Z", + "ThumbnailImage": "05r4o0sr1cfy4hmhwsw9aaygk.png" + }, + { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,uwoWPY4YjEmZSQcNCrx1Gg,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Leather Necklace (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1746, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-29T20:42:42.79Z", + "ThumbnailImage": "1z2bq777lr7jukwio4h4ahhcr.png" + }, + { + "AvatarItemDesc": "49397e16-1027-4286-9bc4-b59eae565ff0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Side Pony Hair", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 84, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "en7nrykz2qqj8buybdl5qjmo7.png" + }, + { + "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Folded Bandana (Red) ", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1455, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-05-13T21:06:22.753Z", + "ThumbnailImage": "d93bbdei1z4uj950nvf3c8ai6.png" + }, + { + "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,0oMo4q5cLEi9LGpkOFIlkA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Riveter Bandana", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2075, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:10.173Z", + "ThumbnailImage": "QBEmq47zQ0ipqcJfw_re5Q.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "FNAF Hoodie", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1456, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-05-19T23:01:58.937Z", + "ThumbnailImage": "e08mipx3bu50m127eoa5c3js9.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,25X6s0sTZkyzUOKiIt4cGQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Creator Conference Hoodie", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2237, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-08T16:24:39.51Z", + "ThumbnailImage": "oYY2GYyfUUmrxi__mx94Gw.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,a2mUuKOr-UOM5nPpR8dSMw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hoodie (Em Beihold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2833, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:41.277Z", + "ThumbnailImage": "pPyQA-HfpUirnUHijRJeYw.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,bS-St6XLHkSwKt41J7BmKw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alo Yoga Hoodie", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2799, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:29.097Z", + "ThumbnailImage": "grtmSgDkekKbMf5XDtoA3g.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,DOY6LpHq8kui8yDWGsNgZw,48yVsRt8sU6jf3P4wlPA8Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Con Hoodie (2020)", + "Tooltip": "2020 Rec Con", + "Rarity": 30, + "TagList": "reccon", + "AvatarItemId": 1587, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-13T20:11:27.56Z", + "ThumbnailImage": "27ormucbs1iox5kvr9tka0fpc.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,G_QPd8YBe0-n8ywAGLMKBg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hoodie (Jessia)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2733, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:25:00.38Z", + "ThumbnailImage": "84yMtUUfQUGCcvFe82Y2DQ.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,HUxqkzeE-Umq96TgSn0Hbg,48yVsRt8sU6jf3P4wlPA8Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Con Hoodie (2021)", + "Tooltip": "2021 Rec Con", + "Rarity": 30, + "TagList": "reccon", + "AvatarItemId": 1783, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:47.49Z", + "ThumbnailImage": "0w037o55hb7xrlbbz5ndkt3qk.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,jir883uk5k-cEgyAPDtQww", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pullover Hoodie (Premium)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2823, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:55.327Z", + "ThumbnailImage": "cDunfbR1wE-D8-LUSD_mdA.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,Kuh-HrhzTUmuGaw7cpLUMg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Broken Heart Hoodie", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2684, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-12T21:01:56.947Z", + "ThumbnailImage": "ja4C7EX3zkKj0VnySl1Muw.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,QMScBauef0uOE48-YcDcCg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dino Hoodie", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2162, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:31.567Z", + "ThumbnailImage": "IezDzyHOWUy4vzhhR8erIA.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,SJ7DV0meUU6QjksIcAAeRw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pullover Hoodie (Color Block)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2705, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:44.217Z", + "ThumbnailImage": "JpkOsmJyvk23HfK4fWMwJA.png" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,tkuP0sNwjEO3XH5Lf_KqkA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Con Hoodie (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": "reccon", + "AvatarItemId": 2284, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:33.333Z", + "ThumbnailImage": "sg_RSadtBUepyNJrDn81nA.png" + }, + { + "AvatarItemDesc": "4abc2ac4-e60c-49b1-9ac8-4d4751ed78ae,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dino Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1376, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:54:37.017Z", + "ThumbnailImage": "1vas1a6all7s8fowlh0nithtn.png" + }, + { + "AvatarItemDesc": "4b4d239a-ddf3-4f8c-a58a-b8f4c031ae26,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bard's Cuffs", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1888, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-12T17:06:24.723Z", + "ThumbnailImage": "dub0ri6t7szkccf54a8e3p9ef.png" + }, + { + "AvatarItemDesc": "4b51679e-96e4-4a11-96fe-1d2754d12481,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Clock Chain (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2766, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:03.707Z", + "ThumbnailImage": "TzqM7z7igEq2-tMG1UDu0Q.png" + }, + { + "AvatarItemDesc": "4b72736e-6fca-4961-98f2-1d4e199eb1e0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rogue Gloves", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1870, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:20.34Z", + "ThumbnailImage": "5f0fab7drkewxktsldpgux1wv.png" + }, + { + "AvatarItemDesc": "4c032271-a0db-47b0-bfc6-4c330c2c4b21,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alpaca Lights Sweater", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1937, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-03T21:36:34.483Z", + "ThumbnailImage": "emruqyjzh6ox3jrozmu8mooyp.png" + }, + { + "AvatarItemDesc": "4c52478a-b2c9-4520-8f88-52f2262cc6bf,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hot Dog Suit (Mustard)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2379, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:43.02Z", + "ThumbnailImage": "pR32NwZrJUWfiKEdw3CYeg.png" + }, + { + "AvatarItemDesc": "4c52478a-b2c9-4520-8f88-52f2262cc6bf,YR7P-KQLGUKPF7JbW85K7g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hot Dog Suit (Ketchup)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2380, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:46.723Z", + "ThumbnailImage": "Oy7uq9Y6VEi4oYPxwG-aMA.png" + }, + { + "AvatarItemDesc": "4c673a35-c10f-4a8c-b8e0-96a50fe5b97f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pegasus Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1479, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-08T19:52:17.777Z", + "ThumbnailImage": "6a428adukettbzkckyu9updp2.png" + }, + { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Armor (Orange)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 315, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "d0pc71o2msynlo2gg6zblsdb3.png" + }, + { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,1pJN1AfxgUmUN_bTaH3rng", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Iso Suit (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2490, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-11T18:02:12.45Z", + "ThumbnailImage": "tmcuRuyNAkaX-uyikLs9ww.png" + }, + { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,4ElTihrMA0ipcgeb9UG01Q,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Armor (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1101, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:32.853Z", + "ThumbnailImage": "5rzpff3hf3m92tijpthgokni5.png" + }, + { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,68273c9e-96d6-4ddb-aaab-d99229e864d5,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Armor (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 320, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "90qc2umq7k4h8g9c9wgxcr18v.png" + }, + { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a089bcc6-798d-4777-98e2-7afd290dc6b6,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Armor (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 317, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "9matrdtcoznln9t9wjrus86kx.png" + }, + { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a36d252b-16ac-4a82-bece-de145147e7d9,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Armor (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 318, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "2z7ww93ccq8rsr8l3bu6m7ntd.png" + }, + { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Armor (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 316, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "bn2zkvbfzcikfewpjgtd2bgl2.png" + }, + { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Armor (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 319, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "1a78ihg1rn6i5jh196fh166vv.png" + }, + { + "AvatarItemDesc": "4d507dfa-4a99-4ac0-8537-229e9dc0eb4a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Tank Top (Orange)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1017, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:44.987Z", + "ThumbnailImage": "3rr58syq4bpp9v0ot7isaecb3.png" + }, + { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Gloves (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 275, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0rq8z5vxkj1jdvbjqezvbckyx.png" + }, + { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,8053b5e5-0f67-4329-a45d-1ee9fc830820,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Gloves (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 427, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:30.133Z", + "ThumbnailImage": "73tjv2ussx3904ivxkhezp2yr.png" + }, + { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,b444ed0a-eab5-4bd6-af34-d080de74a149,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Gloves (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 426, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:29.26Z", + "ThumbnailImage": "3kkimmvnludjevzzo56uhvuk6.png" + }, + { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,fe5288bc-0e02-4ea3-b17d-dee0e576979d,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Gloves (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 425, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:28.3Z", + "ThumbnailImage": "817bm8rsomfrxcjwad8033u20.png" + }, + { + "AvatarItemDesc": "4e42e02e-33fd-4ff9-b74e-9bde26253c35,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bog Monster Wrist", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1337, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:52.797Z", + "ThumbnailImage": "15ql8y6860hwqib0t4k041550.png" + }, + { + "AvatarItemDesc": "4eaaad39-aa44-4791-8b67-2eafa8305850,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Afro Puffs Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1977, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:05.393Z", + "ThumbnailImage": "1qr2ehkeevot7hvkonb7ygtv6.png" + }, + { + "AvatarItemDesc": "4ee2133d-c419-4fbc-9117-746d756a250d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belt Bag (Cosmic)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 1420, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:46:26.583Z", + "ThumbnailImage": "0x4ghshpxazgbb0zpcyu0g22v.png" + }, + { + "AvatarItemDesc": "4fb6e083-ae10-4c71-898a-6a55138a68a3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gaia Clip (Flower)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2917, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:32:12.02Z", + "ThumbnailImage": "QbAsltVVv0qUrxJJRoYbRw.png" + }, + { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Helmet (Triton)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 659, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-04T22:39:21.517Z", + "ThumbnailImage": "2qs4c3hd1jm20l964lznj7hj8.png" + }, + { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,CahBzgN3D0y46AQsvGC14A,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Helmet (Leviathan)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 923, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:57.397Z", + "ThumbnailImage": "d47yw12jvdnmgznyxtsb774ss.png" + }, + { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,Su7kiW24d0KapNns96JoFQ,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Helmet (Kraken)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 924, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:58.367Z", + "ThumbnailImage": "970zmxcbriwvube7waktj8lib.png" + }, + { + "AvatarItemDesc": "50c9c6f8-2963-4ef3-95d5-e999a898269f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Saija Gloves", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 282, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6mjsnrcz0704f1ablk7vhwper.png" + }, + { + "AvatarItemDesc": "5154be09-bb8a-4917-95a0-51c91b6a4e09,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hatter Suit (Wonderland Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1373, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-01T19:11:11.707Z", + "ThumbnailImage": "2ptrsoi2msj3q9zp0nv3opjho.png" + }, + { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flowered Dress (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 207, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "djd1hn8umzgdrbijc8oam3pqa.png" + }, + { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,1acb1f56-4509-449f-9c6a-065bdeaa9ee3,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flowered Dress (Grey)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 475, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T23:07:45.013Z", + "ThumbnailImage": "e9vo4xrmjapg3t56dbabbraqj.png" + }, + { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,e98c3f98-7844-4d6e-a21c-05027033c18c,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flowered Dress (Yellow)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 476, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T23:07:47.1Z", + "ThumbnailImage": "930kpdjun0nt4qnb2awrj922c.png" + }, + { + "AvatarItemDesc": "51b85276-3a40-4c40-93a1-9df307c3e78e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Messenger Bag", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2067, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:24.017Z", + "ThumbnailImage": "k7-wf2BSPUW8hyIsgm1DCg.png" + }, + { + "AvatarItemDesc": "51e5467f-d310-44f8-80c3-17d7e27450bf,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Retro Gamer Belt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1964, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-03T22:58:31.287Z", + "ThumbnailImage": "5m6k9qeuysh54wzun74y56isp.png" + }, + { + "AvatarItemDesc": "51e5467f-d310-44f8-80c3-17d7e27450bf,pue_FwobQEiaVubgc5eMUg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dark Retro Gamer Belt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2904, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:41.143Z", + "ThumbnailImage": "06VrP-0hN0-WkSvHS02YfA.png" + }, + { + "AvatarItemDesc": "52268f02-b8ba-4a8e-ab3a-7d5928f637a6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gladiator Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1845, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-13T16:23:42.34Z", + "ThumbnailImage": "4wnr9uzel6d0lekcez3cw73vw.png" + }, + { + "AvatarItemDesc": "52268f02-b8ba-4a8e-ab3a-7d5928f637a6,RjX1VTHHoEiNBfXkkniDgw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gladiator Torso (Folklore Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2058, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-16T19:03:50.233Z", + "ThumbnailImage": "bjmkJTDtvkWsVfz6feF-eQ.png" + }, + { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Goggles (Brown)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 305, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "aipia6o2kym88ur3brk8ufjud.png" + }, + { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,002b07bb-4256-44ce-8ca4-25510e70b6b5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Goggles (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 332, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-20T18:24:56.927Z", + "ThumbnailImage": "ayx5bk4f6mojyvfiarqfavc3n.png" + }, + { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Goggles (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 309, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "7a494od9prmwajsibg29z7jaq.png" + }, + { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,90869e86-cbc5-4024-9d08-fcdc41c64eb5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Goggles (Grey)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 308, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "72lfd8j7a44mhv0viedavv2ht.png" + }, + { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,bzYdPb8GWUS-CgT4wrziIA,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Goggles (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1120, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T20:00:00.92Z", + "ThumbnailImage": "2bkz14lxmqlga9phjxk98i0j7.png" + }, + { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,e821aa74-2d47-4388-bcfb-1893b8a83a52,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Goggles (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 306, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "3940162c53c4psfxm652thn6s.png" + }, + { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Smuggler Goggles (Cherry)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 307, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "20x5x09hzrg6c4zcpys1iykz4.png" + }, + { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Keytar (Teal/Pink)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2691, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:38:16.247Z", + "ThumbnailImage": "63a52r43lcwxjmtic35ksma5j.png" + }, + { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,GCwZMIr720iH3TszOb6SQA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Keytar (Black/Red)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2694, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:38:21.893Z", + "ThumbnailImage": "exgelbk5b8wyv6c26lb3m0bpe.png" + }, + { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,LmMg-y8w8kiXdre4vUJrZA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Keytar (Silver)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2692, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:38:18.147Z", + "ThumbnailImage": "9xylg3wbs72hs1ygy34nllz47.png" + }, + { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,ze-eTUX6WUqE-n5nIcH0aA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Keytar (Lime)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2693, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:38:20.013Z", + "ThumbnailImage": "28bnag6bw350qkhpaeyn6qxbi.png" + }, + { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker Cuffs (Teal)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 761, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T19:04:26.9Z", + "ThumbnailImage": "8v6i3ja1btg3mkpog657iixa1.png" + }, + { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,42ZNGHXMvU29yo9s9tVpOQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker Cuffs (Blue)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 861, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:13.187Z", + "ThumbnailImage": "9qf35u5xai7bpf8k7d518b9gz.png" + }, + { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,6c-AhDM6K0iHbNMf4BNiUg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker Cuffs (Purple)", + "Tooltip": "Breakdance inspired colorway", + "Rarity": 10, + "TagList": "", + "AvatarItemId": 2071, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:31.907Z", + "ThumbnailImage": "HQaEvdJ2yEKBpIlsj1ChiA.png" + }, + { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,FvEjo9let0e_Sr-kWq5AvQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker Cuffs (Orange)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 859, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:00.31Z", + "ThumbnailImage": "7ndz1tjworge5u01d8cvf815f.png" + }, + { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,HncURj5yi0ykk2cVyCZ4Sw,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker Cuffs (Red)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 862, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:15.763Z", + "ThumbnailImage": "0xnunm0kmgc2va3zevhooe9ya.png" + }, + { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,VDo682NvSUa8xYn8zTX-AQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker Cuffs (Yellow)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 860, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:02.25Z", + "ThumbnailImage": "8mq00l9l162o9unwk33egvmsd.png" + }, + { + "AvatarItemDesc": "5362d685-fc55-4b43-85a5-cc3d6cad3f69,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Galaxy)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1375, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:54:10.357Z", + "ThumbnailImage": "aojr333s0451ovrb3sccpajtm.png" + }, + { + "AvatarItemDesc": "54ab4eb0-e28a-438f-9977-1ae8d642d136,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Visor (S.)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "s", + "AvatarItemId": 2483, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-04T17:41:34.82Z", + "ThumbnailImage": "BUTSu7FlzEOaiirSftT3Aw.png" + }, + { + "AvatarItemDesc": "55b1ada2-aa1a-4b8a-bbeb-f10ba77c8318,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Retro Gamer Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1963, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-03T22:58:29.203Z", + "ThumbnailImage": "0ehoq4v330bykz8stgk9bf58j.png" + }, + { + "AvatarItemDesc": "55b1ada2-aa1a-4b8a-bbeb-f10ba77c8318,ZYjUekG8JkC9uPkm4xH8ww", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dark Retro Gamer Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2905, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:43.083Z", + "ThumbnailImage": "IFDGFDNDlUCCJx3FM5dBHQ.png" + }, + { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "King Rat Cape (Rouge)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2568, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:08.79Z", + "ThumbnailImage": "fuCyF2LQ6EaCTanw2VqOwA.png" + }, + { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,eEsEJ78Me02dXnp6gTuZRw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "King Rat Cape (Blanc)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2569, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:12.417Z", + "ThumbnailImage": "WEL2fL-6q0qFtXp51G5Wng.png" + }, + { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,gYXppJSpDUG9MB0xej4-kQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "King Rat Cape (Jaune)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2571, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:22.687Z", + "ThumbnailImage": "VoZTTqgfBEOCWqIxKoS-Pw.png" + }, + { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,VF7QrfNdC0ex5p62bkdt7w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "King Rat Cape (Vert)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2570, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:18.947Z", + "ThumbnailImage": "_Hj47OdDmUeTB3wTf2r2Kg.png" + }, + { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scuba Wetsuit (Orange)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1236, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:24.747Z", + "ThumbnailImage": "4bal97uh9so459loudao1d5pk.png" + }, + { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,J-K34UX_B0yObjQI9tn0vQ,m0R4Jtf4HES8krxMnwIWFg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scuba Wetsuit (High Seas Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1238, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:27.92Z", + "ThumbnailImage": "0xnsnma7zo835x2f5qjbn78m1.png" + }, + { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,VqtOYBiKRkaSW4xAlBxQgg,xTqtLPQVyEKjAQZYl6HGow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scuba Wetsuit (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1237, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:26.33Z", + "ThumbnailImage": "6n0p0vohzjctpgowbi5u1zyvq.png" + }, + { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Gloves (White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 350, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T23:01:08.68Z", + "ThumbnailImage": "0tlurbm4ftp2t94h35qrfzqtm.png" + }, + { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,18b52db5-0261-46a0-9214-ff510d455ed9,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Gloves (Orange)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 344, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T18:21:30.187Z", + "ThumbnailImage": "7q0ythybtrbsgg7c2njbi9c68.png" + }, + { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,55b4e661-43e1-4708-82d5-2dd2bebd4f45,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Gloves (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 345, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T18:21:31.773Z", + "ThumbnailImage": "6328cpp2tizf50t3nsq5yrbz9.png" + }, + { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,8c74ee27-3d56-401b-8a8c-7868a80770e8,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Gloves (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 346, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T18:21:35.053Z", + "ThumbnailImage": "7l7k238jg65h9nok7guj535ix.png" + }, + { + "AvatarItemDesc": "5873814e-c9a1-4042-b96d-2aa0e0d52e2a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Coat (Mystery Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1514, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-15T19:18:57.56Z", + "ThumbnailImage": "36ltpv6ah0ck4rjqp3q1ypw3k.png" + }, + { + "AvatarItemDesc": "587ca2bb-dd42-42bf-833f-4e2a97349866,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Doctor's Stethoscope", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 123, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "8lo669z9xca0upv4z2ocdcde1.png" + }, + { + "AvatarItemDesc": "591af332-a01c-454d-89dd-5ed6ae3ed09c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lucky Clover Top Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2068, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:25.233Z", + "ThumbnailImage": "higzQQvRGEa6dDK9f0TTvg.png" + }, + { + "AvatarItemDesc": "5944a66e-b386-43d9-a4b6-7b4a8e987fd8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Heart Sunglasses", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1955, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-19T00:15:27.593Z", + "ThumbnailImage": "1uytf301ssh2nyytxcnm0r2v1.png" + }, + { + "AvatarItemDesc": "594a69fb-9f76-4f83-b2aa-94f0e72e996c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gladiator Helmet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1847, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-13T16:23:59.333Z", + "ThumbnailImage": "7ds517zev16c5r1kkrizriku7.png" + }, + { + "AvatarItemDesc": "594a69fb-9f76-4f83-b2aa-94f0e72e996c,GL6frGGo2E25VLcw61otXA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gladiator Helmet (Folklore Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2056, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-16T19:03:46.607Z", + "ThumbnailImage": "JohKrR2o7kqMPVnZzCfTyA.png" + }, + { + "AvatarItemDesc": "59bbb9d4-4fdb-4400-90d5-244643dca4ce,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Toy Helmet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2154, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-30T00:16:23.593Z", + "ThumbnailImage": "BO1szcANSECxRSF0upetrA.png" + }, + { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Helmet (Orange)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 299, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "2blhcp3hyn511tz9gxh7s982l.png" + }, + { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,4ElTihrMA0ipcgeb9UG01Q,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Helmet (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1086, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T17:20:13.09Z", + "ThumbnailImage": "ebj5kkpndee5u9d3b5fcifo7s.png" + }, + { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,68273c9e-96d6-4ddb-aaab-d99229e864d5,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Helmet (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 304, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "7dx5tt4aplt5y8oxs4j4ojbqc.png" + }, + { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a089bcc6-798d-4777-98e2-7afd290dc6b6,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Helmet (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 302, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "3v8rhp57dz9s41uhg5l4rytbv.png" + }, + { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a36d252b-16ac-4a82-bece-de145147e7d9,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Helmet (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 301, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "2xmq1ji9y74k37fj1ft9nmnvf.png" + }, + { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,c8cc9589-4831-4e73-a865-ef8c139a2ba7,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Helmet (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 300, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "6wlpi8vp4n0f8yrjuywdx8dzr.png" + }, + { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Marine Helmet (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 303, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-17T21:15:42.37Z", + "ThumbnailImage": "8syjfjzce4brzrmudgrhv1mvo.png" + }, + { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Helmet (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 53, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "b9vsrdat9b9pm7myqavsy8mbw.png" + }, + { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,_MS-R9DB5kinLBszWle8hg,7660e11a-7ef0-43d3-bc02-76b3a4aab064", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Helmet (Black, Gold)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 6610, + "IsBaseAvatarItem": false, + "CreatedAt": "2024-03-27T22:53:40.583Z", + "ThumbnailImage": "mYOYiE057EOkRmW2vXuTdw.png" + }, + { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,61ff7a02-50ff-49ea-b95e-c31b95a30c8e,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Helmet (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 55, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "ekahaz7vcxq5ejy0zaxrfx28a.png" + }, + { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,d8d490aa-7088-4163-9305-1441367f490c,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Helmet (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 54, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6sd4dcoqxuhvhrf3casbx3080.png" + }, + { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,Q3bhpoWbVkyUBTKUn5A5bg,7660e11a-7ef0-43d3-bc02-76b3a4aab064", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Helmet (Blue, Green)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 6612, + "IsBaseAvatarItem": false, + "CreatedAt": "2024-03-27T22:53:44.283Z", + "ThumbnailImage": "T0KyAJMATUqP3TLksvoBxA.png" + }, + { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,UfhOpLemQ0ypYh7CIC3W1Q,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Helmet (Gray)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1663, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-25T19:26:07.847Z", + "ThumbnailImage": "7t42ep2l7eezztyekwigomtjj.png" + }, + { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,UQKS4u4SO0umKOHncLqKpw,7660e11a-7ef0-43d3-bc02-76b3a4aab064", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Helmet (Black, Yellow)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 6611, + "IsBaseAvatarItem": false, + "CreatedAt": "2024-03-27T22:53:42.197Z", + "ThumbnailImage": "3jI4Pafh9k2B-YTxx1gQOg.png" + }, + { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,X24EvVokeUqyDNdqevV2EA,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Football Helmet (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1662, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-25T19:25:59.803Z", + "ThumbnailImage": "d2vzz38oww35dcnjvsxmoj4yd.png" + }, + { + "AvatarItemDesc": "5ac25e5a-8c8e-445c-82a4-7272baec1eb5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Doctor's Head Mirror", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "egsz5bap153w61sfwpsx9tgjw.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Flowers, Orange)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 115, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "21rygk1c1r8ccciu1jlzdsan4.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Flowers, Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1580, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:05:30.733Z", + "ThumbnailImage": "18r0xqjozrmq3c6iyz17zdqhv.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Dots, Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1577, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:04:54.053Z", + "ThumbnailImage": "5en0adt83zfaj5j1bemmxhldj.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Plaid, Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1583, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:05:37.7Z", + "ThumbnailImage": "99zusz6icmt0hmbe2pk2wulet.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Flowers, White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 450, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:15.29Z", + "ThumbnailImage": "dh0x7lyldgb793zodhe1sscg4.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Dots, White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 447, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:12.143Z", + "ThumbnailImage": "1prcefvfnwi7yewdgbbeapboi.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Plaid, White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 453, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:18.417Z", + "ThumbnailImage": "2mmw0lzovs5bx1dwz8tid3cze.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6o6sNWyPoUCcKJBHW0KC9w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Flowers, Yellow)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2224, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:33:59.233Z", + "ThumbnailImage": "MUhkmM6xxkKXejZd4iDh6A.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Flowers, Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 448, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:13.197Z", + "ThumbnailImage": "9xy3gwxnxiy9pqpf90r0hq3kc.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Dots, Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 445, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:10.11Z", + "ThumbnailImage": "72m3n2l0f0v5ryummqatwer5t.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Plaid, Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 451, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:16.28Z", + "ThumbnailImage": "4as6ol0a5z9gfyofshfg9ed39.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Flowers, Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 449, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:14.233Z", + "ThumbnailImage": "5653hakuvc2f7zkqwh2cln0lx.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Dots, Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 446, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:11.093Z", + "ThumbnailImage": "8pn1j2wbx9ivldclxa1ubgufx.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Plaid, Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 452, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:17.377Z", + "ThumbnailImage": "59fpaqmmt45bv0ojtuamhjir0.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Flowers, Black)\t", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1579, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:05:28.243Z", + "ThumbnailImage": "e7ru80lk5fp2s35uvhj2a8m45.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Black Polka Dot Cowboy Scarf ", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1576, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:04:49.077Z", + "ThumbnailImage": "37j4pw9ip3kccqd36l4be3uw6.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Black Plaid Cowboy Scarf", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1582, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:05:35.76Z", + "ThumbnailImage": "bv2g4hsg5h2czu7ouxhuzozj9.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,X1OFXyDyXES3CgMpIyV3nQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Flowers, Pink)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2223, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:33:46.36Z", + "ThumbnailImage": "U-3blhOO3kWIzeZFNKXgTA.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Flowers, Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1578, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:05:25.62Z", + "ThumbnailImage": "exyzdp83a10yb68pl68bc1t70.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Scarf Mask (Plaid/Purple)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1575, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:04:45.057Z", + "ThumbnailImage": "7756o1qqkod0e7anndh2zr867.png" + }, + { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bandana (Plaid, Purple)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1581, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:05:33.57Z", + "ThumbnailImage": "a0g2oy7wel38y6w7abixqi1zi.png" + }, + { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Gloves (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 261, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "bstnvjdujs0tgbj3uwztvija9.png" + }, + { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,0c433086-9501-48c4-8d0e-4474eb420c61,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Gloves (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 264, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5a2i66dhqnlvimed4a3fjhz2j.png" + }, + { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,1VGZ1QCvcU6rsKVkUDBNjQ,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Gloves (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1102, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:36.787Z", + "ThumbnailImage": "dclo54kfdapgc9n3yba702l93.png" + }, + { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,2be2f040-68e4-44dd-9099-29f11110f3a4,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Gloves (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 265, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "78f5tat5pkmywligx33rcvv4k.png" + }, + { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,47da86b9-4e6e-423c-b8c4-ea6bf8472509,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Gloves (Yellow)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 262, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "btgunfy4izmpoj8xglwadngpl.png" + }, + { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,8hUBfmq28EixYjv92Xcrgg,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Gloves (Grey)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1317, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:06:42.453Z", + "ThumbnailImage": "1v4tdvaof4avz08bp7oapq1nq.png" + }, + { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,d5987fee-e3cc-4336-853a-5df57f73df05,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Gloves (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 263, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "883f69uc5v73zvor8ltld7zdx.png" + }, + { + "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Prankster Jacket", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1842, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-02T21:11:28.893Z", + "ThumbnailImage": "aijv697pz04ho70d9l3lxcnvd.png" + }, + { + "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,ZM6W70pGt0aAPLYf4DykeA,icHpJch4uUeGdhoLkawyyg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Prankster Jacket (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2060, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-16T19:03:55.263Z", + "ThumbnailImage": "XSHhlJsxRU2OwZD3eTZWJQ.png" + }, + { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scuba Tank (Orange)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1239, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:29.67Z", + "ThumbnailImage": "7f4gij6i4zbxcp7r843b74p12.png" + }, + { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,GWi1rEebqkCV_TS2WzQhcA,4zPm9miF5UOouEWFpOxYZg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scuba Tank (High Seas Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1241, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:37.03Z", + "ThumbnailImage": "64h9st85tv92639yx7n2hvkgm.png" + }, + { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,V_duN2oWaUmmao1xHhzCJA,Uvarm_CwTUWWQYZvzI8OaQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scuba Tank (Blue)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1240, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:35.51Z", + "ThumbnailImage": "29lilphy1aywcuix2e39k2ll3.png" + }, + { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Quiver (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 125, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "32boa62st14xrnw6alwpdqer3.png" + }, + { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,29EZ6r2SsUakWjzuevxeoA,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Quiver (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1116, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:32.923Z", + "ThumbnailImage": "88qgugcpk7v2ra2fi4pz1ehjy.png" + }, + { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,7221132e-053a-4c58-b719-ed3c8558907d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Quiver (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 128, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "dakgj68r389mpgtl45ly2nsvo.png" + }, + { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,74b009f4-e128-4c59-8a6a-4c0ba6119bde,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Quiver (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 129, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "46p3j6coqok4330sha7pm7whe.png" + }, + { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,d1eb3573-672c-4bb4-9ec5-7c81e6a38d3d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Quiver (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 126, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "1d7kcdxyqd6vbcvooyqhqiqsv.png" + }, + { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,e548124c-d7f3-45de-aaa0-f66130eca576,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Quiver (Yellow)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 127, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "65ob47rf57lzttas5qiw96qkt.png" + }, + { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Quiver (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1307, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:42.417Z", + "ThumbnailImage": "a87ioalwyvn2xvaj4bhy5mu0n.png" + }, + { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Detective Cap (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 723, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-21T01:05:53.42Z", + "ThumbnailImage": "597y9xwas90z92z2w9b6wwif0.png" + }, + { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,fEPwvuJCWkGBe4IekXpmLw,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Detective Cap (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 747, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T18:47:11.44Z", + "ThumbnailImage": "73q1jtkz7ele0ps0zjryw0veq.png" + }, + { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,MQOxmUk-mUG-Ee9m9nX31Q,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Detective Cap (Grey)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 748, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T18:47:16.77Z", + "ThumbnailImage": "5x3p1zbvxjej9uzfpfkzw5g75.png" + }, + { + "AvatarItemDesc": "5beeb4c4-f276-4eae-87aa-9302e45b05b7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cornrows Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1480, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-08T19:52:21.84Z", + "ThumbnailImage": "eezddupufyjfaxdd5lstfz5gn.png" + }, + { + "AvatarItemDesc": "5cd08cfb-c729-4c30-96d9-6a99bb934d91,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Sash", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 124, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "79i106lkaeghior2bmvlgc8kb.png" + }, + { + "AvatarItemDesc": "5d13a7a2-8213-40e6-90a6-efdd76a3fdcb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flowing Hair", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1443, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:50:19.657Z", + "ThumbnailImage": "bzjuuf0r1ocwg6am5t2mtrvxg.png" + }, + { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tied Scarf (Striped, Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 133, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "66fwuamhzcs860kylwr1qfv8m.png" + }, + { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tied Scarf (Dots, White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 467, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:32.07Z", + "ThumbnailImage": "a6a5lj41oooaly6njbbnnox5o.png" + }, + { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tied Scarf (Plaid, White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 464, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:29.21Z", + "ThumbnailImage": "ehbtcde8j9yfepf412zdnzsqs.png" + }, + { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tied Scarf (Dots, Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 465, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:30.177Z", + "ThumbnailImage": "15m86aopz28g8iezgelpzwej3.png" + }, + { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tied Scarf (Plaid, Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 462, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:27.293Z", + "ThumbnailImage": "bcknoanm16wf9xuuxd8n236ez.png" + }, + { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tied Scarf (Dots, Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 466, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:31.117Z", + "ThumbnailImage": "9dfutygcqtdm7xo7lv2j8y5fy.png" + }, + { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tied Scarf (Plaid, Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 463, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:28.257Z", + "ThumbnailImage": "6qg6j1yialrvz8slxa9jeyu87.png" + }, + { + "AvatarItemDesc": "5d2a0b8a-10f0-4f09-b145-84a4b4dc58f9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Spring Bloom Antlers", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2109, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:24.93Z", + "ThumbnailImage": "XMdVSPwYlEm9q62jRsWEOA.png" + }, + { + "AvatarItemDesc": "5d2a0b8a-10f0-4f09-b145-84a4b4dc58f9,MtbewwIGSEu-F9Ks_Ibb4g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Spring Bloom Antlers (Solstice Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2504, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:53.803Z", + "ThumbnailImage": "nRaGYENtIUSgiJpKpJtfdw.png" + }, + { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "King Rat Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2572, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:26.76Z", + "ThumbnailImage": "i5YnDBV6w0ef6GvGX7uWBw.png" + }, + { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,3oar1K99PU2OTGaT0i7Hag", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "King Rat Hat (Vert)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2574, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:31.6Z", + "ThumbnailImage": "m90YcY3tGkWS_3aDgwpp9g.png" + }, + { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,RTrcYpLtukm83lwAfWi5WA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "King Rat Hat (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2575, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:35.043Z", + "ThumbnailImage": "ma2zBsTYbEu0Crl3zZaDJw.png" + }, + { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,T5z4W4H8sU-2NxpepVH0Qg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "King Rat Hat (Noir)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2573, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:29.253Z", + "ThumbnailImage": "T9OIhzV2uUiPCPipuBhCkQ.png" + }, + { + "AvatarItemDesc": "5da97d5c-0d1b-4b0d-a2be-d255871d833d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turkey Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": "thanksgiving", + "AvatarItemId": 2531, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:40:04.9Z", + "ThumbnailImage": "PcxjLeS1vEKxB0-e2aPilg.png" + }, + { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flat Cap (Grey)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 52, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6s2gbnnr5jsigj562mzity2yp.png" + }, + { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,0ba92db2-690a-44ce-92f4-130e9503b6c1,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flat Cap (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 638, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:09.51Z", + "ThumbnailImage": "e688283ak00jg806f3cw5gc0k.png" + }, + { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,-7uPJmO-wUu3cUhqo0caPg,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flat Cap (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1640, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:45:24.21Z", + "ThumbnailImage": "0xi16q5h0z36akxhihlw7prh3.png" + }, + { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flat Cap (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 637, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:06.367Z", + "ThumbnailImage": "7iezcsxl2wujed3zpx0sad4pp.png" + }, + { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9aYT6E9sd0OSavlmkhtkGw,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flat Cap (White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1638, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:45:20.417Z", + "ThumbnailImage": "24i3534uix45v9rp0lwimi7sf.png" + }, + { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,H-ypJNyVSka9as7rDFRZ_A,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flat Cap (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1639, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:45:22.287Z", + "ThumbnailImage": "5w6vsff1wv2psbj5naflpxebd.png" + }, + { + "AvatarItemDesc": "5e9bbda6-d681-42b1-9cc4-5758acf34bc0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Necklace (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1270, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:55.847Z", + "ThumbnailImage": "brfgb9cf9tp8tgva2k3qzm6iv.png" + }, + { + "AvatarItemDesc": "5f1bc3c2-dfbb-4258-9b10-608535e34db2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zombie Hands", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1191, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:54:17.707Z", + "ThumbnailImage": "amgn9mnr8d0gpwg27xhvbuvwf.png" + }, + { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Book of Elseware Vol I* (Cursed)", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2462, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:22:00.883Z", + "ThumbnailImage": "QQLvWQYc7Uuml1bMBoD0UQ.png" + }, + { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,14Gft1zCQECXPxPmiUc5VQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cosmic Cultist Book", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2466, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:22:11.187Z", + "ThumbnailImage": "vHLg9EajA02BxJcYdCE1Iw.png" + }, + { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,7ziZgKKqXkuyo9v77chIlA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cipher of Elseware (Uncursed)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2464, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:22:05.753Z", + "ThumbnailImage": "kXsMoNdwF0e5eg7JqgZnMA.png" + }, + { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,bpzKQ-B4_0KpMPf4ixTumw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Book of Elseware Vol III (Cursed)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2463, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:22:03.35Z", + "ThumbnailImage": "UV1LMH8or0KUAZAidj0x-Q.png" + }, + { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,hKkdXrgEQ0SStVnZsXu0uQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Book of Elseware Vol II* (Cursed)", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2465, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:22:08.2Z", + "ThumbnailImage": "DFFMheRvREahgpIp_KezuA.png" + }, + { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jazzercise Shirt (Teal)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 187, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "cbcx8aneit1a0djh7mi7a9pd1.png" + }, + { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,3b2cfc85-4e2a-4e0d-b738-c296ae8692f8,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jazzercise Shirt (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 652, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:39.17Z", + "ThumbnailImage": "5ln4084il57kp9glk7af3u8u0.png" + }, + { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,78eb0969-f246-4cac-acd6-295df7c092e4,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jazzercise Shirt (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 653, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:40.47Z", + "ThumbnailImage": "axojfsb5b2u9dmz817cfa6h7z.png" + }, + { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,oF_wUv-ShU6GP34Ch0MnlQ,YTd0lIQLcU2Y2trwuLhJTg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Carnivale Shirt (2021)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1850, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:45:46.893Z", + "ThumbnailImage": "dhyvjxkfgg2fqqwac0tztvlo1.png" + }, + { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,zwKRET9pP0O5uhPU_yHrlg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ballerina Leotard", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2159, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-05T20:23:35.15Z", + "ThumbnailImage": "HIXUSEOjTEymO-YYuEyRWw.png" + }, + { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flapper Dress (Silver)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 588, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-14T18:57:31.273Z", + "ThumbnailImage": "a1vs7a8qu2iy5kaxke59mq5sa.png" + }, + { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,565c17e0-496d-45bd-a2c3-564e118c06cc,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flapper Dress (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 641, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:19.267Z", + "ThumbnailImage": "cu5pah7uuv614frsr65tvynut.png" + }, + { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flapper Dress (Gold)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 642, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:22.007Z", + "ThumbnailImage": "a1844ejer8zz68n1qyajbci5m.png" + }, + { + "AvatarItemDesc": "5f6a7dee-0b44-4138-b3a7-a079dbc63e83,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Monkey Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1806, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:12:23.293Z", + "ThumbnailImage": "25fe9p8vszllgyike2qzq66fc.png" + }, + { + "AvatarItemDesc": "5fb2ea11-cd9c-45cb-be1e-e7ff3e0fd3c3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Samurai Helmet (Jade)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1905, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-15T20:42:59.273Z", + "ThumbnailImage": "f278x818nbgl8s8jjebtz9s9z.png" + }, + { + "AvatarItemDesc": "5fb2ea11-cd9c-45cb-be1e-e7ff3e0fd3c3,tdECtZp1UUuRRKHV60coyA,PIg3ywG2J0CiGUPpm1A6Kw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Samurai Helmet (Red, Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2057, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-16T19:03:48.3Z", + "ThumbnailImage": "huMYQIkj9kGAZLeIjvaUTw.png" + }, + { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Goggles (Summit)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 946, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-30T02:53:16.777Z", + "ThumbnailImage": "81f46rtgrs77zl3to2piot49a.png" + }, + { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,fXNkMWFMV0aXalK_y_8SHw,SSY8ZYMgaE2Bl4oFmMjKQA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Goggles (Chill)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1276, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T21:39:56.77Z", + "ThumbnailImage": "948ckejd6ibxj5plgmycvqr20.png" + }, + { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,iDnij3VaEkSAnpt5QRevig", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Ski Buddy Goggles", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2598, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:33.54Z", + "ThumbnailImage": "eqLzMORoeEGX-z-yYZtUsQ.png" + }, + { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,IQMO6E5ofkyC3S-IgrKyIw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Goggles (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2596, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:27.68Z", + "ThumbnailImage": "-KcCp_tuMkalrEo6T6ql_w.png" + }, + { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,n741vKj02kyt8B5fT6s2og", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Goggles (Pink)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2597, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:30.46Z", + "ThumbnailImage": "4doxnMsj30aGV6CnhP58sQ.png" + }, + { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,oCB1ZeT0hU6uQGhHNsEvkg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Goggles (Slate)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2595, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:24.707Z", + "ThumbnailImage": "VFE9I4VMiU6FDWdRZaZlRQ.png" + }, + { + "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Figure Skater Skirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 956, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-12T02:15:24.883Z", + "ThumbnailImage": "arq4ixmsd54yjuazkfe5xglft.png" + }, + { + "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,FpvZjltPtU6AKTBphz3ZMA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Figure Skater Skirt (Burgundy)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2165, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:39.607Z", + "ThumbnailImage": "c_ldiPCEC0uVSLKrER_-tQ.png" + }, + { + "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,ngF6e9k3wkme3HdodiB03w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Figure Skater Skirt (Purple)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2166, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:42.403Z", + "ThumbnailImage": "_J7s68Cf2kKhS_I47a_7Cg.png" + }, + { + "AvatarItemDesc": "60067e91-18b8-43ab-ae20-a8ea74c757bf,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Sash (Small)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 132, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5rmads8tgd0mb71na01q6g4l4.png" + }, + { + "AvatarItemDesc": "60cc933c-5bc8-49c1-aa6b-9c2adfef088e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Necklace (Musical Note)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2761, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-30T17:21:08.56Z", + "ThumbnailImage": "bah-hC34O0mkCKiY2pH72A.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tucked Tee (Rec Room)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2021, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:42:24.66Z", + "ThumbnailImage": "deVNr6Y5KU6p3WI9O9RCpw.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,3bWtQstEmUeHJXngec632A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Art Tucked Tee (Gold)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2157, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-30T20:55:50.87Z", + "ThumbnailImage": "3JZYjcH1rEilhQIrqVialw.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,5Q9E76b580CnMWIg6zbPwA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blueberry Gamer Tucked Tee", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2930, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:16:07.763Z", + "ThumbnailImage": "qEEw3iKEAkmL_Kmj7syfCw.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,9lPZEIVbbUK1hdR1aVPLwA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Boots Shirts", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2250, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-22T16:53:09.137Z", + "ThumbnailImage": "eAx_UfHqTEmu_aRnqNXzGA.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,iIjl6PamKECL_JWvrZNHfg,2IFVtBYV8EqQXs8XHqeqdg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tucked Tee (Latinity)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2022, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:42:27.27Z", + "ThumbnailImage": "yD9WlEoR7Uuxoz4pegMXnw.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,K4_AIRWX-U-f-nXsBOc82g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tucked Tee (8-Bit)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2096, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:32.133Z", + "ThumbnailImage": "5xSIXFJJUEm8gEi413DBeQ.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,LXR5H_-7JUO7F3JkJh3ouQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Strawberry Gamer Tucked Tee", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2935, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:16:23.717Z", + "ThumbnailImage": "B0Y_RojdNUWlUY10xCmzCg.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,mKWQMgBuTEq9EwXBTusuJw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tucked Gamer Tee (Pineapple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2933, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:16:15.92Z", + "ThumbnailImage": "_TRYe6zmekyTjU6_Sa9d5g.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,N2ofIXeSBECHTBAoP2yQ6w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grape Gamer Tucked Tee", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2931, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:16:10.547Z", + "ThumbnailImage": "qHJWmNTPqUag0af__vphuQ.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,NEU8mYk_TkqS78l0zY9GAQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Art Tucked Tee (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2156, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-30T20:55:48.49Z", + "ThumbnailImage": "tgdvdzDpgkOt5c2sU-g6og.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,r4O0JuB0dke1IoOEqW4nkg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Art Festival 2022 Shirt (Gray)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2069, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:27.25Z", + "ThumbnailImage": "fH7sFkQfakOQNGz1LNIeDQ.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,rg6sMjE1XkijY4Pq73pjcg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lime Gamer Tucked Tee", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2932, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:16:13.123Z", + "ThumbnailImage": "LmTBToLyKUyYe-lIJ4jKiQ.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,t9-7AjmLgEWawcyWCD4xVw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raspberry Gamer Tucked Tee", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2934, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:16:19.14Z", + "ThumbnailImage": "DTvdUNjKGkmhKbNFYXzdkg.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,UJRSCFfPq0K0yV0ETS3uSQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Art Festival 2022 Shirt (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2070, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:29.64Z", + "ThumbnailImage": "HafOMtY0B0eYptZba4mZ2A.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,vtXUyu-xmkaYtOCL9r3PsA,VtepaI2fvUWhcvNmpQ8r6Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Class of 2021 Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2049, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:37.92Z", + "ThumbnailImage": "ubK_rEh-IEm7I_Dm8X_6hg.png" + }, + { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,W_RwnySBMk2GlrknM7NDrg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Class of 2022 Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2813, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:06:05.747Z", + "ThumbnailImage": "Ffb9sMGT0EqSNh85meeoJQ.png" + }, + { + "AvatarItemDesc": "61969200-2790-41e0-bccb-d9feff8c7b7d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Holiday Elf Wrist", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 1624, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:20:30.367Z", + "ThumbnailImage": "6m4lkkcj4tnqk0xc8aqctsa6v.png" + }, + { + "AvatarItemDesc": "61ba3c90-c81e-4deb-bc79-50c0f1fe3e83,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lumberjack Beard", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 107, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6fn7llrs7vzf0mr1pws7ys253.png" + }, + { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Poncho", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1759, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T16:18:35.327Z", + "ThumbnailImage": "el2614e47hfl8u1fca9qvtyp2.png" + }, + { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,EmTrJKm8cUy8_BHAvP8Meg,kxkqq5UA_kCM6lFsFe3dvw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Poncho (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1814, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T19:13:52.09Z", + "ThumbnailImage": "6m083hwotwj7o3sa08b291vyg.png" + }, + { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,Gep43Ix44EWybJ80XAyDbg,kxkqq5UA_kCM6lFsFe3dvw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Poncho (Teal)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1815, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T19:13:54.213Z", + "ThumbnailImage": "5yb187ueehdy6eu34my5nep7x.png" + }, + { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,T670e7nOakqKl3L6LTlTtA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Poncho (Steampunk)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2270, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-01T19:00:14.51Z", + "ThumbnailImage": "BEUiX6fKYE-xt4747ftpcA.png" + }, + { + "AvatarItemDesc": "62ce4109-8dee-4895-bf1b-bfa143db4c7e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Slim Blazer (Teal)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 149, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "22i8ypgdvikndkalc1fn6g0be.png" + }, + { + "AvatarItemDesc": "62ce4109-8dee-4895-bf1b-bfa143db4c7e,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,0f36bb97-c61b-4281-929f-ff1d0d11be86,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Slim Blazer (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 468, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T23:07:36.517Z", + "ThumbnailImage": "27ztuh73mvhqa7kbriw9y9jjt.png" + }, + { + "AvatarItemDesc": "62ce4109-8dee-4895-bf1b-bfa143db4c7e,cd5d7285-202d-42d0-b93f-04245875793e,0f36bb97-c61b-4281-929f-ff1d0d11be86,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Slim Blazer (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 469, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T23:07:37.53Z", + "ThumbnailImage": "0no2vbmhmulieokvn9ikhxy23.png" + }, + { + "AvatarItemDesc": "62e480de-27e9-4719-adac-360698c7a2c1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Banker Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2259, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:04.027Z", + "ThumbnailImage": "n1YJ_xf3VE6EzTlwUlW_9g.png" + }, + { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rogue Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1874, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:34.003Z", + "ThumbnailImage": "4syp3adr5p8obc2cv6ef22vvr.png" + }, + { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,ay9ktLnHfUKdj0-q52Gvyg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Constellation Cape (Sunset)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2444, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:24.073Z", + "ThumbnailImage": "K8ehibem7USe2u0ui6wmDw.png" + }, + { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,C64nh9MHv0mlUEP9-s7sJw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Constellation Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2442, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:17.47Z", + "ThumbnailImage": "OzofyASWI0-3nEAN_uzMww.png" + }, + { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,WJ27X_UnfUmFKpY6mRk_Rw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Constellation Cape (Aurora)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2443, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:20.753Z", + "ThumbnailImage": "C3GGuNb9x0qmewSkRHP33A.png" + }, + { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,YVkcCfJZekq7GvdMUy2IWg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Cape (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2560, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-07T21:47:00.003Z", + "ThumbnailImage": "zW972rrvQ0-DezwkPcNYvw.png" + }, + { + "AvatarItemDesc": "6423f23e-dde3-4428-96f5-6091027c92cb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Martial Arts Gi (Cunning) ", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1625, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:20:38.35Z", + "ThumbnailImage": "2vvcu1ehg70m9a5l4pccyi05l.png" + }, + { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sunglasses (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 104, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "f0xdfrv8p6p8tly3s9tdqx0kh.png" + }, + { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,0Ytm7G4_lkmZWPA_YfaIeQ,KfM7veOVlE-dNZmsbDNZBA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sunglasses (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1876, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:45.22Z", + "ThumbnailImage": "59lin822pwng10iwcthz1bb9d.png" + }, + { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,dZM1bs6_MU2F6Vz1mH0QKg,KfM7veOVlE-dNZmsbDNZBA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sunglasses (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1877, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:47.347Z", + "ThumbnailImage": "ebmp0xvyd2y9i4tqvuzl5ns1v.png" + }, + { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Gloves", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 281, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "agzh2svq1rj75i5f37dk13i34.png" + }, + { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,D-XJyw1BPE-m0gXpvcXrQw,FsirX90YM0y5lk7mnqDnEQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Gloves (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1949, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-16T22:16:41.917Z", + "ThumbnailImage": "cvkzqrgyihp9bv1n8b6ie95fl.png" + }, + { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,-Moek0heVkWtKpTw9oZ0EA,FsirX90YM0y5lk7mnqDnEQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Gloves (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1948, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-16T22:16:40.113Z", + "ThumbnailImage": "841fudm9eezzeqyfx2wqdrpj2.png" + }, + { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Night Coat (Zzz)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1409, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:45:01.86Z", + "ThumbnailImage": "avhll17max3g5tbutzgkr4j3d.png" + }, + { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,_jkPDSXFUkSU_yOfutQ7BA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Night Coat (Zonked)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1412, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:45:06.583Z", + "ThumbnailImage": "6lrk2hle92tc35cdc3fs9nqhp.png" + }, + { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,j66We9SYr0SNQ2ufZqIqhA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Night Coat (Sandman)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1411, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:45:05.017Z", + "ThumbnailImage": "4g0dvwsd3dz5sthxkhgq6scu0.png" + }, + { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,MLB_YJtNtUi2Qw9D4a5i2w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Starry Night Robe", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2066, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:21.21Z", + "ThumbnailImage": "m9a7PytQ6kK8OBPmwOadSw.png" + }, + { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,uDJ5ZqU1f0CiOAH8WY22Yw,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Night Coat (Dozy)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1410, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:45:03.513Z", + "ThumbnailImage": "10ks6xzccejyj65uikvyl23xf.png" + }, + { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerleader Skirt (Pride)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 176, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "41wwwt83ors7iub44o0ftgtzs.png" + }, + { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,a0oe68pikUykAgrRo-axkQ,KFq8d1VsO0KDqBWUj4qRFg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerleader Skirt (Rally)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1627, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:42:12.1Z", + "ThumbnailImage": "edpmi0dav6ft7rwfn86f1km9l.png" + }, + { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,cFQ1Z7_wp0meS8wdC1hemQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Suit Skirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2422, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-19T17:06:46.317Z", + "ThumbnailImage": "Hhv0MwY_0EitaME8aQhP_A.png" + }, + { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,eWf2c62cqEOkRukLzhl_wQ,KFq8d1VsO0KDqBWUj4qRFg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerleader Skirt (Victory)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1626, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:42:07.833Z", + "ThumbnailImage": "4o1fhoua48d5fb5rbrs2ijloi.png" + }, + { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Vest (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 597, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-07T02:21:14.86Z", + "ThumbnailImage": "a6uf8rc48kcjj4lj2fsir9vsr.png" + }, + { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,39f04eee-3a58-4e53-9f5e-7e995d46ed71,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Vest (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 610, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:46.233Z", + "ThumbnailImage": "00u595ofjuu0ky28diplmypee.png" + }, + { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,6y_fzLhG7E65Px3-CYiyXQ,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Vest (Crimson)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1111, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:11.793Z", + "ThumbnailImage": "80jjzxrcdq2pf4nuv4ev13nx0.png" + }, + { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,85eb7f47-bb31-4c66-a8b3-562d35028e6c,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Vest (Brown)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 609, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:44.893Z", + "ThumbnailImage": "3m6lx9rzs88omzsy182j1yuxb.png" + }, + { + "AvatarItemDesc": "665d4fe9-88dd-4fae-97ad-201884a6ca02,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lasso Belt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2248, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-22T16:53:04.1Z", + "ThumbnailImage": "eYDxcWNR4kOlLWhyBLjM2A.png" + }, + { + "AvatarItemDesc": "66f8f55d-cad4-4afb-93e8-b6bdf04b37b3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Big Head Bow (Green Sequins)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1355, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-03T01:43:45.87Z", + "ThumbnailImage": "824gaa1rig6e7wnf2tax1j1j9.png" + }, + { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Cape (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 122, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "8dvvtd9gw9krmqu0dvvlk1rv0.png" + }, + { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,_VfdBTi7PU276qzsYKayow,qSsEcadcm0-twR1TvVcgYQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Cape (Pouncing Tiger)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1734, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:20:53.333Z", + "ThumbnailImage": "72gv1b98ofujgx42ctd0lwdf3.png" + }, + { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Dtis2HpVzkelZb6M9mW5TQ,iqGv6iRJ-UGbofv8-aHKVA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Cape (Green Lightning)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1512, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-15T19:18:30.087Z", + "ThumbnailImage": "2xop370rhid69r8mypwbzzbe1.png" + }, + { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Kcyp8sv0202Puym1Wf86xg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Cape (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1610, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:19:11.02Z", + "ThumbnailImage": "32o16d0w2ku6u0tavwqbw9lq2.png" + }, + { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,r_QZLd-Aw0SsdQb_uYroog,eYGWiwqSGUG7Hx1R3I-11A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Cape (Shamrock)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1679, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:24:48.08Z", + "ThumbnailImage": "e1cquzpfu1rcke1xofv7ks1oj.png" + }, + { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,xNjX_6-aREm0cYZObVLiAg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Cape (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1609, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:19:08.077Z", + "ThumbnailImage": "6gheyta77ei8tn3jvtdoimp48.png" + }, + { + "AvatarItemDesc": "67c0f944-2f70-46d2-8588-2f67028f8bed,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowgirl Gloves", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2256, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-06T16:31:49.617Z", + "ThumbnailImage": "sH2WnqiB8E6lk4hZ9s70RA.png" + }, + { + "AvatarItemDesc": "67d8d599-4611-428f-98cd-98d8a527ace5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wicked Sorceress Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2394, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:50.05Z", + "ThumbnailImage": "xlMaAOhYFUiyeB9g8Ynt_A.png" + }, + { + "AvatarItemDesc": "67d8d599-4611-428f-98cd-98d8a527ace5,4qSWIO-cy0q5JWHp7tagHA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wicked Sorceress Dress (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2395, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:52.437Z", + "ThumbnailImage": "zgDeoqR2GkqwnMftPbASfA.png" + }, + { + "AvatarItemDesc": "686ac516-630f-4989-9c99-0b8d055a00f9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Holiday Elf Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 1622, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:20:20.137Z", + "ThumbnailImage": "7m2mi3d8ga6cj0snk6kbhszx8.png" + }, + { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Quarter Zip Sweater", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2899, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:25.893Z", + "ThumbnailImage": "nSSGXZLjwEGclxA93atFUw.png" + }, + { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,p5zYbKLGU0m0ZutOicfjsw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blue Quarter Zip Sweater", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2902, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:35.207Z", + "ThumbnailImage": "dkNHvcM-PUeaHpc9SxCaTA.png" + }, + { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,pqtwCB_c20yRmOEs6jlH3g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Purple Quarter Zip Sweater", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2903, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:38.19Z", + "ThumbnailImage": "MD5DVsHC4U2RMM-e36mYDQ.png" + }, + { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,SSstW2ZPk0SB47qYlgbZzg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Black Quarter Zip Sweater", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2901, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:32.33Z", + "ThumbnailImage": "UhJ8FHTUiEWTy2_6oM5T3g.png" + }, + { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,wgIwYsXqiUekieE6pSt1Ng", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beige Quarter Zip Sweater", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2900, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:28.94Z", + "ThumbnailImage": "eJWJ01dRW02aA6rSCX8mJg.png" + }, + { + "AvatarItemDesc": "6930ce13-4be4-4ab9-9817-667bd261ffc3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bishop Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 221, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "c7r9nusyu8a3jy7ydrv4shwx2.png" + }, + { + "AvatarItemDesc": "6936d8e0-9d4a-4e22-99b6-04e5182c1109,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeletor Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2580, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:40.487Z", + "ThumbnailImage": "k9Vy4pHmyUWpUmPbGE0xuQ.png" + }, + { + "AvatarItemDesc": "696f46ae-eaf3-43b5-9635-70a78972826e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousHawkMothMask_Hat) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2000, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:22.567Z", + "ThumbnailImage": "53f1e75rivkkk1v3yiqcezzwd.png" + }, + { + "AvatarItemDesc": "6a2fa2f4-d335-4349-88a4-49af251454fa,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Electric Guitar (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2681, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-12T21:01:48.96Z", + "ThumbnailImage": "GVvKZUlMlU-oAczCFnnkPA.png" + }, + { + "AvatarItemDesc": "6a2fa2f4-d335-4349-88a4-49af251454fa,liZWUNZih0iakAa7UJkk9A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Electric Guitar (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2682, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-12T21:01:52Z", + "ThumbnailImage": "uZtpsMTIe0WfPlipjC6sfQ.png" + }, + { + "AvatarItemDesc": "6a2fa2f4-d335-4349-88a4-49af251454fa,zBfCq7T69kqZPTz3P8KKhg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Electric Guitar (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2683, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-12T21:01:54.543Z", + "ThumbnailImage": "K9ApHkO1I0WYcDiKg_7bMw.png" + }, + { + "AvatarItemDesc": "6a51d8e1-8844-4999-ad8b-06f4d414571e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Eggshell Chick Costume", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2870, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:30.92Z", + "ThumbnailImage": "DI6H0HT2tUqy7jNzWn9WDg.png" + }, + { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gardener Gloves", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2790, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:03.94Z", + "ThumbnailImage": "zR88MAKiPkimNE_ZJTgJ5w.png" + }, + { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,1sxxUbsQMki0sTwxEQIbtw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blue Gardener Gloves", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2791, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:06.353Z", + "ThumbnailImage": "7ih-SEYO0UGR8D_71mKT7A.png" + }, + { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,CEnWMDmcMEyjX5mRdhtXXg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gardener Gloves (Floral Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2792, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:08.72Z", + "ThumbnailImage": "1Ud6HT3jLUC49RkE6B4aIA.png" + }, + { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,ySbPHkP8WEee2V_P8lt_RA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pink Gardener Gloves", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2793, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:11.143Z", + "ThumbnailImage": "vyZN5MKfwEqqAG1yJQQsbw.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Glove (White Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1184, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:38.073Z", + "ThumbnailImage": "4yv9lieuu39ybfs061keni4bw.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,CsPK8sqkHUSV1u9d4LijHw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Gloves (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": "halloween", + "AvatarItemId": 2320, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:39.427Z", + "ThumbnailImage": "369wpmjr71m46vryx3x1ynzm7.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,DJnKyNXtuEW1tbKBFscIng,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Glove (Pink Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1537, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T23:55:47.253Z", + "ThumbnailImage": "ejkvm0j7lbzn3f6m3h8vzq464.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,dPM-UHMtSEKC3rN8l4JsUQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Gloves (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": "halloween", + "AvatarItemId": 2321, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:41.777Z", + "ThumbnailImage": "7x0z1jskh28m0i22yy1hel8xd.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,GYeYHzKcekODxx_zbtk8Qg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Gloves (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": "halloween", + "AvatarItemId": 2322, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:44.083Z", + "ThumbnailImage": "5hcwuha7qbinh2y6q3kskmmp3.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,jhPUIkf5bkinMSsqPTK3fg,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Glow Skeleton Glove", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1539, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T23:55:52.383Z", + "ThumbnailImage": "dl5czy3ptauoh49mbo0ae06zs.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,KWYMlbpZiEWRUb0F7CYDjA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Gloves (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": "halloween", + "AvatarItemId": 2319, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:36.98Z", + "ThumbnailImage": "3clh44ctdz1digv1oiwv505ae.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,lwyGrpMk-kGZwIkioHr8Sg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Gloves (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2323, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:46.4Z", + "ThumbnailImage": "6g7hoxuvnw5065l9r0fptljij.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,s6DQxJ3gY0CG8L7JmcmRTQ,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Glove", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 1185, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:41.643Z", + "ThumbnailImage": "5yfuk6ffcuv1z2vqg6ffd7b69.png" + }, + { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,ZY0rVNemjEuEMGMjuPNZyA,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Glove (Blue Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1538, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T23:55:49.71Z", + "ThumbnailImage": "bac6n0vzhk6sgr3r9ltyf5xm0.png" + }, + { + "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sarong Swimsuit", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1819, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-04T16:12:16.753Z", + "ThumbnailImage": "f4jxrcx7v17e4u9uskgyxjvje.png" + }, + { + "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,PNnfMibAUkqetPThlhtBgw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sarong Swimsuit (Cactus)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2238, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-08T16:24:43.18Z", + "ThumbnailImage": "CbY0IoFre0CFmDX2p82E4g.png" + }, + { + "AvatarItemDesc": "6b337a35-95d9-4b3a-9891-d9fbb06262aa,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Curly Mustache", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 360, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:27:00.49Z", + "ThumbnailImage": "dn6xgp8b6mjoilolmwxfn8tom.png" + }, + { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Scarf (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 131, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "74jrfu3nny1joqt8ee5vlxpok.png" + }, + { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,5c4a2b35-0e1c-44de-8c3a-96d4a6458b1b,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Scarf (Purple)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 461, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:26.323Z", + "ThumbnailImage": "58gu9l73pm4ez45p70yrkyplt.png" + }, + { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Scarf (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 460, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:25.35Z", + "ThumbnailImage": "3akcjd4a37lw3qz88ajis1kcz.png" + }, + { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,d6edbc00-3c1d-4f49-8412-3ef8c7c5f4c2,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Scarf (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 459, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:24.38Z", + "ThumbnailImage": "08e7y3dct2h7xht6m1vfda9yg.png" + }, + { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,WWVPdeMMi0S4_Dmn85yEqQ,FRUp0aYZTUmAXsybauOs7g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Director Scarf", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1900, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-30T21:06:09.097Z", + "ThumbnailImage": "ct8ojf0jqnnc7an3o2t5zs1a5.png" + }, + { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Hat (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 515, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:01:51.307Z", + "ThumbnailImage": "17c4sjyyimn5d2gw0f556bubi.png" + }, + { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,64545dcc-a8eb-4c69-a539-78ee73a2d327,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Hat (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 516, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:01:53.167Z", + "ThumbnailImage": "4quvkumfq6a1nznmdsezcpwxq.png" + }, + { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Hat (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 518, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:01:55.09Z", + "ThumbnailImage": "6z583ji4uuq0r1nymbm4h8ou5.png" + }, + { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,909ed249-ce09-4304-8b02-56794fa7567d,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Hat (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 519, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:01:56.263Z", + "ThumbnailImage": "2boublopz20zq6qu6ncbx97n7.png" + }, + { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,aBQ3R9boek-mYeSYSNvDbQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Hat (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1305, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:33.657Z", + "ThumbnailImage": "3wjvw25jvmg34uniq3dxxrv37.png" + }, + { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,e02838f8-4029-455a-b35c-dd40f972b05b,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Hat (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 517, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T00:01:54.213Z", + "ThumbnailImage": "4110szxveghcz05ilxuwglfb9.png" + }, + { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,Tbrc2MlSlE6mKua8qSoluQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hunter Hat (Leather)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1125, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T20:00:44.407Z", + "ThumbnailImage": "04egovo7xe0ud9w0z1a6z2glf.png" + }, + { + "AvatarItemDesc": "6d3be838-85cf-46db-b33d-0985aec9609f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wicked Sorceress Cowl", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2396, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:54.557Z", + "ThumbnailImage": "2591QLU31kirjhVvKJKqcA.png" + }, + { + "AvatarItemDesc": "6d3be838-85cf-46db-b33d-0985aec9609f,Vn2gH3yjiE6bwBRgh5ntZQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wicked Sorceress Cowl (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2397, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:56.89Z", + "ThumbnailImage": "89fpSMNTb02Y1qYpw1xf6Q.png" + }, + { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Dress (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 193, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "02aazblyiy14oivk4h218q67i.png" + }, + { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,2c8924aa-68f8-4912-9759-18992f72f08a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Dress (Purple)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 196, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7nlns9i6osonn2bq8867ceizn.png" + }, + { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,d66aa400-aa5a-4539-a25d-5f8ce94dc281,2c8924aa-68f8-4912-9759-18992f72f08a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Dress (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": "", + "AvatarItemId": 195, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3nhman1tbwhikxyha0tj215xw.png" + }, + { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,f750de46-3758-4f7d-9709-0a84b1027009,2c8924aa-68f8-4912-9759-18992f72f08a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Collared Dress (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 194, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9lqg5xqiktt0cxifvy1kkwpa3.png" + }, + { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow Tie (Gold Sequins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1268, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:47.63Z", + "ThumbnailImage": "bdv0ee6pbzi0i8z8f5n5zfc2n.png" + }, + { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,Wm30oV5BtEuFQZFk3dPK_w,0R3Mh96tS0631EZYs03dmw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow Tie (Red Sequins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1615, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:19:50.543Z", + "ThumbnailImage": "9oo75aubpgwd257zfkh94c7y8.png" + }, + { + "AvatarItemDesc": "6e48363d-cc62-40a8-87f9-a69fae90c002,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Box Braid Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1978, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:09.173Z", + "ThumbnailImage": "2qqensahxq2o8r4avbpt9zoo7.png" + }, + { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jacket Dress (Red) ", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1588, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-13T20:12:15.057Z", + "ThumbnailImage": "0h4tnqaliavr973k1vxic8j21.png" + }, + { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,tLbmGIoldE2CC5Qi1oyqyA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jacket Dress (Winter)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2492, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:08.897Z", + "ThumbnailImage": "4DTZdxI0zUWUUrv5xARVCA.png" + }, + { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,v_5qFi-vAUSDd1fLNL7pvA,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jacket Dress (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1589, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-13T20:12:21.647Z", + "ThumbnailImage": "688mit0sflv394soqbkisg5u9.png" + }, + { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,y5O8zRJy4kuhnXzATSWKew,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jacket Dress (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1590, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-13T20:12:33.15Z", + "ThumbnailImage": "e1v40txlz8i12cmhyjswztu53.png" + }, + { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chainsaw", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2467, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:22:13.907Z", + "ThumbnailImage": "ufrfw4K9xkuYsOmmzZdOVg.png" + }, + { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,5p1Hwa8IE0KIuucb7hV16w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chainsaw (Gray)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2426, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:27.6Z", + "ThumbnailImage": "DB_j3Vtx0U-xhO9yu4xlIw.png" + }, + { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,jCfhcP5ftk6_ruDnFjIhJA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chainsaw (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2469, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:22:18.477Z", + "ThumbnailImage": "01j_eNlSvEmV2Czfp-GEwA.png" + }, + { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,odtEahcf10isGbVQCyc2bg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Chainsaw (Restoration)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2936, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-18T16:22:51.513Z", + "ThumbnailImage": "6uJcUEMxpEG8ljDFGcByMg.png" + }, + { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,qWS_znZq2km_MUGvv5QDHg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Red Chainsaw", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2470, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:22:22.527Z", + "ThumbnailImage": "U51KTR3VHEuTJ810dMgdVA.png" + }, + { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,ZqWSyRnr9ECIvoU5yFyqXQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chainsaw (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2468, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:22:16.097Z", + "ThumbnailImage": "T6Ig5zJQmkWoduzZdbHTKw.png" + }, + { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Ear Muffs (Summit)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 947, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-30T02:53:19.607Z", + "ThumbnailImage": "b3xepw6yux7925w5til94vmmw.png" + }, + { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,1_vRe9nJMEWcNX8kAwgh9g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Green Ski Buddy Ear Muffs", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2600, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:38.73Z", + "ThumbnailImage": "cEOrlpC5uEi63XRZAeiOxw.png" + }, + { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,KwCEye0nsESFs-yj4h9sjQ,c_t9XDbn-Eqml1O-wC5zJQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Ear Muffs (Chill)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1277, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T21:40:02.68Z", + "ThumbnailImage": "502z6klf3k4u48eow06006kxl.png" + }, + { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,m2znGrdH-EOhrbLbFsmyOg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Ear Muffs (Pink)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2601, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:40.86Z", + "ThumbnailImage": "aiYHJsbXHku2qBmKihSApw.png" + }, + { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,ojrXnWkUkEOGM3_oT6V29w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Ski Buddy Ear Muffs", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2602, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:43.383Z", + "ThumbnailImage": "JHSLD9otmEODYVGGix00gQ.png" + }, + { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,sipxCGA1uUu72KV07vAWFA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Ear Muffs (Slate)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2599, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:36.5Z", + "ThumbnailImage": "Cl-lyYb_7EyL8pudY8bgOg.png" + }, + { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Jacket (Summit)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 945, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-30T02:53:14.793Z", + "ThumbnailImage": "7e765tmsry0a7xzqwbwtih0ga.png" + }, + { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,0mwtvRpkmECaT5_4aqCttQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Green Ski Buddy Jacket", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2605, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:52.983Z", + "ThumbnailImage": "klVYrqwIukW57n4kEMxC6Q.png" + }, + { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,1BQdC-mTdUqfm4vUf0lx-g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Jacket (Pink)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2606, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:57.82Z", + "ThumbnailImage": "zPU9jyLBykuvxdbYwUE6Sg.png" + }, + { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,fXNkMWFMV0aXalK_y_8SHw,HQQWccdyakaEmntPhvC6CQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Jacket (Chill)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1278, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T21:40:15.287Z", + "ThumbnailImage": "2rr9ojhz8lb65xzu05oejy4i4.png" + }, + { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,S7C2A8nga0SlIeOEkeYaUw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Ski Buddy Jacket", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2607, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:45:02.133Z", + "ThumbnailImage": "Tk070G0_FU-z-K1AbYodRw.png" + }, + { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,vpxBkYv6LUSVV4NhYAS1Fw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ski Buddy Jacket (Slate)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2604, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:48.787Z", + "ThumbnailImage": "h2VEGWuIQke-wT_k7W0sTA.png" + }, + { + "AvatarItemDesc": "703e486a-1329-4e7b-8f3b-d9db9b9db0b5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lightning Hero Gloves (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2295, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-10T15:40:47.187Z", + "ThumbnailImage": "2RiLsCbQ0Uubmw-2hVgnPg.png" + }, + { + "AvatarItemDesc": "703e486a-1329-4e7b-8f3b-d9db9b9db0b5,8NY4MevLp0C2lP178fIZ9w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lightning Hero Gloves (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2393, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:48.267Z", + "ThumbnailImage": "JLbQE-oojUqVUNpFNs_Cxw.png" + }, + { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sun Hat", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 23, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "8vw62vvj318mjoz88zhu69qod.png" + }, + { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,dzH_40F-MUCy_7gATqL4PA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sun Hat (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2211, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:29.013Z", + "ThumbnailImage": "FoMbe_63g0WNL9Sl7y_rJw.png" + }, + { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,YS-fXtVLTkG-wl40HPBLOg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sun Hat (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2210, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:27.803Z", + "ThumbnailImage": "SwnYTGNYiUG4Ua78QnfFEA.png" + }, + { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Helmet (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 41, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6bwvu5xxyxigc6heyrh7sw2bi.png" + }, + { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Helmet (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 484, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:03.87Z", + "ThumbnailImage": "bfdtco5996aiaxyo9h38yw0b7.png" + }, + { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,83522c12-9549-4d74-8c87-bae210bcd2bf,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Helmet (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 483, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:02.35Z", + "ThumbnailImage": "2mdqjp0pan01n0jy9wmab9gka.png" + }, + { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,XNq4Cns4lEGydtktdsXlmQ,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Helmet (Navy)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 850, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-05T20:03:02.097Z", + "ThumbnailImage": "d8wwf7fmiptl4zd7nj52mqemx.png" + }, + { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lacrosse Helmet (Purple)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 4, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0eekw2et1by72nmm01x4haan4.png" + }, + { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,e3454bc7-c88d-4958-8b81-db3fe5472a1e,7e688b30-ed13-4790-9ad8-c49885d1b7e8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lacrosse Helmet (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 5, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6cznt9a4cfpxfot00vquk2gb5.png" + }, + { + "AvatarItemDesc": "71921831-ba6f-408b-a00e-2fd97663636f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wrist Tape (White)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1024, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:54.647Z", + "ThumbnailImage": "b0nybni7980f1n0fvwjlcpwba.png" + }, + { + "AvatarItemDesc": "71921831-ba6f-408b-a00e-2fd97663636f,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wrist Tape (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 297, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9x6rq5lgtswz7z6pcm6ccptiy.png" + }, + { + "AvatarItemDesc": "71921831-ba6f-408b-a00e-2fd97663636f,7d8e55fe-3c34-4b4b-9753-0021f6cc6454,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wrist Tape (Cream)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 296, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6w33yvf6g7oo4h3fayjgbs5gj.png" + }, + { + "AvatarItemDesc": "71afc215-3d18-4f36-a114-f11c453e46d2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acoustic Guitar (Wood)", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2217, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-18T17:40:02.45Z", + "ThumbnailImage": "sVLupklIaUKmgYNatMdcSg.png" + }, + { + "AvatarItemDesc": "71afc215-3d18-4f36-a114-f11c453e46d2,BPp9SkUpsE2PZlStZrIDIg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acoustic Guitar (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2242, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-22T16:52:51.157Z", + "ThumbnailImage": "vpkdcMOxAUylrfe2PrxZfg.png" + }, + { + "AvatarItemDesc": "71afc215-3d18-4f36-a114-f11c453e46d2,O38XfZ3gh0-ofqu36y3mAg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acoustic Guitar (Cherry)", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2243, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-22T16:52:54.147Z", + "ThumbnailImage": "ElDAaYT06kqpFifv_brl_Q.png" + }, + { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bunny Ears (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 622, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-03-27T21:42:46.687Z", + "ThumbnailImage": "1m40flxsxhcbfatcc8mhbk1kx.png" + }, + { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,NI8a4j9fl0egSrLbrMTn7Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rabbit Ears (Lunar New Year)", + "Tooltip": "", + "Rarity": -1, + "TagList": "", + "AvatarItemId": 2732, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:24:58.507Z", + "ThumbnailImage": "7Seg-2HnmEuiyQanSBov5A.png" + }, + { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,ss931x_Hy0-y1au-fT3zTQ,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bunny Ears (Brown)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1952, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-19T00:14:41.24Z", + "ThumbnailImage": "b45xlo71b6cuovl9no7k2cacs.png" + }, + { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,UQfLaKHzo0WqlRul_O61xQ,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bunny Ears (Forbidden Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1953, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-19T00:14:44.5Z", + "ThumbnailImage": "95hz7svaey618hpsf9c4or7xo.png" + }, + { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,wZC46s7Id0CUICN_XOK-Rg,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bunny Ears (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1950, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-19T00:14:30.707Z", + "ThumbnailImage": "4o8g6zqfewfnr504cvcbano60.png" + }, + { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,yrR3ogjJ50q6ypAnCF-ctQ,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bunny Ears (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1951, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-19T00:14:34.66Z", + "ThumbnailImage": "a0g5v9gzs5d8fpdvoeh8rvqbm.png" + }, + { + "AvatarItemDesc": "730453b8-a352-4e6b-9573-54294690c2ad,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wicked Sorceress Staff", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2398, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:59.113Z", + "ThumbnailImage": "6wrK2BA4GkydRnaEpYN9DQ.png" + }, + { + "AvatarItemDesc": "730453b8-a352-4e6b-9573-54294690c2ad,4yMvQ3-hnU2zZQf_XT9r-A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wicked Sorceress Staff (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2399, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:12:00.233Z", + "ThumbnailImage": "_Hv84dtkbkuHQuNy36QnrA.png" + }, + { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Armor (Grey)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 238, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7fmex9oqxz42zd52m3gbxb3l6.png" + }, + { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,22dc463a-a89b-46ad-9a0d-557c742b4a80,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Armor (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 241, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "4d9p7yhef4c8w1jrj3cd61gbp.png" + }, + { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,59866578-d4e0-417b-9483-233ab108b1ac,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Armor (Cherry)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 240, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7hajn9eszpqh00q654d0iqds1.png" + }, + { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Armor (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 242, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "ce1v4ja422emiw67599tvacqd.png" + }, + { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ed134bee-d199-43eb-98bd-206571603f40,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Armor (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 239, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2p5x227st2nelqfya7ywpcppx.png" + }, + { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ITH2OpzjP022vZ5JgxV_iQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Armor (Yellow)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1113, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:17.547Z", + "ThumbnailImage": "e00pks3p8szzbwf082p7udhb7.png" + }, + { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,PMa9370LPEig_7pKwCceEQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Armor (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1312, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:06:08.143Z", + "ThumbnailImage": "58uqy0e4o8nv424g5aory3woy.png" + }, + { + "AvatarItemDesc": "73a119ab-d2c8-4da9-98b2-29edbb38e2c2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Dress (Red Sequins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1264, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:32.12Z", + "ThumbnailImage": "3o9n9ip2a7y91q3v2kwe6jpnj.png" + }, + { + "AvatarItemDesc": "73c0e2ba-cba1-482a-89d5-1508997aceeb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Dress (Silver Sequins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1263, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:28.48Z", + "ThumbnailImage": "8op0aqlcnxdsbinjfpuqdslgn.png" + }, + { + "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elven Bracer", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1799, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-17T16:05:33.467Z", + "ThumbnailImage": "275lkom5he8sdivhtrbsz9ioj.png" + }, + { + "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,MzNNQ6T1HEqbqcLXZIulLw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elven Bracer (Jade)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2196, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:38.267Z", + "ThumbnailImage": "42hTRTPSNkmQRqAiceQwVA.png" + }, + { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Safari Gloves (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 385, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-30T23:38:24.933Z", + "ThumbnailImage": "9d9fdme5qc72avvqaj8m7u2b1.png" + }, + { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,fa9a3d8e-16c9-4a7e-9166-3226e0d13c39,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Safari Gloves (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 395, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T21:30:09.21Z", + "ThumbnailImage": "cpfts5y9qfb5p04u9nnjxia23.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Arizona Cardinals Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2611, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:35.13Z", + "ThumbnailImage": "cbi2t8gd1f5tzytciebrrxndh.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,_BV42pO3n0e0V-eOf9CyGg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Los Angeles Rams Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2629, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:45.39Z", + "ThumbnailImage": "8ndck6ysf75lg3kvjiz1bhh3w.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,5mFA4uHLmku8oCc1rDJmXw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Denver Broncos Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2620, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:40.127Z", + "ThumbnailImage": "ca68ce9flmrpl7ig3zwhbqrv4.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,84OVMNAiv0mQwX2bpkw2yg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Chicago Bears Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2616, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:38.007Z", + "ThumbnailImage": "0ah2mm6n1rgh6pvzk4fx9rnj6.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,cLswsDJEmkCqYDGI8DJmPQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Cleveland Browns Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2618, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:39.073Z", + "ThumbnailImage": "cz3bgo3si4042vf9xb2dtypxf.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,coRfJXTxhUKsFs1tzSBgUQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL New York Jets Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2635, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:48.873Z", + "ThumbnailImage": "dwlxb29ug9oqs1apya0icyjsc.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ebjoqQ_pnU2qdFVR1yDIzA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL New England Patriots Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2632, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:47.21Z", + "ThumbnailImage": "44ohtkl0bud9zkb1hd75qdgph.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,EziQI39wZUWqIy8zs5I7LA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Seattle Seahawks Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2639, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:51.12Z", + "ThumbnailImage": "40mqyx1i4dzjcumjlzblnr5jl.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,fdmR0dt0hEakaNp8mpjGmg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Dallas Cowboys Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2619, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:39.593Z", + "ThumbnailImage": "220fwlypah2hrdvg8fi0gswf0.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Fr--3nBIUUuD6EYmj1iklA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL New Orleans Saints Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2633, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:47.76Z", + "ThumbnailImage": "8t9dbig6zpecho4qe8scj3bpt.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,g6PcjAOH0UinJtrGmxVuyw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Miami Dolphins Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2630, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:46.003Z", + "ThumbnailImage": "5uj5qvvm6izou0whgm634hnme.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,G9cFrBRvw0S-nDp-Fn494g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Atlanta Falcons Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2612, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:35.74Z", + "ThumbnailImage": "bxeoecs08mv3iy5dgdogqbb94.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,hrTGnJLb4U21P9PCi7u3xw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL New York Giants Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2634, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:48.307Z", + "ThumbnailImage": "b0joufd9x01y01brs3e7krk43.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,i1e3GavcdEu7EJFzwpBXvg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Minnesota Vikings Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2631, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:46.543Z", + "ThumbnailImage": "d32jj9kz3n5jceagnlpmq5vpa.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ishXZTP3bkeVNk68PBZAiA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Cincinnati Bengals Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2617, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:38.533Z", + "ThumbnailImage": "831h9zt2yylg0ao93kyxmy4t3.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,KcsFLjkhCUmg8HbamtChbg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Baltimore Ravens Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2613, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:36.273Z", + "ThumbnailImage": "7n3s5s977ulc5z7jhiencdnrw.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,kdExSysXREOAYqobK_Wzpw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Kansas City Chiefs Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2626, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:43.697Z", + "ThumbnailImage": "dz7a5njd87o8hv2l5etgyisnj.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,nHa0WjWfl0-g-sknorb10g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Indianapolis Colts Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2624, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:42.433Z", + "ThumbnailImage": "f2apsx992xa88goodejq341lr.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,pcEwV_ZPxkSKP39UgPh6fw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Houston Texans Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2623, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:41.9Z", + "ThumbnailImage": "bmav2pqie439kaf4223zzgxlg.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,PWMkuXHWFEKGKfSiT8rWNg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Tampa Bay Buccaneers Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2640, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:51.663Z", + "ThumbnailImage": "5gvpye8hcsb60wbuk15bi7r5t.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Rlxn533MdUqMefvUSoZrrQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Los Angeles Chargers Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2628, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:44.867Z", + "ThumbnailImage": "ddaagd1il03gi4nrec2vd1xei.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ry0fWzcysk2fsr-zIvzjUg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Detroit Lions Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2621, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:40.703Z", + "ThumbnailImage": "7g7ym06cw3m98l2f9ziwdlpia.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,S9YQnGF2WkaFSG07d-5TUw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Green Bay Packers Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2622, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:41.28Z", + "ThumbnailImage": "1p6ky76pvprr7cwbobzngw01f.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,VExSaZXZ9kan-0qjP6YPzQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Pittsburgh Steelers Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2637, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:49.97Z", + "ThumbnailImage": "5t2128zn5sfwk2uc2qclkhlb9.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,vtQ3bx6n7kSFdES121M5IQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Washington Commanders Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2642, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:52.8Z", + "ThumbnailImage": "30ubxldr0r27wafqn2ejkmtgv.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,w_8Bff5J_Uej5iCAz2WTBw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Jacksonville Jaguars Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2625, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:43.167Z", + "ThumbnailImage": "68ou7wz2ezhyh6y39hxqeyihw.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,xdO8lwFuG0e1v2FRmza4dQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Tennessee Titans Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2641, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:52.227Z", + "ThumbnailImage": "9ftzba4l162233dbbcqiaszc4.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,XlkkIjP4EEKq0ObjXYGtBA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Las Vegas Raiders Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2627, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:44.3Z", + "ThumbnailImage": "351j7myhryxcppvy8gvdz4oix.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,xVPRKfkYG0-u4MFhJYGe9g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Carolina Panthers Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2615, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:37.467Z", + "ThumbnailImage": "eslxy84me9m2oxtnk8o18n5nn.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Y75a0D5Wj0qmpfxG18LvWQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Philadelphia Eagles Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2636, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:49.417Z", + "ThumbnailImage": "bxnxsmeklw8dkemz9vrpajd7t.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ye7GYcd6PkObqAsla6BJaA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Buffalo Bills Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2614, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:36.94Z", + "ThumbnailImage": "5n2ngxovy8uj9lfz3essaxn29.png" + }, + { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Yec2FLXhpEmrocbVUOkhhQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL San Francisco 49ers Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2638, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:22:50.527Z", + "ThumbnailImage": "du30i4p3o8j2i1t6evwaw6x3b.png" + }, + { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Coat (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 202, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2amyw5vvgk1c9r6w9pdloakyg.png" + }, + { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,657f28d5-672a-4f27-86c6-3cb00f25bb84,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Coat (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 474, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T23:07:43.17Z", + "ThumbnailImage": "asgwfydw5ghc9650zs32gm2b3.png" + }, + { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,8cab8cc6-9a2d-434c-8b72-e66edbdd223c,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Coat (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 473, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T23:07:42.313Z", + "ThumbnailImage": "cdi7d06wp2qv0t93m630vtp9s.png" + }, + { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,b42d903b-b393-4f49-af5e-38d0fb6c42b0,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Coat (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 472, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T23:07:40.827Z", + "ThumbnailImage": "6nqdiagvhy4jttofvcepefq2y.png" + }, + { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,w_aK2K9bHEeU6oSQ7BK0qg,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Coat (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1628, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:42:28.36Z", + "ThumbnailImage": "3q0iocg562i3lzbn5n65t13lw.png" + }, + { + "AvatarItemDesc": "745fd5ef-705b-40f0-bfd7-dbf4af5a82e8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mighty Princess Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1958, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-03T22:58:09.433Z", + "ThumbnailImage": "7wtce4myle20jpvnkao5yy6q4.png" + }, + { + "AvatarItemDesc": "74902dee-08a5-4a8b-a113-80f450a0de0a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tokyo Machine Glasses", + "Tooltip": "", + "Rarity": -1, + "TagList": "", + "AvatarItemId": 2729, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:27.613Z", + "ThumbnailImage": "UNu6rZ-7CU-S5MeZzybZKA.png" + }, + { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wedding Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1794, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-17T16:05:09.6Z", + "ThumbnailImage": "5c3hj3unazrmeie5zbuj4d1yk.png" + }, + { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,nuR8wvvCXU-EMXjBZuTXJA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sugarplum Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2511, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:05.037Z", + "ThumbnailImage": "KXWrEO68d0Grp3m1mwkRjg.png" + }, + { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,SExtD3FBk0GwseMZDdGJlw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sugarplum Dress (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2512, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:07.86Z", + "ThumbnailImage": "PUAM3Iq0rUqQ6Pi5AYQeYg.png" + }, + { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,TqhSo1hbPE6wdB_6lvLhFw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sugar Plum Dress (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2513, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:10.397Z", + "ThumbnailImage": "of8r-gp3HkCGzkv5aES9aA.png" + }, + { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tennis Shirt (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 366, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:27:06.523Z", + "ThumbnailImage": "c6y5y8wwcc2dcp81jcdqvac5r.png" + }, + { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,304e5cf1-5c94-481f-8e49-e6a943e6b300,90e0da8b-1941-4ca8-b7e5-b4e31921873c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tennis Shirt (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 441, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:11.18Z", + "ThumbnailImage": "22s0jdhj08deg2hm1agcg0ap2.png" + }, + { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,NpMkoIK62k63QoLVEXId6g,iT7UGMahoEu7BZZqeKXKww,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Spring Shirt (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1370, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-01T19:10:15.34Z", + "ThumbnailImage": "1eu2yq3p1x77hmixyzmubdux6.png" + }, + { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,PLRhiOhhb0KhatFH7f3pwA,iT7UGMahoEu7BZZqeKXKww,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Spring Shirt (Orange)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1371, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-01T19:10:21.733Z", + "ThumbnailImage": "duxjnjbu2n1zbarvejwuhhzgn.png" + }, + { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,RwgnKTfMEkWrAp_OMGy__Q,iT7UGMahoEu7BZZqeKXKww,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Spring Shirt (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1372, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-01T19:10:26.46Z", + "ThumbnailImage": "8zfsf3e3asjbwc8dz1kq9acae.png" + }, + { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "RecFly Vest (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 725, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-27T22:48:20.707Z", + "ThumbnailImage": "bt8tu5acrblwkf3nc68uhi3jl.png" + }, + { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,GVoh3mdWf0WNA9lfqL1GEw,w9qG5gHlAUqh8f9ZgnezsQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "RecFly Vest (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 1671, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:05:05.82Z", + "ThumbnailImage": "4gn26corqk34q37e2hx5ouc9q.png" + }, + { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,kkvNbVRjcEKtChpy3W1bqQ,nbhzQy_Hdkeohh4S1IezwA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "RecFly Vest (Black)", + "Tooltip": null, + "Rarity": 20, + "TagList": "", + "AvatarItemId": 1084, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-12T23:52:26.62Z", + "ThumbnailImage": "66rxidv3887cwdjojesos240j.png" + }, + { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,x4PPvuhg6USE6GSFgZZnCg,w9qG5gHlAUqh8f9ZgnezsQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "RecFly Vest (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1672, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:05:08.553Z", + "ThumbnailImage": "cyarqq8aeox95hehu1py5nbbc.png" + }, + { + "AvatarItemDesc": "7524b3f3-130b-41b1-83f6-9c241bd92bb4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yeti Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2052, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:49.98Z", + "ThumbnailImage": "y_99GWjFbUa8UCqUY9X7FA.png" + }, + { + "AvatarItemDesc": "7553d851-1986-4325-870d-e425dfb7d007,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Farmer Beard", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 369, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:09.033Z", + "ThumbnailImage": "1jj51yv6mj3i8duvbctn67g5j.png" + }, + { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowboard on Back", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2707, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:51.183Z", + "ThumbnailImage": "lhJKy4WMsEKemSq-lsUulg.png" + }, + { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,2dGY5MHfxEunzr7jtSFRVw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowboard on Back (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2712, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:42:01.443Z", + "ThumbnailImage": "rfwXR61Q1k2Kyd4vTEsAyA.png" + }, + { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,DSZKCNhXAEiAxMM1Gqfhsw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowboard on Back (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2708, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:53.23Z", + "ThumbnailImage": "RlqSyYcF8UeGktdGy3dvmw.png" + }, + { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,E6md4xTNYkS9geB8zkNRmA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Black Snowboard on Back", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2709, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:55.21Z", + "ThumbnailImage": "sf_MJ_CbKUCFSn6Iky3HxA.png" + }, + { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,K1-5YGg2rEiJFRWUKEfEMA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowboard on Back (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2711, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:59.337Z", + "ThumbnailImage": "DsRdBkQ4c0WsfkMYTXQsXg.png" + }, + { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,PI3_sfTcNEW5TcAmHbsUOw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowboard on Back (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2710, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:57.293Z", + "ThumbnailImage": "Gb6e46akCEKEXpH2qSvTlg.png" + }, + { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Creamsicle)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1070, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:59.613Z", + "ThumbnailImage": "5sb23yvxjkh7ozjfothb1ul6f.png" + }, + { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,1w_u4d4AjESxw5dxRkKHrw,CylZksC7KUGXF2VeJhlLSw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Cheeseburger)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1844, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-02T21:11:37.027Z", + "ThumbnailImage": "2iyjpxumims1bzvq7x6kqrmqx.png" + }, + { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,1Z24Obg1MEm6dC_blOy4IA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Premium)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2817, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:39.217Z", + "ThumbnailImage": "QMhjhzpkIUOPw6-mpbsclQ.png" + }, + { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,6wCu0bPODE6tayAY_aicRQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (SummerCamp Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2158, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-05T20:23:33.07Z", + "ThumbnailImage": "dVpzRz2OY0avaXnWbmbm_w.png" + }, + { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,7BMBl3iA6USKijNCKfCXqA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Neapolitan)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2244, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-22T16:52:56.2Z", + "ThumbnailImage": "n9H1eWtdiE25SebY5g4Ukw.png" + }, + { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,akqD9mYQQ0qks9SJe80MbA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Floatie (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2299, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:38.633Z", + "ThumbnailImage": "SlacPLiWtE2CpmO5WHd-RQ.png" + }, + { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,LRv1X0ZrjkqO7azGpZ7uMg,sx10-Hsfl0OS62pIFvHH8A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Donut)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1071, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:26:01.87Z", + "ThumbnailImage": "agoyhlxxj14bkqor8pthssxge.png" + }, + { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,NMmOn0zQZ0mJLxCMnsbIVw,v1ZOE9G9gEWAqNJX1A9f2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Watermelon)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1461, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-10T18:09:35.12Z", + "ThumbnailImage": "c5zj93bwe1qme6eb14dtwbcjt.png" + }, + { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,RCit-BlLyE6cvzpbfCVShA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Floatie (Invasion 2)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2699, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:28.283Z", + "ThumbnailImage": "E_MFRZ-dI0GiU60k_m8LSw.png" + }, + { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Hat (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 557, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-06T22:34:50.837Z", + "ThumbnailImage": "02t4ai6twkgrds4d3p7uhoirv.png" + }, + { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,1421caa9-9a0d-42c2-b847-1500ba2e483a,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Hat (Brown)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 627, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:47.407Z", + "ThumbnailImage": "bcipyj02mi2pt13ubgaeou2w9.png" + }, + { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,390a476a-5545-48eb-955c-1bf1a16012bf,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Hat (Grey)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 628, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:49.163Z", + "ThumbnailImage": "cyemgjkr87sifsyr57umkly9v.png" + }, + { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,40283127-2ffc-4989-82f6-29c3381bf9e2,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Hat (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 626, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:45.707Z", + "ThumbnailImage": "5durkqoejr41mlqicbjoralgg.png" + }, + { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,46970903-9799-4d25-b90a-7162c1f5dbef,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Hat (Creators Contest 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 711, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-11T22:02:09.5Z", + "ThumbnailImage": "7wy0v5yb2753kb3b6g2r6wmdp.png" + }, + { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,8XajS2adOEOqzqnLy6-zcQ,P12CUkIg8EuFihGQsvPlxg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "White Hat", + "Tooltip": "A hat given to the ethical hackers of Rec Room.", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1462, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-10T18:11:31.77Z", + "ThumbnailImage": "cjcge17sgy7ehaobbb1d90lb2.png" + }, + { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,PZx7Iae0pkiDaxT9t3-vgg,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mobster Hat (Purple)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1129, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T21:13:13.393Z", + "ThumbnailImage": "b4yf4gpicr0pa3pz4cdefjtu3.png" + }, + { + "AvatarItemDesc": "764b4c4e-1009-4772-b01f-7b326dd77e8a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Banker Vest", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2258, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:00.6Z", + "ThumbnailImage": "SBxpBk0gcUG34NYQ8jtNvw.png" + }, + { + "AvatarItemDesc": "764b4c4e-1009-4772-b01f-7b326dd77e8a,93vga8NJQEe5nWdqrroAaw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Banker Vest (Shamrock)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2772, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:24.48Z", + "ThumbnailImage": "BRPCDGHJ1USSO-gAt69-HQ.png" + }, + { + "AvatarItemDesc": "7652db86-bc67-4665-8937-f5199d27b5c7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mighty Princess Crown", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1959, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-03T22:58:12.197Z", + "ThumbnailImage": "8icc0glgl3g068z6zkzlc81e7.png" + }, + { + "AvatarItemDesc": "767684e7-0eec-4f6e-ad58-3d5ae715206e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Retro Sunglasses", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1463, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-10T18:11:46.42Z", + "ThumbnailImage": "08qct3wo7gai3uz597vre1rid.png" + }, + { + "AvatarItemDesc": "76a73866-5b60-424d-b751-a105e030f46e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Prankster Hair ", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1843, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-02T21:11:34.107Z", + "ThumbnailImage": "1lnhgu9j4uf3ypg48ra7v0by1.png" + }, + { + "AvatarItemDesc": "76f8f9b8-0793-4d98-962c-9e6a71979540,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Samurai Belt Sword (Jade)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1904, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-15T20:42:56.677Z", + "ThumbnailImage": "670kc3b5s4g784sztj0kyl4xe.png" + }, + { + "AvatarItemDesc": "76f8f9b8-0793-4d98-962c-9e6a71979540,XIluUn9vQEabkEpqyYBG0g,9sSCSLRkYUCs4CCHK8FfAA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Samurai Belt Sword (Red, Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2054, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-16T19:03:41.347Z", + "ThumbnailImage": "mFZE17grJkezYN_vmo5ZnA.png" + }, + { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowy Owl Mask", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1661, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:58:36.24Z", + "ThumbnailImage": "3li2gob8aeawnh0bgtt1lfs2q.png" + }, + { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,HWAWBHI3zkGsh06he9CoPg,UAeSz-XeZUaZsk9FNlPX5w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowy Owl Mask (Raven)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1711, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:32:49.767Z", + "ThumbnailImage": "cabsqekth6kemqe8zn7s45v7k.png" + }, + { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,I_3bHRSG_EmC6novYyy2dA,Cq8BOWcHb0GTDLvXl1iIcg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowy Owl Mask (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1710, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:32:46.53Z", + "ThumbnailImage": "48ikxhz5n438dh6imyqdnqqdx.png" + }, + { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fur Coat (Brown)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 185, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3tc8n5oesvirh7gtgk7ky4kbe.png" + }, + { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fur Coat (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 470, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T23:07:38.5Z", + "ThumbnailImage": "7yjxqxjcdtwsuu11rr9ijfijs.png" + }, + { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,643b5f2d-0666-4869-b699-03742de34d16,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fur Coat (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 471, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T23:07:39.49Z", + "ThumbnailImage": "ekhbvef0wyu4wu32a5dvhlqqq.png" + }, + { + "AvatarItemDesc": "77d3c585-4928-4471-a425-89036efe7299,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Spiky Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1001, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:22.737Z", + "ThumbnailImage": "95n2l3ib6p6i60mz8mpfd18uj.png" + }, + { + "AvatarItemDesc": "79b90274-6eec-4664-acfb-4a123334661e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pig Tails Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 997, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:17.347Z", + "ThumbnailImage": "9gvfh0l74sodnh53dk03ioc7k.png" + }, + { + "AvatarItemDesc": "7a5cb589-5eab-4d95-9040-e9bfdc9590fc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousCatNoir_Shirt) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1997, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:14.87Z", + "ThumbnailImage": "1rltz0xd7rtu9knzw8dxe4tnf.png" + }, + { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Gloves (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 267, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "28jeraj9pdlhoxmjt0mhkqvj7.png" + }, + { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Gloves (Yellow)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 929, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:05.21Z", + "ThumbnailImage": "30u7o3e8jtfekidt2dw5uia5v.png" + }, + { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,83522c12-9549-4d74-8c87-bae210bcd2bf,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Gloves (Black)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 931, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:07.273Z", + "ThumbnailImage": "5tnpmoxpb4gujzn1apm2ywi3z.png" + }, + { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,qspNifi92keI-XssPB5qDA,RVraJOPsOUqZjd8bEiPduQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Gloves (Premium)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2024, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:08:11.867Z", + "ThumbnailImage": "X4W5cZITW06S0a_Bere_PQ.png" + }, + { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,XNq4Cns4lEGydtktdsXlmQ,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Gloves (Navy)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 930, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:06.24Z", + "ThumbnailImage": "53455700060fde41p5z5thud2.png" + }, + { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Hat (Brown)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 379, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-30T23:38:17.703Z", + "ThumbnailImage": "bzqcpgtdl5etxzj1p61vv6r5r.png" + }, + { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,a8de80d3-286a-4fdc-bed2-75d52f8c0964,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Hat (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 399, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:23.57Z", + "ThumbnailImage": "cq2ejdon4vbkzqptgu6lhugwi.png" + }, + { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,c6cf096c-f0cb-4500-80a0-bc2916b5a426,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Hat (Tan)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 400, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:24.5Z", + "ThumbnailImage": "ewo7xaztrkgxbdwc8nnspdmtl.png" + }, + { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,FjnZ-D1hcESLOWL4Ukv7kw,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aviator Hat (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1606, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:36.453Z", + "ThumbnailImage": "2vm41bj3a6vlqwhygscxqlcy8.png" + }, + { + "AvatarItemDesc": "7a97838f-24ac-41a0-8390-0c9308644eb1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Power Sword", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2579, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:38.993Z", + "ThumbnailImage": "rDwV9FzDSE-8tcpVeQsaFw.png" + }, + { + "AvatarItemDesc": "7a98503f-0460-4d25-a0d5-72a32db8f4c2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Turtle)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1471, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-24T21:34:25.717Z", + "ThumbnailImage": "chtv23889bkxqdhplm9mrfmxz.png" + }, + { + "AvatarItemDesc": "7a98503f-0460-4d25-a0d5-72a32db8f4c2,A8ht7G1iqEeLvP0SW6SwyQ,QppxPdf550-jT7dK7XrTzw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Penguin)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1954, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-19T00:15:14.49Z", + "ThumbnailImage": "c0c3e51sc58rcze7q10j1aiq5.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Dress (Primrose)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1417, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:46:21.24Z", + "ThumbnailImage": "75icni7eg78l4eyuy6hwwrzzk.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,_OM7UNZENEejgO5h7H1ztg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Dress (Dahlia)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1421, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:46:46.077Z", + "ThumbnailImage": "5uifh9814ayb3sywh90qxniz4.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,9Z95fSKS00GscDxK8-ARlA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blueberry Gamer Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2921, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:15:37.123Z", + "ThumbnailImage": "FVH53dlIV0yvAH9GU2tgxA.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,D9U3j_XgSUesfHtSNoAdLw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Dress (Cow Print)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2236, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-08T16:24:35.443Z", + "ThumbnailImage": "jWeFkQl2_Uu7fhibuWdtXA.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,I8SCbauJX0OLAKWOjy78yQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Strawberry Gamer Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2926, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:15:56.453Z", + "ThumbnailImage": "s-VTHTHagUa_Xh0Oa3PAJA.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,IzdUC8x0F02i3BhPfEUOYw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Dress (Poppy)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1419, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:46:24.91Z", + "ThumbnailImage": "08kjv45btrzy2apeo276vys08.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,nPUQvBsxu0mzhQg9YnWEgw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Dress (Paradise)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1423, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:46:51.623Z", + "ThumbnailImage": "du4ay6j6cuhxjyg0f72e9dwtt.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,P6w6X7-Dak2G6O8HDRwlVg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gamer Dress (Lime)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2923, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:15:44.703Z", + "ThumbnailImage": "A8eUc7t5xEK6b8yAZPGUdQ.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,RKftA1Fw30-hriuZNMGsoQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gamer Dress (Grape)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2922, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:15:40.903Z", + "ThumbnailImage": "aKVQYVQFDkCP9Sy-U3FWXQ.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,SiraUm3ZaUOCeXCekunJuA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pineapple Gamer Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2924, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:15:48.703Z", + "ThumbnailImage": "PO4F_PVCVkSGejhtWCvxVg.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wLpOk1g2rUyDeCKb5uOeSg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gamer Dress (Raspberry)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2925, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:15:52.657Z", + "ThumbnailImage": "0_EW1WuF1U-UBFVVcVjAGw.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wyKAZSZwT0u9cuSaQ_-IHg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Dress (Begonia)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1422, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:46:48.547Z", + "ThumbnailImage": "67fl0ih7xgt9itoq9vvq1op9o.png" + }, + { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,ZXeI9jooq0-dQaX-FlkNuQ,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Dress (Lily)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1418, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:46:23.197Z", + "ThumbnailImage": "63oehgwwbgnddpx5bauhi2ztm.png" + }, + { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Racing Suit (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1852, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:46:08.02Z", + "ThumbnailImage": "7lyaxr5m3766nt3tdurlv2gik.png" + }, + { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,jGNpSO25HkO7KbR3v05nkA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Racing Suit (Astronaut)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2484, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-04T17:41:36.507Z", + "ThumbnailImage": "8uEeIbBPq0eGrt1TFDEHTg.png" + }, + { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,lhqUg1VMNkC8nrsGZF4edQ,uFERkSfSl0i9BPFBVOICeg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Racing Suit (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1898, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-30T21:02:38.267Z", + "ThumbnailImage": "1ohpxd83hqnj4iz7zqf0eqy3w.png" + }, + { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,yO5pgI2quE2i3tNBlvJPGA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Racing Suit (Sponsored)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2115, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-23T23:49:25.627Z", + "ThumbnailImage": "qvzY9bthF0SXys1g8FCeNg.png" + }, + { + "AvatarItemDesc": "7b568bd0-ce59-456f-af69-537364a52f69,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lightning Hero Suit (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2293, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-10T15:40:40.377Z", + "ThumbnailImage": "O2g6r5QKqk2REyXvLqLyeQ.png" + }, + { + "AvatarItemDesc": "7b568bd0-ce59-456f-af69-537364a52f69,_fabGqrxrkW2mfx0bejHsA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lightning Hero Suit (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2391, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:42.353Z", + "ThumbnailImage": "5MjNgKFX1EuMIDbmbkqxZg.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "T-Shirt", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1020, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:49.693Z", + "ThumbnailImage": "8h9x3f8d3cbsn1mixmjnnxakw.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tank Top (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 230, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "b1hdewklda06oi0oveqpmi9wc.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 553, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-09-12T23:38:36.78Z", + "ThumbnailImage": "00krwbc9mtk0c5c3rczo0ba1i.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,48abd952-214f-48b2-a8f1-1146f6f69aa2,b78008e8-abbd-4ece-be34-9a911f721fcc,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tank Top (Zebra)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 677, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:42.923Z", + "ThumbnailImage": "4iwbk5q2yccf8huy5ut62aqjm.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tank Top (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 227, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "csvjo09nx4adboqztoamuuq7p.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (Orange)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 680, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:47.247Z", + "ThumbnailImage": "b5581rifqvl56c14u3pjcb613.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,5c4a2b35-0e1c-44de-8c3a-96d4a6458b1b,9c03f381-7357-4d0f-8cda-8737d4c43d25,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tank Top (Rainbow)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 679, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:45.743Z", + "ThumbnailImage": "cyeqj6jrqz7lap5blce53jyxc.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,6d703981-2734-4c45-8983-cdd5f328902f,a0271cd0-e172-4d3f-aa2f-9806f21a82d2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tank Top (Camo)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 676, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:41.68Z", + "ThumbnailImage": "apumxi9psa3dgu88d82sv7a82.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,724c79a3-822c-422f-9462-a5374ee0211c,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 550, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-09-12T23:38:33.183Z", + "ThumbnailImage": "68baneyontwji279r6ya132th.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tank Top (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 228, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7wrlcy8lbaezttb5m6olhzmu2.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 236, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "4tf3fmonukbqbhbj46tlqwovk.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,90bc2d31-1715-4d1a-813a-7c57e66cb017,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (Teal)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 552, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-09-12T23:38:35.603Z", + "ThumbnailImage": "e8kd5l3itqg0vfla6oyfwyug2.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tank Top (Dots)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 678, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:44.303Z", + "ThumbnailImage": "5pbiviztmh19hus4bp2sifgsl.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,c72911d0-453f-4732-b1bd-dad520220a06,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 551, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-09-12T23:38:34.47Z", + "ThumbnailImage": "88z32iu1vqx5t79u8rbzxb2jh.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (Pink)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 546, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-09-12T23:33:21.39Z", + "ThumbnailImage": "6yhybki2x1u4frp9d3mj5057z.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,d2b40639-5d34-45b6-904e-6dd29030ff44,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (Yellow)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 549, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-09-12T23:38:31.807Z", + "ThumbnailImage": "bjb4do6miad7c1uhkxlvmvtdu.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tank Top (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 229, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5k1gsvgmixc21tqvaomwh0yft.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 237, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6e2rsyvdnxb0lqz1t1x527ji2.png" + }, + { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jersey (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 548, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-09-12T23:38:29.993Z", + "ThumbnailImage": "3404czywuocyttg1yeivg4l6d.png" + }, + { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pearl Necklace (Freshwater)", + "Tooltip": null, + "Rarity": 50, + "TagList": "", + "AvatarItemId": 1271, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:16:00.18Z", + "ThumbnailImage": "bjtkko8cs4inet2bswk24bky0.png" + }, + { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,sqPMH0LhLkeG-4XkxpU-sw,URWHffwjGUKgXeV01upePA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pearl Necklace (Saltwater)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1272, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:16:04.007Z", + "ThumbnailImage": "4kmcbo8n4ht1kadrspll7f1oy.png" + }, + { + "AvatarItemDesc": "7c1552a6-bc36-46e6-884c-1de6b8111a92,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raccoon Cap (Brown)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 689, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-31T00:52:12.183Z", + "ThumbnailImage": "5p66sv7hukzmxmyh14z8b5781.png" + }, + { + "AvatarItemDesc": "7c1552a6-bc36-46e6-884c-1de6b8111a92,926ae943-76cb-46dd-9c66-a6ee44ea9194,f1cd10fb-3d0b-436f-a173-65bc0d88d8bf,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raccoon Cap (Grey)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 704, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T21:08:41.033Z", + "ThumbnailImage": "3x3ft6vz0rl2rj8hpyhovqfpw.png" + }, + { + "AvatarItemDesc": "7d6cf363-76ba-45c8-91f1-cf4434c31b36,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Banker Monocle", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2260, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:05.377Z", + "ThumbnailImage": "9Wd8fqP_uUygfK_VJAt3UA.png" + }, + { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mirrored Glasses (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 348, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T23:01:05.597Z", + "ThumbnailImage": "bgvzostookysj7axrphthrkbq.png" + }, + { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,f841cdfa-45ba-4f09-a117-503eef34cb4b,9c55b609-b7dc-4070-a3ad-6351a0054a06,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mirrored Glasses (Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 392, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T21:28:30.897Z", + "ThumbnailImage": "0p43fda4clqqc4kkkt9xq6vsz.png" + }, + { + "AvatarItemDesc": "7dc6c916-b887-4929-93b5-dcea3022e6a9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Top Hat (Wonderland Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1374, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-01T19:11:18.633Z", + "ThumbnailImage": "8zss1xn4q3bwumq65zgy4xq5g.png" + }, + { + "AvatarItemDesc": "7dd6f7b0-7ba0-429f-a04f-e32d3a79ee61,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Short Wavy Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 585, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-08T02:21:32.377Z", + "ThumbnailImage": "85pkqd12j64n3n0av6xlffsxm.png" + }, + { + "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Felted Shawl", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1765, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-19T20:29:36.287Z", + "ThumbnailImage": "ceggd7cookytj7l34cfoxzeuw.png" + }, + { + "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,GCethPzUyUKYxWdfLykbSg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Felted Shawl (Pineapple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2220, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-18T17:40:08.347Z", + "ThumbnailImage": "_jqJN6iJzUuEi-MlHpRpyg.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Black)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1193, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:04:53.197Z", + "ThumbnailImage": "cccfr6msg1shob4s8fngcwqa6.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,1LonkCbt4kykeAScYKpwyg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Navy)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1543, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-14T18:27:36.463Z", + "ThumbnailImage": "7nm5wdsxclddyf0y5up03zpg0.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,5mcp7-2ZEE6n3-zN3_CoWw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1540, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-14T18:27:26.877Z", + "ThumbnailImage": "9d1oi3isvlv9xgg27pjqx7xbv.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,9b9t8_aKH0-gQXMhZycaOA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Orange)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1194, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:04:58.013Z", + "ThumbnailImage": "18z0oxaf9r5hu5604hnfsb5b3.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G4HIPUjekUigiU0-Kr9mdA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Yellow)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1198, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:05:27.35Z", + "ThumbnailImage": "4aqh17g64pqv044ldezph3z37.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G-VKgepBkkeATcwCaS6Rwg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Grey)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1542, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-14T18:27:33.57Z", + "ThumbnailImage": "ackem1gqqmknsbpbqr1r0opsk.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,IXWd396grEOWHt32L7fCpQ,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1650, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:56:12.047Z", + "ThumbnailImage": "7sv7ea1zgexf9hov8dp1ky7im.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Jt0QqNrAp0qzUR_RQoivVg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Green)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1196, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:05:20.24Z", + "ThumbnailImage": "biyvmvzdwez09j9045jip174p.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,lBePHNL9LkyaAjEFyFE8Sw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Red)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1197, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:05:23.957Z", + "ThumbnailImage": "8o2jy3y3nfrfunsiqadtg7716.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,R0UCacpdhUS906Xf7l142A,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (Teal)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1541, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-14T18:27:30.37Z", + "ThumbnailImage": "8hdi7uyevqrhqw4zfu5knwqb5.png" + }, + { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Zz4XatKfUEapReRAQHxKKA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turtleneck (White)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1195, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:05:16.427Z", + "ThumbnailImage": "aafnbk70rbkwsh5xsq4e8fk2j.png" + }, + { + "AvatarItemDesc": "7e6e24b6-6f9c-4315-b457-73eba52d824c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Glove", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 1524, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T01:19:31.443Z", + "ThumbnailImage": "asfkh306x4wyzvnccvqkhby0d.png" + }, + { + "AvatarItemDesc": "7e6e24b6-6f9c-4315-b457-73eba52d824c,Mnpd7r3eu0CNmZYSPTMASg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Gloves (Ghost)", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 2370, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T21:47:22.823Z", + "ThumbnailImage": "F7i3Au-z5UmKBdm2ZZxm_Q.png" + }, + { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alley Cat Ears", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1750, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T01:39:28.267Z", + "ThumbnailImage": "18xiejb6mr7ln2d5ix9xk4i7f.png" + }, + { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,9yNuA59JO0avaKVA6YxQyA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alley Cat Ears (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2175, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:27.08Z", + "ThumbnailImage": "10khixt04h6x1ktssnlbwt88h.png" + }, + { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,dr6MrV8O30G0i-c7peOoKQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alley Cat Ears (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2174, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:25.237Z", + "ThumbnailImage": "319gh5kstwntozibq3ylve24n.png" + }, + { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,UcK6aipko0iE4THJUO1TvA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alley Cat Ears (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2173, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:23.603Z", + "ThumbnailImage": "432bfm0lzuskgxgwj4id7tebe.png" + }, + { + "AvatarItemDesc": "7ee02f33-1135-4adf-a626-44a1b6d1b0cb,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeletor Mask", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2582, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:45.517Z", + "ThumbnailImage": "2cM1bj5ynEux57OhmNIcfw.png" + }, + { + "AvatarItemDesc": "7LSm-xCYakmgcAr--Fn-JA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Dress (Grim)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 827, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-15T22:53:26.207Z", + "ThumbnailImage": "avd2s93fmxs9qkst7n3y7zcxq.png" + }, + { + "AvatarItemDesc": "7LSm-xCYakmgcAr--Fn-JA,rZ45-lecBESqHaLX0c7NAw,iDxHI0T4Gkifs3_GY5gdjQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Dress (Emerald)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1517, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-30T18:20:39.087Z", + "ThumbnailImage": "7olbww29lo0vqi3gal2gidvgz.png" + }, + { + "AvatarItemDesc": "7LSm-xCYakmgcAr--Fn-JA,uTHwo8qd6Ei3Oy4gz_j9Ow,AK4CoAB2IUGkwqECNaO75g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Dress (Creators Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1173, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:51:04.343Z", + "ThumbnailImage": "csihpdjmklkvoybyrc0do3hiq.png" + }, + { + "AvatarItemDesc": "7VQvz9sbzUWvGalxd9rISg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bride of Frank Gown", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 824, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-15T22:53:17.41Z", + "ThumbnailImage": "239w9hcx69t1gd8xuj8wathwz.png" + }, + { + "AvatarItemDesc": "7VQvz9sbzUWvGalxd9rISg,YTR8qybyVkOhNh4iqtU_UQ,H8LXGRJj8UOuH5dil8L9qw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Crimson Bride Gown", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1528, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T01:20:15.517Z", + "ThumbnailImage": "6jn69aku0kec2denwy9axd25m.png" + }, + { + "AvatarItemDesc": "7VQvz9sbzUWvGalxd9rISg,zNBLaOhCAEKWvgLK4P_X7w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mardi Gras Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2762, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-30T17:21:10.12Z", + "ThumbnailImage": "6sLaNK31602XAlV-PLUz2Q.png" + }, + { + "AvatarItemDesc": "8263a9ca-8c57-4e81-b3e3-24f2ca19a70a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Construction Helmet (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "asrlf9nb0mfzjx6vbj87jqc2z.png" + }, + { + "AvatarItemDesc": "8263a9ca-8c57-4e81-b3e3-24f2ca19a70a,uym5X1GZgUSzVb8U-pwlIw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Hard Hat (Restoration)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2939, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-24T15:25:29.303Z", + "ThumbnailImage": "2F2USYfWgkewvbwK6oa1WA.png" + }, + { + "AvatarItemDesc": "833e8ab3-9b54-4e15-8f4d-ee1bac5823c9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Werewolf Head", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1520, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-30T18:21:01.48Z", + "ThumbnailImage": "dqy4lj2b3ng70db6wvws3916n.png" + }, + { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowtie (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 113, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0ua96avoonx4qcwxsrbdl8lqb.png" + }, + { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,0809a5cf-a0f3-4614-9f98-71518524518a,3290f148-1bd1-4ffd-a947-61fd0529af05,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowtie (SciFi)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 648, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:32.507Z", + "ThumbnailImage": "7lwepk9pha13ajtddc8yjp6i5.png" + }, + { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowtie (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 442, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:06.58Z", + "ThumbnailImage": "1ipmq038lb20nmgpf0k7p3lj8.png" + }, + { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowtie (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 443, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:07.92Z", + "ThumbnailImage": "ec965jtympxjh0juzh6uea66i.png" + }, + { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e4IDo-fuH0C9YByzcX5k-A,qCIoeLQw-Uq-SKIetIgIpA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soda Clerk Bow Tie (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1064, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:35.187Z", + "ThumbnailImage": "88tf66ieaq5s0d6ezi59mgoni.png" + }, + { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e69372eb-2fd8-4e17-a448-ee0be61a2c7a,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowtie (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 444, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:08.833Z", + "ThumbnailImage": "ey39vqepkupw80nkatijbvxm6.png" + }, + { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,W4a144so90eRzCojUnDowA,rcuK1wZcXkCe0_LGX7E-Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow Tie (Candy Cane)", + "Tooltip": "", + "Rarity": 20, + "TagList": "holidays", + "AvatarItemId": 1250, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:24.473Z", + "ThumbnailImage": "6ypl01cto10al3qpkqm95fhe3.png" + }, + { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,wF-WrDaY_kmm1AzA20RsZw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow Tie (Shamrock)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2789, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:00.033Z", + "ThumbnailImage": "DIaJORsIX0GaMSsklR3SxQ.png" + }, + { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Shirt (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 141, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "do070rgyuzlvn3h08jelsszce.png" + }, + { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,83522c12-9549-4d74-8c87-bae210bcd2bf,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Shirt (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 495, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:18.733Z", + "ThumbnailImage": "4guodx87w200pz0ev441o50w0.png" + }, + { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,c5884778-a87f-4612-9717-86fbb65d440f,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Shirt (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 494, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:17.683Z", + "ThumbnailImage": "1yuq0u2hdapelj37471lkep1i.png" + }, + { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,XNq4Cns4lEGydtktdsXlmQ,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bike Shirt (Navy)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 799, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:38.483Z", + "ThumbnailImage": "13zz3iuzmt1r8kfhefj6kqj9h.png" + }, + { + "AvatarItemDesc": "84574356-98ec-415f-8668-82cb52016bd3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Zebra)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1453, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-05-13T21:06:11.523Z", + "ThumbnailImage": "9srp5d5aba29z5vzoj3qkqmpg.png" + }, + { + "AvatarItemDesc": "84574356-98ec-415f-8668-82cb52016bd3,ljbO0JAKVky8M97MsjKnPg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Armored Horse)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2894, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-24T17:08:24.997Z", + "ThumbnailImage": "0vpwih9r_UeG9tov9Mm6VQ.png" + }, + { + "AvatarItemDesc": "84574356-98ec-415f-8668-82cb52016bd3,p379ObEL9Eea0DX9Ld4qnw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Horse Floatie", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2280, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:18.943Z", + "ThumbnailImage": "lLR7SX5N30af5zpgdD5M6A.png" + }, + { + "AvatarItemDesc": "84600de6-93fc-4a89-961e-1f18f4b80643,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Costume", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 1523, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T01:19:26.08Z", + "ThumbnailImage": "9vaxzwj4b0l1ty30cspscr3di.png" + }, + { + "AvatarItemDesc": "84600de6-93fc-4a89-961e-1f18f4b80643,Be2v1bpBSEu4lwKJePscPA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Costume (Ghost)", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 2369, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T21:47:14.077Z", + "ThumbnailImage": "BtXG-VrTYU-1n1VDsKOgjQ.png" + }, + { + "AvatarItemDesc": "84805fb5-91c4-4619-92d0-d7c19ffa3e5b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Suit", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2414, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:22.76Z", + "ThumbnailImage": "qsnBFyRE20CfNh68iWd0lA.png" + }, + { + "AvatarItemDesc": "84805fb5-91c4-4619-92d0-d7c19ffa3e5b,rixBVVHS1E2Q4Y43ix4ySA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Vest (White)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2416, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:27.81Z", + "ThumbnailImage": "Xxv_F0hPeE-3CmWWVz9lgg.png" + }, + { + "AvatarItemDesc": "84805fb5-91c4-4619-92d0-d7c19ffa3e5b,zvs7t0P2Q02wIELJzMa2TQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Vest (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2415, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:25.137Z", + "ThumbnailImage": "jgtZjEvX30q8Y9obf4VFqg.png" + }, + { + "AvatarItemDesc": "84992fc3-4801-492b-8a6c-ffa09ae5b593,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Disco Ball Headphones", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1957, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-03T22:57:59.12Z", + "ThumbnailImage": "4qarl3kkz504i1mf21lhb6dhg.png" + }, + { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stoll Dress (Pink)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 198, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "dqkxn82hm6chx9ysdnrcfvj60.png" + }, + { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,64850553-cdfe-455a-ac00-dafbe63d613e,91a451c1-b285-4c48-b14d-59ded8cc006f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stoll Dress (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 199, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "dvdbsnev23t30jm3v75yrn25a.png" + }, + { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,761a3193-60f0-4190-80c7-285b8192e794,91a451c1-b285-4c48-b14d-59ded8cc006f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stoll Dress (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 200, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "enwc99fhlpla2ltqpv7ug4r1z.png" + }, + { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,a819f49b-6c7a-49d3-9e6a-d9d79ef5019f,91a451c1-b285-4c48-b14d-59ded8cc006f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stoll Dress (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 201, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "de87szlv72hk7tfhds4c7qowj.png" + }, + { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dragon Wings ", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1678, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:06:49.66Z", + "ThumbnailImage": "7i6yh1qwt3e3zrrb77zwz3wta.png" + }, + { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,cbk6h_-1Y0exRpGyrQMDMA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dragon Wings (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2201, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-05T16:52:59.583Z", + "ThumbnailImage": "B0mOl7jCckGx4VBglg52ww.png" + }, + { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,E_pm-PPj_U-nsfMti-AlCA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dragon Wings (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2200, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-05T16:52:57.06Z", + "ThumbnailImage": "gN3tkjocB0iH14KDkjDACg.png" + }, + { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dryad Dress (Summer)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1439, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:50:09.27Z", + "ThumbnailImage": "7fx9lc7nedtemokvl10u71bvo.png" + }, + { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,_SPKrYIcnUWhTiSrTFLwoQ,w-vooMawWU6_4spdgBYufA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dryad Dress (Winter)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1441, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:50:12.81Z", + "ThumbnailImage": "3b660cr3jdsc9mlg5dejtru1o.png" + }, + { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,AHL9ydUbqEqMw1tluIvyQA,w-vooMawWU6_4spdgBYufA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dryad Dress (Fall)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1440, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:50:11.06Z", + "ThumbnailImage": "ae92fjqai6ajms6tff2mfv81j.png" + }, + { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,BYbKbXAgUk6vE7H7w4jSMA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dryad Dress (Cherry Blossom)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2818, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:41.857Z", + "ThumbnailImage": "zg42szCjeUGZC18WPpdf6Q.png" + }, + { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,n2pZHS8A3kSgyFUCI_-8TA,w-vooMawWU6_4spdgBYufA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dryad Dress (Spring)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1442, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:50:14.647Z", + "ThumbnailImage": "7amwyi3juehdo73arc4mepxm5.png" + }, + { + "AvatarItemDesc": "85e03c16-4288-45f4-a579-c911437d27d4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hoodie Jacket", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1656, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:57:20.527Z", + "ThumbnailImage": "b8nie0lojas6v6embnj3tteiq.png" + }, + { + "AvatarItemDesc": "8691fa78-3069-41e6-8431-01c294e8d56b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Visor (Orion)", + "Tooltip": "Unlocked by visiting ^WelcomeAndroid", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1800, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-21T18:25:26.333Z", + "ThumbnailImage": "1x302shgihlyh5d4ewddkiln8.png" + }, + { + "AvatarItemDesc": "86af3a97-18d8-4dda-a2f2-cfd3b4224254,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow Tie (Green Sequins)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1354, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-03T01:43:42.223Z", + "ThumbnailImage": "8z118afr4npaz1lqtevl4cq9f.png" + }, + { + "AvatarItemDesc": "86dd9ff9-643f-4f11-8243-93ad948db4cc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Happy New Year Sash", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1273, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:16:08.17Z", + "ThumbnailImage": "9alk9hbmjw74ccjkcwn2i7s3a.png" + }, + { + "AvatarItemDesc": "86e0a4cf-b112-40d2-94b9-7ef35abe5a61,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Outlaw Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2274, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-01T19:00:24.293Z", + "ThumbnailImage": "4nxCvy9s-EWMBpdXowp34w.png" + }, + { + "AvatarItemDesc": "87792b6e-1468-45e1-b28c-83f27ada7299,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Shades (Fuchsia)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1139, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:26.087Z", + "ThumbnailImage": "9t35j4q9ykj4qblmofdh0c5vg.png" + }, + { + "AvatarItemDesc": "879c43e8-c877-4c8e-a5c9-100123e7a102,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Banker Hat (Premium)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2815, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:35.09Z", + "ThumbnailImage": "oea3WEkmiU6otRXRPGNm3w.png" + }, + { + "AvatarItemDesc": "880a3cc0-7407-4b61-b759-f9dd890fe9e5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bob Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 987, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:15:55.4Z", + "ThumbnailImage": "aj4ljso81bddjrnou7k4r9jvc.png" + }, + { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Astronaut Gloves (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 266, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "1h8xjhjeecs5u49k0pqh1txaz.png" + }, + { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,y_gTbnuYS0GKJmnCs2retw,hjk9OO8CW0KNGR7A6_p84A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Astronaut Gloves (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 801, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:43.587Z", + "ThumbnailImage": "4ayc9cl76c3xmxyeui2n4vtju.png" + }, + { + "AvatarItemDesc": "8896a6f6-0f54-4f0b-aebe-7b121f3efd94,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lightning Hero Cape (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2294, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-10T15:40:43.903Z", + "ThumbnailImage": "ww6XZOkMQEGPfHNxwJ9pbg.png" + }, + { + "AvatarItemDesc": "8896a6f6-0f54-4f0b-aebe-7b121f3efd94,46WaeyRZnUCuLkEpxECRMg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lightning Hero Cape (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2392, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:45.45Z", + "ThumbnailImage": "Kk6TuKH2gEeN-PCQlSGzGA.png" + }, + { + "AvatarItemDesc": "88ae6d12-6d39-4770-ac2a-f8c4602a10a5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Soldier Helmet (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1508, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-17T20:27:18.613Z", + "ThumbnailImage": "ey0vb0vehvdu8qhub0g2unvrw.png" + }, + { + "AvatarItemDesc": "88b6ddeb-a455-460d-91d9-a4569ef6903c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Square Earrings ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1621, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:20:15.88Z", + "ThumbnailImage": "2h1h9p8vlyjw7l757o4oin73b.png" + }, + { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Equestrian Coat (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 172, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "d004gewj67bopyl1n223awz19.png" + }, + { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,4828b50c-95b6-466a-bb25-514891d78202,d344b8cc-85a8-4ace-9f92-38c84f396e99,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Equestrian Coat (Grey)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 174, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0ssz8kkzkquzlbsny70teq07u.png" + }, + { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,55901f12-d5b5-4fa8-b4c8-e479689ee39d,d344b8cc-85a8-4ace-9f92-38c84f396e99,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Equestrian Coat (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 173, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9sz04th4t4o0izh811x1j6i3j.png" + }, + { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,d6823e01-69f0-4f85-b94a-74894356a2cf,d344b8cc-85a8-4ace-9f92-38c84f396e99,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Equestrian Coat (Maroon)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 175, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "1ww790yppnpxni1c0om3j7p3e.png" + }, + { + "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Squid Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1134, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-07-30T22:14:05.387Z", + "ThumbnailImage": "9q6v1yay56q7ckhj5we9h1ksn.png" + }, + { + "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,t8kKXvBU-kSM_MHaqZYpkQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Squid Hat (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2198, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-05T16:52:51.023Z", + "ThumbnailImage": "x-RovcwIAUOk4uruqtQEUg.png" + }, + { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gentlelady Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2372, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:28.433Z", + "ThumbnailImage": "HpB5RkqKYkWc9i_l8Ul66Q.png" + }, + { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,9liduuR6IE-6C4YN_FKcZg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pastel Green Gentlelady Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2872, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:36.31Z", + "ThumbnailImage": "NKtxE0Ix9Emzu3RF2XLuxg.png" + }, + { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,clKD22mme0y8apzUhHmI_A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pastel Purple Gentlelady Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2874, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:40.5Z", + "ThumbnailImage": "H2YS04F1YEKwQ4HAk1GV9A.png" + }, + { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,tp0jNW7f0Uubr9nTMWuhXw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gentlelady Hat (Pastel Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2873, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:38.347Z", + "ThumbnailImage": "c6waJLUmskK9zsdjD-IYZw.png" + }, + { + "AvatarItemDesc": "8aa79563-ace1-4ba7-ad0c-f3210a78142f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Shirt (V-Neck, White)", + "Tooltip": null, + "Rarity": 0, + "TagList": "", + "AvatarItemId": 1018, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:46.41Z", + "ThumbnailImage": "9b4c3le7lmjt85hxgjr9xtaz9.png" + }, + { + "AvatarItemDesc": "8aa79563-ace1-4ba7-ad0c-f3210a78142f,95e4cc30-cb68-473d-a395-feadf5b51512,05f0ee6e-c824-470e-9178-5ed576c6fe0c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room T-Shirt (V-Neck, Orange)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 675, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:40.353Z", + "ThumbnailImage": "4n6q6y6u8lbqej4m7zacg6pgv.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1206, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:09.673Z", + "ThumbnailImage": "8b8w29yppr8ire3rmnz7dihi2.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1210, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:23.53Z", + "ThumbnailImage": "3ko6st266abg6sg11o1nsxdxj.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,eOJkmpSL4EypK-AQz7j8gQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flannel (Black)\t", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1722, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:12:48.69Z", + "ThumbnailImage": "3oy21va74rnfmipzz83x24n3q.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,hRxyLsKfsESFAsXAyZQjoA,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flannel (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1474, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-01T22:04:37.507Z", + "ThumbnailImage": "6v3w4z6b6gofs8vtz0up7olo8.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,KaZqNx5VKkarRrOJcTuD9A,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flannel (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1476, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-01T22:04:45.467Z", + "ThumbnailImage": "22a6bzdqbg2mnctnuw24oqszc.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,kgCKjtSjFEmFq9ez2llxKQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flannel (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1475, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-01T22:04:41.23Z", + "ThumbnailImage": "1c2vx4eqcpf3ulizhf8xymy5k.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,o2WfRyjJy0CKoUg8YIxNjQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (Tan)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1209, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:20.187Z", + "ThumbnailImage": "71nsut92sx3eet8hzyon7q6mt.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (Black)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1208, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:16.867Z", + "ThumbnailImage": "c5h60lx2j7phvk8hmvih50s2o.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,sscD2O3LEUOAKkqjGpGe8g,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flannel (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1473, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-01T22:04:33.107Z", + "ThumbnailImage": "a0lqwqfuolj7hkvhf1glhqc15.png" + }, + { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Jacket (White)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1207, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:13.493Z", + "ThumbnailImage": "0xzrzv7jtrqilh8yio1uf4b27.png" + }, + { + "AvatarItemDesc": "8b9f1413-e786-4a30-946c-9292f207875a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pulp Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 91, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "16t3t321doi4ngo5nknn2kxkt.png" + }, + { + "AvatarItemDesc": "8c35c804-e8d5-49d2-8d5a-ea19fb70bfa6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pencil Bun Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1478, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-08T19:52:13.933Z", + "ThumbnailImage": "256bejo1cjwehqhza4ysng9ho.png" + }, + { + "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Visor", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 24, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "bpe9ub501z2dr6rgv1b5zhi1u.png" + }, + { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Ear Headphones (Forbidden Purple)", + "Tooltip": "This item may come in handy at concerts, afterparties, or in dark, forbidden lairs...", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2086, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:05.063Z", + "ThumbnailImage": "TU5LjIU2P0WNnRai4I1qHQ.png" + }, + { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,7Ww7mumWXkiyj0R3u_-hrA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Ear Headphones (Glitch Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2097, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:02.48Z", + "ThumbnailImage": "ov9bwV4XmEuoyMkR3zIVgg.png" + }, + { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,8br3f77_CEiE2Oetiof1Pw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Ear Headphones", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2830, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:35.91Z", + "ThumbnailImage": "Cr0h8X1hoUuexTHM501mLA.png" + }, + { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,etbo7k9dq0OyjIrNS4sdkQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cat Ear Headphones (Neon Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2098, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:02.81Z", + "ThumbnailImage": "QRxUhTvrak6Pv3s0nde-8w.png" + }, + { + "AvatarItemDesc": "8cc01536-2f43-4de4-ac63-7304d8beb73c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Settler Hat", + "Tooltip": "Drops occasionally after Rec Rally games.", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1869, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:13.21Z", + "ThumbnailImage": "dcmbdw7xs41bspzcqqgmm66z0.png" + }, + { + "AvatarItemDesc": "8d10cc78-6b00-45f3-affb-205e9cc5b03f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beard (Close)", + "Tooltip": null, + "Rarity": 0, + "TagList": "", + "AvatarItemId": 1006, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:30.96Z", + "ThumbnailImage": "f0wdmxgtyo7xkofqt6gy6s0hn.png" + }, + { + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Hat (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 595, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-07T02:21:10.357Z", + "ThumbnailImage": "d1wurf50yoyooz47syoelb2ri.png" + }, + { + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,53dd9e44-7096-438e-a7c3-11d7c307426f,a4903da3-249d-4f0a-a746-b547fda371ff,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Hat (Brown)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 605, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:39.48Z", + "ThumbnailImage": "7qkfqsjmmjcd9v4hxmipdbu36.png" + }, + { + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,c3c9f89c-580c-43c4-b38b-07394044e0e1,a4903da3-249d-4f0a-a746-b547fda371ff,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Hat (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 606, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:40.837Z", + "ThumbnailImage": "3llu49o19577q8gvi3uv7qu29.png" + }, + { + "AvatarItemDesc": "8d3d4ba2-5d98-4034-8dc1-cd00263e2b71,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Retro Gamer Bag", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1961, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-03T22:58:25.03Z", + "ThumbnailImage": "ehevha4vehw8jlosk83rag8tj.png" + }, + { + "AvatarItemDesc": "8d3d4ba2-5d98-4034-8dc1-cd00263e2b71,EM1x0p66L0Gf6BNBP8-1kA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dark Retro Gamer Shoulder Bag", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2907, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:47.473Z", + "ThumbnailImage": "uxAsLya8MkWuyusZMQmV0Q.png" + }, + { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Helmet (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 57, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0ky7ceo16g76hoi2vudcp4u2d.png" + }, + { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Helmet (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 640, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:12.64Z", + "ThumbnailImage": "ap6srpnsg5qje8yjd0k6xoq5v.png" + }, + { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,d5efaf80-7f34-4c9a-bc3a-b80b1ac70ace,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Helmet (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 639, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:11.2Z", + "ThumbnailImage": "7rm6qzjybqpssdvxptzb3cq12.png" + }, + { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,qdA34j6p_UqphqChTCHEYQ,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Helmet (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1718, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:09:30.017Z", + "ThumbnailImage": "08ly4egzp8znsf9rr74dqyzom.png" + }, + { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Tank (Triton)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 691, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-31T00:52:15.277Z", + "ThumbnailImage": "9rtsv91ax2euh05felzvtd1w7.png" + }, + { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,CahBzgN3D0y46AQsvGC14A,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Tank (Leviathan)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 904, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:35.863Z", + "ThumbnailImage": "8qnxcx64rh4jdr41v292zqnvl.png" + }, + { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,Su7kiW24d0KapNns96JoFQ,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Tank (Kraken)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 905, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:37.38Z", + "ThumbnailImage": "c2brbedhjhfswczcszbb6vdn5.png" + }, + { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Party Hat (Shindig)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1274, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:16:12.763Z", + "ThumbnailImage": "0rq3ue0rxap0g0375himga11m.png" + }, + { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,69vv21jfTUu1E_LjK5bytg,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Party Hat (Jubilee)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1566, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:33:46.263Z", + "ThumbnailImage": "e9evvmcwo9jnfy5clp9ztr4vz.png" + }, + { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,AfqXBWLBQEiiag4cEtoEiA,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Party Hat (Hoopla)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1564, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:33:37.25Z", + "ThumbnailImage": "aal6en3akiu96g363ok04sx99.png" + }, + { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,RROvzwtshUGyRudVIBn8bw,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Party Hat (Celebration)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1565, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:33:41.777Z", + "ThumbnailImage": "aiqpa9xefa8z86zduzd2gyjw8.png" + }, + { + "AvatarItemDesc": "8f137b1f-4125-4657-85c4-bcdb74d3b0c2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barrel Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2268, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-01T19:00:08.09Z", + "ThumbnailImage": "aSaV2nvIFkOp_qOuz0uFBA.png" + }, + { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Cuffs (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 658, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-02T20:48:21.433Z", + "ThumbnailImage": "3jwqqbdhd5j68gzti0f3ov9d8.png" + }, + { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,5Dbc8qCaY0OXEuwykM4naA,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Cuffs (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1555, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:41:02.373Z", + "ThumbnailImage": "btsztyyman7ydhbo8ch7havr5.png" + }, + { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,HBt3ToOkUUereoPKwyvzuw,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Cuffs (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1560, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-24T01:56:18.773Z", + "ThumbnailImage": "1rj6j38s3tlgfuz9dlk7rlcbs.png" + }, + { + "AvatarItemDesc": "8fec17b6-f5fd-40b5-ac9e-a52faf5621c4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Basketball Headphones", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2180, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:37.423Z", + "ThumbnailImage": "gsJJq-rFYEqEYVYeX8ig2g.png" + }, + { + "AvatarItemDesc": "8fec17b6-f5fd-40b5-ac9e-a52faf5621c4,G_fqC7KPaUWFM4Dk3stJYw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "8 Ball Headphones", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2886, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:13:05.217Z", + "ThumbnailImage": "Jo3RL0WeG0e_NtvrpG87MA.png" + }, + { + "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elven Crown", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1792, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-17T16:04:59.863Z", + "ThumbnailImage": "26o0a59b3xk9bngu5q6rjwddq.png" + }, + { + "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,z1djgGqy502ha9X_uB3enA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elven Crown (Jade)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2186, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:10.393Z", + "ThumbnailImage": "E6CVDPt2mUWUQ6WM1GzI2g.png" + }, + { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerleader Sweater (Pride)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 190, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "dl8ieqkdftxjtgfey8gb41yid.png" + }, + { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,6secgNPvmUyFnI3NC5dIYw,5V_1JEDrRUa1UPKhtrSB2w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerleader Sweater (Victory)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1645, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:50:04.447Z", + "ThumbnailImage": "aidgb349qpp5nx0tlmqvfmxvy.png" + }, + { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,bc-aVFn__E61pyA4SvUoGA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Suit Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2424, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-19T17:06:51.223Z", + "ThumbnailImage": "zwCsgKFNm0KCFbci6h6_ag.png" + }, + { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,X5SuBHIGBE6wy8N8KDop8Q,5V_1JEDrRUa1UPKhtrSB2w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerleader Sweater (Rally)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1646, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:50:08.7Z", + "ThumbnailImage": "120gze52rf81cvsx2extomyi8.png" + }, + { + "AvatarItemDesc": "9117bd15-674e-4f22-9ff8-e7365fa43907,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acoustic Guitar", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2675, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-05T20:28:12.33Z", + "ThumbnailImage": "bU_6Nph8n0KifAktXPcZww.png" + }, + { + "AvatarItemDesc": "9117bd15-674e-4f22-9ff8-e7365fa43907,UdQxfRULDEG6BvJV7HWO_g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acoustic Guitar (Dark Oak)", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2676, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-05T20:28:18.567Z", + "ThumbnailImage": "RhxHB33yikq68wkkfgieQA.png" + }, + { + "AvatarItemDesc": "9168b3f9-c7e5-40b6-bb2c-9e708596e675,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zombie Head", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1189, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:54:07.997Z", + "ThumbnailImage": "c9bcud5i7blg02i1i21anii66.png" + }, + { + "AvatarItemDesc": "9176086b-a0b4-4298-a7fb-eb91ea421e89,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Kraken Backpack", + "Tooltip": "Survive any game with the Squid King watching your back. Go Krakens!", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1917, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-27T20:19:29.9Z", + "ThumbnailImage": "5gf9eq3qeqfuxeh3zi34kmtt1.png" + }, + { + "AvatarItemDesc": "92302d9d-c527-418c-ac5d-1fa869727505,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Part Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 996, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:16.263Z", + "ThumbnailImage": "epvz80ugc50j724bv8du1ivqo.png" + }, + { + "AvatarItemDesc": "9231a9c6-7638-4fe9-bd2f-eac6c943009b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Championship Wrestling Belt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1657, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:57:31.547Z", + "ThumbnailImage": "5tzmcps62glt2hqx42rvrgotc.png" + }, + { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Moons & Stars Dress ", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1509, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-08T21:59:42.02Z", + "ThumbnailImage": "7gjdy5ae0sascpzzv1vx2hn97.png" + }, + { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,4PI6XssggEKRxkGlWeo8KQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jigsaw Moon & Stars Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2927, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:16:00.513Z", + "ThumbnailImage": "qhUHWc_oWEanxQNBSskKJQ.png" + }, + { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,eutz2irupECSYGMtru3NMQ,Gruqp7EGM0WJbAM_F8hWbQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowflake Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1930, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-13T19:00:38.703Z", + "ThumbnailImage": "a1453pgb9cjdtfwanmhqks0fn.png" + }, + { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,Mp_TzaiSTUaULweziW9_AA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Moon & Stars Dress (Jigsaw)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 6579, + "IsBaseAvatarItem": false, + "CreatedAt": "2024-03-27T21:04:11.7Z", + "ThumbnailImage": "APU0Kt0HrE6E_zMnX0MMJw.png" + }, + { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Helmet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2447, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:09.013Z", + "ThumbnailImage": "uF47LVvccUucyESgIuygpw.png" + }, + { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,Adyl5MkwQEKK_MT5AluYkA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Helmet (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2451, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:27.273Z", + "ThumbnailImage": "P9xsKr4uU0mPWfnYZEGItQ.png" + }, + { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,BizZfhG8ikOOEvAxN6w48A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Helmet (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2471, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:23:07.387Z", + "ThumbnailImage": "oLjvlMCC2kuFc3_lVEfvEA.png" + }, + { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,KfjLWNUbpEClo_qafEfUEw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Helmet (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2450, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:23.453Z", + "ThumbnailImage": "d6JCWD1J9U-qP46fezaoXQ.png" + }, + { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,xtgcJ8klHUyAYRntKhwCzw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Helmet (Orange)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2449, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:20.073Z", + "ThumbnailImage": "JYKGsy8zbE-uVRh5F0aELw.png" + }, + { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,zJKd2ZtIsUGCdHP1M0215Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Helmet (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2448, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:16.413Z", + "ThumbnailImage": "KX8r_kEiAU2h5vaiH70O2g.png" + }, + { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowy Owl Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1660, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:57:56.597Z", + "ThumbnailImage": "3bu1frdg68km45i2m32p4tuf5.png" + }, + { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,07qFFGmwm0qmIikemncBkQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floral Cape (Midsummer Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2896, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-24T17:08:28.697Z", + "ThumbnailImage": "4YKttOYfZUCJWTM47OGSsg.png" + }, + { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,8M72ydR_uUSsli43PH2Eyw,wQxO4xmXCUGeC9ZHfDNGTw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowy Owl Cape (Raven)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1709, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:32:43.303Z", + "ThumbnailImage": "0mjop3uc4xo79ox3fcqpa6wjj.png" + }, + { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,F0o3eeWbCUaUAGRUdI0z7A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floral Cape (Midsummer)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2257, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-06T16:31:51.99Z", + "ThumbnailImage": "U8zL4biQO0utrAL1LCl_Zg.png" + }, + { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,hRl4UTGoBUi5dmu0f4s76A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floral Cape (Midsummer Verdant)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2897, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-24T17:08:30.823Z", + "ThumbnailImage": "2jE0M2FxUUKRdwB-Z981Dg.png" + }, + { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,NnqAnqqLmUypWnNR2s-_sg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cottagecore Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 5880, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-10-10T17:15:03.36Z", + "ThumbnailImage": "6crHGcPzUUefWWZmQFnzOw.png" + }, + { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,qvK8xgbyuE-dW3--Ku-mvw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floral Cape (Midsummer Obsidian)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2895, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-24T17:08:26.777Z", + "ThumbnailImage": "5Rk5icw_oEqqERltIynyTA.png" + }, + { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,W83EASFUS06FBVMfL80ruw,Ydd6tdb9dUGooM6WAczNjQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowy Owl Cape (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1708, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:32:38.83Z", + "ThumbnailImage": "1s8l5fozxazwvdbf7an9mewb0.png" + }, + { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soccer Goalie Gloves (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 513, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:39.547Z", + "ThumbnailImage": "0we6tjqz2a38v2ojhop58m34f.png" + }, + { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,3by5X5XZ4EW7eaERsaBJKg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soccer Gloves (Orange)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2324, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:48.767Z", + "ThumbnailImage": "ZftdQQ7kwkKCDZuTV-DWFw.png" + }, + { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,l2g5qO9dokiNepH92oPmug", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soccer Gloves (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2325, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:50.627Z", + "ThumbnailImage": "vupu6d_gGEaywmPePUvf1A.png" + }, + { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,whEHo6Rhr0CxsDBsBD32WA,av4PwLz6YkmpBRImQZgn4Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soccer Goalie Gloves (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 782, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:08:07.39Z", + "ThumbnailImage": "azz8fjlgu2rjy5q07n278fb0b.png" + }, + { + "AvatarItemDesc": "95a519de-f2cb-429c-b014-508477f20d42,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(UGCPulloverHoodie_Shirt) ", + "Tooltip": "", + "Rarity": -1, + "TagList": "", + "AvatarItemId": 2918, + "IsBaseAvatarItem": true, + "CreatedAt": "2023-04-07T17:07:07.04Z", + "ThumbnailImage": "m4UIuZjNzEWsCP1gpZBgjg.png" + }, + { + "AvatarItemDesc": "95ab7a7c-c35d-4da5-9955-0921064470b6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gekko Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 83, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "63iadlt4uzd2bynj3varsfesy.png" + }, + { + "AvatarItemDesc": "9656a307-0c79-4b8f-910f-e67c454faefb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Pods (Teal)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1667, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-03T18:59:46.507Z", + "ThumbnailImage": "aya5t0pnayzq9jz4mfs6jidhc.png" + }, + { + "AvatarItemDesc": "9656a307-0c79-4b8f-910f-e67c454faefb,mG0HW8fJkUOE5u7Whg4kag,3CLmVNB_p0Gd5N8dN74TBw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Pods (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1668, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-03T18:59:49.7Z", + "ThumbnailImage": "0f7hl0uorhvk24n6ag35m0pxu.png" + }, + { + "AvatarItemDesc": "967187b8-df20-4f4f-b48f-10b9ea75cedf,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Farmer Overalls", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 371, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:11.197Z", + "ThumbnailImage": "9iudjbzlizfmrgxtwdwwsj6hp.png" + }, + { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Veil (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 708, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-06T19:33:48.8Z", + "ThumbnailImage": "d0s9wj7bjb9h01c8w7xwma53o.png" + }, + { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,1919d319-6cce-4500-8766-15fed6a13fa8,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Veil (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 696, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T19:45:45.957Z", + "ThumbnailImage": "8zg7qszxejhn7ysl2ofksqed8.png" + }, + { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,lBe3yxuE40eBmTrnEHBqQQ,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Veil (Purple)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 926, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:00.837Z", + "ThumbnailImage": "2zodiht9cu9f4628u37rle1f0.png" + }, + { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,oZ8k0Qv3SkG-DkY0_dP7UA,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beekeeper Veil (Teal)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 925, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:59.383Z", + "ThumbnailImage": "28ohmms47updexq8mqh9ey2ih.png" + }, + { + "AvatarItemDesc": "96ca8d50-0721-47a3-a988-018a1c157677,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drumset Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2382, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:53.007Z", + "ThumbnailImage": "YzXiKP_YPkW_dray4uvVpQ.png" + }, + { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "I Heart Rec Room Shirt (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1505, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-17T20:05:52.533Z", + "ThumbnailImage": "21f1vt9sfsmvu7i0m9fa5v25j.png" + }, + { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,4oywwjb3-kifr-um9x87Pw,11ZEZTFhy0ONpoXb3kiewQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Suspicious Goblin Shirt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1586, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-09T22:38:26.48Z", + "ThumbnailImage": "e2e7acypymae4je7p6sgzp5cj.png" + }, + { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,HQOKcDCvVUCItkAKo2ygGg,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "I Heart Rec Room Shirt (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1694, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:35:29.563Z", + "ThumbnailImage": "a4crcmj7ke4jvau32zw1jzrfl.png" + }, + { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,i4Zu9uZuWkWwm8IVGZwkbA,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "I Heart Rec Room Shirt (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1695, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:35:32.393Z", + "ThumbnailImage": "dpd8v8j4srhnyyau92pk9e677.png" + }, + { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,lYsxZfxd0EadrnjliEj4Ug,xnZj7ipl60WO8e_BXK-mlw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lunar New Year Sweater (Tiger)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1988, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:43:34.383Z", + "ThumbnailImage": "5nmucss74wx9jq66yxgs5bstt.png" + }, + { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,Rd-iQjCjUUW8_o2kIb1rFw,Ez3OIIGl0Eqys2JGnSnQHw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Pattern Sweater", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 1922, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-05T22:17:09.62Z", + "ThumbnailImage": "dygizmsl47ijdpie6x1q5tspr.png" + }, + { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,ymRNNF0h3UOv-yH0ILxhiA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Rocks Sweater (Ethan Bortnick)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2778, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:39.467Z", + "ThumbnailImage": "GVwVHoCBbEqlEsScL_SXfQ.png" + }, + { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Cuff (Blue)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1211, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:28.433Z", + "ThumbnailImage": "evjppeeirfwnfcqr1gdexa1og.png" + }, + { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,bgRKH1wfqkWVHcuSnFYnlQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Cuff (Green)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1215, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:44.163Z", + "ThumbnailImage": "4hs50cqx2o2w24tay05gzsxem.png" + }, + { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,o2WfRyjJy0CKoUg8YIxNjQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Cuff (Tan)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1214, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:40.53Z", + "ThumbnailImage": "emod4iboh8jp8hcuu07ylugks.png" + }, + { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,P9bBSL0YLEyjN8PxMfgbKQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Cuff (Black)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1213, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:37.17Z", + "ThumbnailImage": "3d4u0uq00scnglmtqdwyvp55u.png" + }, + { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,yA0KhVg19kWqG1UkyxQogQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Cuff (White)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1212, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:06:32.837Z", + "ThumbnailImage": "9z0jwf8oh2kcafax37xcxp68x.png" + }, + { + "AvatarItemDesc": "973dc863-b9a5-40d8-8f15-4096e75bd2cb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Shades (Red)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1135, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:10.857Z", + "ThumbnailImage": "5e5ro3jz91njip3g49yxza47y.png" + }, + { + "AvatarItemDesc": "97c8e2f3-e786-42e5-8852-4abec5dc645d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweet Tooth Hat (Milk Choco)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2756, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:39.113Z", + "ThumbnailImage": "SWIYABA3u0KSKjMg4tbN1w.png" + }, + { + "AvatarItemDesc": "97c8e2f3-e786-42e5-8852-4abec5dc645d,_8OmgC7c80CsvQN41U6XyA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweet Tooth Hat (White Choco)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2757, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:41.62Z", + "ThumbnailImage": "WNWMQVjKaEC9CXqo_esiGA.png" + }, + { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Robes (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 532, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-10T20:48:12.44Z", + "ThumbnailImage": "4u8g9x7yeqkmpqikqud6p0889.png" + }, + { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,357eb160-360b-4a63-840d-65d11cc8ffc2,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Robes (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 538, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:05.227Z", + "ThumbnailImage": "a814kjf5tknfmtt221aq0rmcg.png" + }, + { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Robes (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 541, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:08.163Z", + "ThumbnailImage": "c1nbb1yfgeptsgsxxakgr3ejf.png" + }, + { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,a38254c0-00e3-429b-9d5d-b9e6a9812e69,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Robes (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 539, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:06.19Z", + "ThumbnailImage": "6xg4k21qpb73l0qe9wq3xs507.png" + }, + { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3a9b576-5433-4305-bd96-b08820c09212,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Robes (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 540, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-08-14T19:36:07.143Z", + "ThumbnailImage": "351pq2gydedb34tytcs9n87b7.png" + }, + { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3KmqVuMQkCYK6sVTMOTOA,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Robes (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1316, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:06:33.74Z", + "ThumbnailImage": "47ngqkmtgcfvbds2nhtksozc3.png" + }, + { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,RKmRHk2N_U2gd91nybo6vg,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wizard Robes (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1100, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:29.627Z", + "ThumbnailImage": "1dlznhq7lrq71suzc0045grre.png" + }, + { + "AvatarItemDesc": "9815999a-c4d3-4741-a34f-2545b0cb8e11,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousLadyBugGlove_Wrist) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1991, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:43:54.627Z", + "ThumbnailImage": "e055b8bmrxrpkco54wa2vg5e9.png" + }, + { + "AvatarItemDesc": "988e4069-4341-428b-bbf5-023309891385,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bow Tie (Silver Sequins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1266, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:39.643Z", + "ThumbnailImage": "8nu7ynhikwf10a7dnyr1bqmi7.png" + }, + { + "AvatarItemDesc": "98e4c868-df73-4755-84b6-c4d12723b811,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pink Pop Rock Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2801, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:35.15Z", + "ThumbnailImage": "ZOOhVVu5AUmtTX571xSvXg.png" + }, + { + "AvatarItemDesc": "9a366f8b-ea5b-49ae-a98c-f6b282e9bf14,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Dress (Gold Sequins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1262, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:25.01Z", + "ThumbnailImage": "d2403tow1ivxsp7dq769lkahh.png" + }, + { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Suit", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2452, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:31.05Z", + "ThumbnailImage": "ZQvc0FZMVUKVsARripsYXA.png" + }, + { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,bgWM6wBe60q2mIHN5dPh4Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Suit (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2454, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:39.143Z", + "ThumbnailImage": "HE3yVvkZXE294hudT6aXLQ.png" + }, + { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,cqYUoDpfkEi8Qp2DrpQytA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Suit (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2425, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:21.827Z", + "ThumbnailImage": "QVu4sV34w0mJ62ZfIhLifQ.png" + }, + { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,eQy0qwre-Ui7_sCCNuWCSw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Suit (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2455, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:42.813Z", + "ThumbnailImage": "wa-FDCaLx0er4dEZFzygbw.png" + }, + { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,eU2ePFNmbUCPoQUp1WCbzQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Suit (Orange)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2472, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:23:11.897Z", + "ThumbnailImage": "yD1_cAEdh0a6Uf6vIWKVyQ.png" + }, + { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,lRmNfk8vuEe4Z5ToWvWcTg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Suit (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2453, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:34.867Z", + "ThumbnailImage": "CY_yVMmPd0SsiIdZ5xLZfw.png" + }, + { + "AvatarItemDesc": "9ab4ea8a-1b16-4969-9b80-8e36b1f782ca,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "He-Man Bracers", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2578, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:37.117Z", + "ThumbnailImage": "YgFKySGtSUOhM_WsMBYbNQ.png" + }, + { + "AvatarItemDesc": "9ad40310-7cb9-473d-920c-5c18d7972030,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Cap ", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 1522, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T01:19:17.67Z", + "ThumbnailImage": "44boqpgj0k38m24uqczos4upt.png" + }, + { + "AvatarItemDesc": "9ad40310-7cb9-473d-920c-5c18d7972030,mQTpoW0-AEufdFmApqtRXg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pumpkin Cap (Ghost)", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 2368, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T21:47:12.237Z", + "ThumbnailImage": "KFjbHzLz7UezIItKG7vasQ.png" + }, + { + "AvatarItemDesc": "9b5406c4-8589-47e4-9f69-4fa4733615e7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turkey Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "thanksgiving", + "AvatarItemId": 1234, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:19.52Z", + "ThumbnailImage": "3qareqet5g5gwgynxe4tw9gub.png" + }, + { + "AvatarItemDesc": "9b5406c4-8589-47e4-9f69-4fa4733615e7,yXDNXmcJvUC4eCx9oGItcA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Turkey Hat (Snowy)", + "Tooltip": "", + "Rarity": 50, + "TagList": "thanksgiving", + "AvatarItemId": 2486, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-11T18:02:01.037Z", + "ThumbnailImage": "mt3RP76mEkGxwfRV3p8aoQ.png" + }, + { + "AvatarItemDesc": "9b5bde11-7408-4798-9fcb-c7ec175444df,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hoop Earrings", + "Tooltip": "", + "Rarity": 0, + "TagList": "", + "AvatarItemId": 1619, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:20:09.467Z", + "ThumbnailImage": "1jnggaqfe4t82pv8okgvje9e7.png" + }, + { + "AvatarItemDesc": "9b62cbca-694f-4a32-b910-14da66bee9bb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Settler Shirt", + "Tooltip": "Drops occasionally after Rec Rally games.", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1871, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:24.09Z", + "ThumbnailImage": "aqft3txgw2utq98o392d8z647.png" + }, + { + "AvatarItemDesc": "9b636782-47f0-4218-9a1d-be65e550dc44,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bongo Belt", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2381, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:50.457Z", + "ThumbnailImage": "pEnzLpycJU603AzcfO2Mnw.png" + }, + { + "AvatarItemDesc": "9bf5d259-7774-4cbe-a90f-7f188cc0dce7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Thick Goatee", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 361, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:27:01.537Z", + "ThumbnailImage": "1eb87x8cqfkan1tpf4fnxe6e5.png" + }, + { + "AvatarItemDesc": "9bf75b23-84e9-436b-bbb8-4180ccd86b94,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wolf Cut Hair) ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1985, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:40.347Z", + "ThumbnailImage": "dzytj60lnm9n8bstqbvcrikss.png" + }, + { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Gauntlet (Grey)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 276, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "85cm7w6an4z42wlzdgr9k9d3m.png" + }, + { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,22dc463a-a89b-46ad-9a0d-557c742b4a80,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Gauntlet (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 279, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "1q79g6q9p9to9xi0qtaj9a9s3.png" + }, + { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,59866578-d4e0-417b-9483-233ab108b1ac,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Gauntlet (Cherry)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 278, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "37g3go1ko7zez3ua49s4tjpbf.png" + }, + { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Gauntlet (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 280, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7fy3687o43lmb87xgdmjslpcy.png" + }, + { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ed134bee-d199-43eb-98bd-206571603f40,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Gauntlet (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 277, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "bohc8ayxvepselhmkomofmhb4.png" + }, + { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ITH2OpzjP022vZ5JgxV_iQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Gauntlets (Yellow)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1109, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:07.103Z", + "ThumbnailImage": "bvdx04lp2rrweg7mjd5hl2bnk.png" + }, + { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,PMa9370LPEig_7pKwCceEQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Gauntlet (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1318, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:06:47.42Z", + "ThumbnailImage": "9tsbb3bjtxr44158yh7ncrn5n.png" + }, + { + "AvatarItemDesc": "9c20fdd5-acf1-426c-b85a-2220ceee9472,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Short Curly Twists Hair ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1987, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:47.03Z", + "ThumbnailImage": "2fujgcfkoqu654pjz73tner1m.png" + }, + { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scuba Goggles (Orange)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1242, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:39.52Z", + "ThumbnailImage": "768szgyob0dtu1479hlls39oa.png" + }, + { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,DRS8xu3AqUOy2L0RKF3f7g,A7Y52vGIN0ijEKsWR_GQLg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scuba Goggles (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1243, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:40.93Z", + "ThumbnailImage": "3uvxr9vhe7g8piy0o8yyctuu7.png" + }, + { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,ZSOuWuKVCkqaIKc5d23G8Q,A7Y52vGIN0ijEKsWR_GQLg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scuba Goggles (High Seas Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1244, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:43.177Z", + "ThumbnailImage": "1qslsywz60fw9vjpnsmkdf7gi.png" + }, + { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Singlet (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 189, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "beio49fzwv1l86rp7tcvhz8t3.png" + }, + { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Singlet (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 500, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:24.507Z", + "ThumbnailImage": "6m59lwkz3pdm7ylfg5q1hwbzf.png" + }, + { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,7Jx8mrxoi0aQtZEb03CdRA,-IgxYllxkEyr7V1gosWXUA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Singlet (Green Lightning)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1513, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-15T19:18:37.517Z", + "ThumbnailImage": "0dhyx3nk36z445fgi9v0vyvce.png" + }, + { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,916384ca-e209-42a0-bd64-c64f5a40b56f,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Singlet (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 499, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:23.287Z", + "ThumbnailImage": "eazhrt40qa5kdt73v7vcqhsdm.png" + }, + { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,TLrw3oncCE2MeuVifXSWTg,-_ViYCHHRUip7oN_AnH0Og,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luchador Singlet (Pouncing Tiger)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1733, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:20:45.747Z", + "ThumbnailImage": "28qzx00rr1mcsdfj73tvv70qd.png" + }, + { + "AvatarItemDesc": "9c4976c1-a0eb-4a1e-b5cd-08d44a4b3011,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Horseshoe Earring", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2246, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-22T16:53:00.8Z", + "ThumbnailImage": "ewhdfsr2ocppmfgs5a2ddeb9h.png" + }, + { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Button Top (Pink)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 150, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "dw4gnw7y1oclj75acv9nvncv6.png" + }, + { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,49f5864f-9d40-497c-88c8-e87f64d41d74,dafa658e-753b-46cb-bd85-85c1de5e6ea7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Button Top (Tan)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 151, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "e1qpklmk4sy92lxlwf1zus9lh.png" + }, + { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,c5deba2a-6e35-4b13-8e94-8ba5457f39df,dafa658e-753b-46cb-bd85-85c1de5e6ea7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Button Top (Yellow)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 153, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "08g89jon46625gx6apyzgaq7p.png" + }, + { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,e0397982-c2c2-4733-9a40-46e18675b5af,dafa658e-753b-46cb-bd85-85c1de5e6ea7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Button Top (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 152, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "28ly2m56wth4ldtr1r5anpadx.png" + }, + { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Small Brim Hat (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 70, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "ero4520aj78qgzdiz2knkg422.png" + }, + { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,08r7prRREUi-Hvp1Xze-wQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mini Droid Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2481, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-04T17:41:30Z", + "ThumbnailImage": "R5_LD0bgPkWiDdYxa1A_mA.png" + }, + { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Small Brim Hat (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 490, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:11.777Z", + "ThumbnailImage": "azus8th8ecez3uybgfgvqq0o4.png" + }, + { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,67fc9269-8dd8-4d6f-b594-c77e716f2482,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Small Brim Hat (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 489, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:10.68Z", + "ThumbnailImage": "1z40s482g9xq9sirwfx26sfce.png" + }, + { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,7qVilU94X0Kldpvku2mcng", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alo Yoga Bucket Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2798, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:27.353Z", + "ThumbnailImage": "C2N_ATMr50e2W4aeVk04iQ.png" + }, + { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,d6823e01-69f0-4f85-b94a-74894356a2cf,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Small Brim Hat (Maroon)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 491, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:14.11Z", + "ThumbnailImage": "77ytai8z0lk4qz5x8il84ybvx.png" + }, + { + "AvatarItemDesc": "9d2ea3c2-c199-40ed-a6c3-fab5f8dca7d6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cow Ears Headband", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2227, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:34:40.28Z", + "ThumbnailImage": "gpHXKk3jR061QowF7qKdGw.png" + }, + { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Regal Crown (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1321, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:07:46.237Z", + "ThumbnailImage": "357bwxxf0kvoz6yd778gmm1k6.png" + }, + { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rmq1AOQvtUGOHvbPUximwg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Regal Crown (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1323, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:07:59.103Z", + "ThumbnailImage": "5zb2ksxrxwp3n2qlecml4u0l5.png" + }, + { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rxMCIkLb2UO0Z3tsqtYuSw,x8nPf0xEwUiRdBQU00Bu1g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Diamond Crown", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1895, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-26T19:21:55.807Z", + "ThumbnailImage": "18orrg4k9zm7dsjfj9k2dz23q.png" + }, + { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zljmtj5WqUaRvB3XQTgJXg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Regal Crown (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1322, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:07:52.51Z", + "ThumbnailImage": "8kgbf2gxx8ajp1uw1zrx306an.png" + }, + { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zu3hTm6JyEa0sE72KtVGXg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Crown (S.)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "s", + "AvatarItemId": 2423, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-19T17:06:49.797Z", + "ThumbnailImage": "jlklbsk_UEW29bsjWRwmUQ.png" + }, + { + "AvatarItemDesc": "9d68e9f4-6ea0-4717-bb78-f2783a14a6b6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scientist Gloves (Purple)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 283, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3sd1nkxa7ilnnjgnwm2xtqw6b.png" + }, + { + "AvatarItemDesc": "9d68e9f4-6ea0-4717-bb78-f2783a14a6b6,KTidYfH0ckWxJGs5qzUBTQ,VSZX99mSt0e7gPRM2_XzMw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scientist Gloves (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 802, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:45.133Z", + "ThumbnailImage": "6r1rr4giperexziw91ocwu6f9.png" + }, + { + "AvatarItemDesc": "9d9fadb6-97eb-480e-a224-4e0179082071,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Meatball Buns Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 995, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:15.06Z", + "ThumbnailImage": "2k57qatxawouqn71m6owgx9bc.png" + }, + { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimless Cap (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2328, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:32:49.703Z", + "ThumbnailImage": "EcBeEDeJN0a4mHWBsi4Npg.png" + }, + { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,hgLq0WyUAUSl2sboUrpTKQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimless Cap (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2330, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:32:53.37Z", + "ThumbnailImage": "rUQ5YQ1ymk6xtBaPHA9obw.png" + }, + { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,JzLPlVNG20G9mxG_4PF8Fg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimless Cap (Navy)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2332, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:32:57.137Z", + "ThumbnailImage": "mWIwHLWbnE2ZVzfBK3Y4CQ.png" + }, + { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,M5uFQQpoQE-5CKMJnDv_LA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimless Cap (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2331, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:32:55.307Z", + "ThumbnailImage": "BqkhCnPdjkqPD8KI_tvDBg.png" + }, + { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,Rh-RaEHap0e858QeTtCqJg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimless Cap (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2329, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:32:51.36Z", + "ThumbnailImage": "Eu1IKmX_QkyptaNvKNG26w.png" + }, + { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,VuMDnpnK50mzgUMwJ4F6Jw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brimless Cap (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2333, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:32:59.113Z", + "ThumbnailImage": "jfoJFkvJhEaInI7ytPqonA.png" + }, + { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raincoat (Yellow)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1357, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-17T19:29:41.767Z", + "ThumbnailImage": "1c69e4rsxwolxiw7iq522lr5k.png" + }, + { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,gDP3y0J2EUayzVvBT9-92w,dMDMDExSmEKOF_kQIHaowg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raincoat (Getaway Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1482, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-08T19:52:47.577Z", + "ThumbnailImage": "9oppuuz5leb1br8st56q8pzgc.png" + }, + { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,GH9q8_0O9EqjGdz7lGWD2g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raincoat (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1358, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-17T19:29:46.303Z", + "ThumbnailImage": "2y3vygtoygwgkb4vvi4ueelz8.png" + }, + { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,kBmmFoqo-0eLSSAhen-VLw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Black Raincoat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2809, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:53.793Z", + "ThumbnailImage": "6MqtAecx3EmgN2hug-kDWA.png" + }, + { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,m8x6fiLEw0m4pJywntEpzg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "White Raincoat", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2810, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:56.247Z", + "ThumbnailImage": "3yrQDfBRi0i3HHeiqNPY3w.png" + }, + { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,M-N9vQt0CEefqgmeLp3l4g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raincoat (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1697, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:35:43.78Z", + "ThumbnailImage": "7uwfpp71odpm2zjf7dopjufm1.png" + }, + { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,q_HcScqHgEG-x70g1wtfLA,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raincoat (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1696, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:35:42.057Z", + "ThumbnailImage": "647nsozzr00smthvpc1qrymze.png" + }, + { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,tVbu4hUFHkmEKEz38GG2Nw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pink Raincoat", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2811, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:59.16Z", + "ThumbnailImage": "zxxN4bCyXESVjKRUDYv7iw.png" + }, + { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Gloves (Brown)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 271, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "aq9fxwenux4k6wi50q7r0yqm9.png" + }, + { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,17e44296-1cd9-4f8e-9aa7-3837dc69279a,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Gloves (Cherry)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 272, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "408o1nfsbf7uwx8ji3868l7j4.png" + }, + { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c0c33a35-494c-4a1a-aa53-d27d9b9ef5a4,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Gloves (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 274, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2abrokbv6i5wmyx0dj57x43zo.png" + }, + { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c4ebfd1a-fcda-4b98-a151-a941b1801867,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Gloves (Black, Gold)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 273, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "74jyglxoijr47llzzcuyhnhe6.png" + }, + { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,rfIzQjxeRU60VdRQXG9Ccw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Gloves (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2235, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:35:36.49Z", + "ThumbnailImage": "qy6K5v706kGJUmNb4oGH0A.png" + }, + { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,tOlpTL8F1Ui_akCjHq5vRg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Gloves (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2234, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:35:26.76Z", + "ThumbnailImage": "fGnMN9gdtUWyx2MEQZbOrQ.png" + }, + { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wat8f6fs80KptZbW39e8tA,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Gloves (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 933, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:09.323Z", + "ThumbnailImage": "5lr5c7ooc5e1x5c8f29zbk048.png" + }, + { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wkqKPZmnoU-8TXSWzi2-Ow,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Gloves (Black, Silver)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 934, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:10.367Z", + "ThumbnailImage": "b8w1fmsevjv9eaqf2yjooy8ta.png" + }, + { + "AvatarItemDesc": "9eb95934-90f3-4f48-a6b4-d87d75d9bdc4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Eggshell Chick Gloves", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2871, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:34.34Z", + "ThumbnailImage": "iF4tjDkdYEe3NUEZrY7znA.png" + }, + { + "AvatarItemDesc": "9f2cf07e-f98f-48bc-9c74-784ba4b94527,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chess Knight Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2919, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:15:33.23Z", + "ThumbnailImage": "ogxBM3YvhUu3E19PxYAYwQ.png" + }, + { + "AvatarItemDesc": "9fb62d0c-67ff-4675-85d3-a2869c2330aa,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Racing Helmet (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1854, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:46:22.26Z", + "ThumbnailImage": "5ll88rg9iiispe9c611fj575e.png" + }, + { + "AvatarItemDesc": "9fb62d0c-67ff-4675-85d3-a2869c2330aa,ijCbiOeGD0C4uznegq9CXw,VzyoPsQyCUaW6RSusgVUGQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Racing Helmet (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1896, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-30T20:34:43.833Z", + "ThumbnailImage": "b5jt7jrhmi5ch4z1axfan8u95.png" + }, + { + "AvatarItemDesc": "9fd1be12-1577-4800-b79f-6da29f299826,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Reclympics Medal (Gold) ", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1829, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:18:00.483Z", + "ThumbnailImage": "1efy3zkdik26gdvivvvd0ap3k.png" + }, + { + "AvatarItemDesc": "9fd1be12-1577-4800-b79f-6da29f299826,mVj9t_XVCEqdx89v2zdjHQ,kJ_pNxSWKE6HZX4Sc7Dv0g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Reclympics Medal (Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1831, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:18:06.86Z", + "ThumbnailImage": "alczfhgjdnbcvf9orafqcp6ag.png" + }, + { + "AvatarItemDesc": "9fd1be12-1577-4800-b79f-6da29f299826,zNLzEvpTpkOIi0J3fIvh1A,OqC4ny2rk0yJJOHemspV7A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Reclympics Medal (Bronze)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1830, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:18:03.323Z", + "ThumbnailImage": "7vqxnzgn42vejyf08m7zft4f3.png" + }, + { + "AvatarItemDesc": "9ffa6e06-5200-4e53-ac13-f8491aecc864,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bounty Hunter Armor ", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1551, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:40:07.317Z", + "ThumbnailImage": "9sotdnybus40og7ig3za9imke.png" + }, + { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Figure Skater Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 955, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-12T02:15:20.713Z", + "ThumbnailImage": "99bp2zxrcuohv18hmmh26iuao.png" + }, + { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,dZyVey0_oU-3u6FLbIdGLA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Figure Skater Collar", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2163, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:34.197Z", + "ThumbnailImage": "Ls7NQ0Vos0SREhMD3UGSJg.png" + }, + { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,rP0LMoFjqUCU1LWA6_wOnw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Figure Skater Shirt (Burgundy)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2164, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:36.827Z", + "ThumbnailImage": "kO-X2uWxJEGueWZ1XNqQfA.png" + }, + { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bat Costume Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1927, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-13T18:56:23.193Z", + "ThumbnailImage": "7s85boxheb6528qy06bkgcocn.png" + }, + { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,dE_ZWKPV90utoyWtRalh8w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Green Bat Costume Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2522, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:38.537Z", + "ThumbnailImage": "6wBcnTssRk-eCxqSkfa3Mw.png" + }, + { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,GPX92X5n3UWMbh3C13oB5Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bat Costume Shirt (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2521, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:35.463Z", + "ThumbnailImage": "PImwtIHMIkmPg7xHGM7PXQ.png" + }, + { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,jIAMeDkA80GVHYTi0d9LkQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "White Bat Costume", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2523, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:41.91Z", + "ThumbnailImage": "ERAg0XXt4EicefSqiFHYcQ.png" + }, + { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Wrap (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2359, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:55.447Z", + "ThumbnailImage": "O9Rxhi7Xp0uMsUE3NL64uQ.png" + }, + { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,0zldWzi4H0OQwsWPt6gl-w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Wrap (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2364, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:34:06.327Z", + "ThumbnailImage": "ZBnmV3ahdUa6yCVkJ16fGQ.png" + }, + { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,a0A1q_e1q06qquiu2KaZhA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Wrap (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2361, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:59.667Z", + "ThumbnailImage": "mcJSwkCUbUSoHOpUPPSxcw.png" + }, + { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,M_BhFve7SkC7IJoymLiCLg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Wrap (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2363, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:34:04.147Z", + "ThumbnailImage": "vlAp24nn10uyws8TDY5Rug.png" + }, + { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,nPenrNSTE0mDK5cWhxtEug", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Wrap (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2360, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:57.56Z", + "ThumbnailImage": "yEzjZ8Usm0289gIRWJ6TqA.png" + }, + { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,rwESUxIrQEKA2hdQpcaPaA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Wrap (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2362, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:34:01.873Z", + "ThumbnailImage": "TAGSVr0Y6kmZcsvKeNOdxw.png" + }, + { + "AvatarItemDesc": "a12f724f-4a73-4ab8-aad4-6bfc662b4dd6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Undercut Long Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1002, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:24.127Z", + "ThumbnailImage": "cy0bdcxljjgonlcc039y6o326.png" + }, + { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cloche (Pink)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 45, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2q5g72y38c6wxtl9ob1g6osjo.png" + }, + { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,bmi_S166JEGWhf_7woVL0A,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cloche (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1635, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:44:45.46Z", + "ThumbnailImage": "8dwxff103s58nebb8y2kbn194.png" + }, + { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,dSEiNUAZnUmErO5Vfv51zg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cloche (Teal)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1636, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:44:54.713Z", + "ThumbnailImage": "b8f53f91dy30khotxt5f1ktnl.png" + }, + { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,jTG-jnKn0k-Etg_-4Gb9gw,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cloche (White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1637, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:45:01.9Z", + "ThumbnailImage": "0sm192b6zl94b0y64i6sh5wpn.png" + }, + { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,w9I-I0GWRE-3RgOUMMlHjg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cloche (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1634, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:44:43.52Z", + "ThumbnailImage": "3ft3mh0blr3stuvbs8p0kyll2.png" + }, + { + "AvatarItemDesc": "a28d3819-e5e0-457f-8363-09aaed6a1382,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousHawkMothGlove_Wrist) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1999, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:19.797Z", + "ThumbnailImage": "01v0cofrfhvsecj4d83kd6qn6.png" + }, + { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grinning Cat Shirt ", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2477, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-04T17:41:15.183Z", + "ThumbnailImage": "spUKGpKq3keVBvBjMRkRIQ.png" + }, + { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,4YH_0kN1ZUSVEQmCBiTt7Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Penguin Onesie", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2594, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:21.343Z", + "ThumbnailImage": "-iEX4DOt8Ems8CPrv9vFPg.png" + }, + { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,McX_jAOowUmjXNPEHbdS7Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grinning Cat Shirt (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2478, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-04T17:41:20.983Z", + "ThumbnailImage": "4yiLN6Z-r0msFhufhO36Mg.png" + }, + { + "AvatarItemDesc": "a302741d-313b-4682-82e5-ac76764e662c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Poofy Dress (Yellow)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 256, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3szxfcxg8z8qj8wcaoubbty0z.png" + }, + { + "AvatarItemDesc": "a302741d-313b-4682-82e5-ac76764e662c,31ac9d4d-3d6b-48f2-85d5-dc4b8165a17a,d30e3afe-414c-4b60-8be9-6fa4156a4b65,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Poofy Dress (Purple)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 259, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9c3ziz00oalv0ji0f7tke3j7w.png" + }, + { + "AvatarItemDesc": "a302741d-313b-4682-82e5-ac76764e662c,55901f12-d5b5-4fa8-b4c8-e479689ee39d,d30e3afe-414c-4b60-8be9-6fa4156a4b65,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Poofy Dress (Blue)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 257, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "00voe87lgaogwdjrgkt66bxew.png" + }, + { + "AvatarItemDesc": "a302741d-313b-4682-82e5-ac76764e662c,64850553-cdfe-455a-ac00-dafbe63d613e,d30e3afe-414c-4b60-8be9-6fa4156a4b65,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Poofy Dress (Orange)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 258, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9z43yb4xdivb6qyou9niixqtn.png" + }, + { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Clockwork Shoulder Bag", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2473, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:23:15.79Z", + "ThumbnailImage": "zNy5rjlaD06F8Uq9ifQuGg.png" + }, + { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,0EjPIiuYpEGIWup3pKeC8g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Clockwork Shoulder Bag (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2474, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:23:17.963Z", + "ThumbnailImage": "0LdcFFwAQkSh1FSiaDwp6Q.png" + }, + { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,dkJNh15DnEuO1BatzpI_uw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Clockwork Shoulder Bag (Rose/Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2476, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:23:24.113Z", + "ThumbnailImage": "vd7QP1vfykeRmhB2_5D88g.png" + }, + { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,GAWBaCDBzUqdyTGA-HPczQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brown Clockwork Shoulder Bag", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2475, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:23:22.067Z", + "ThumbnailImage": "A6d5UocVhE-gR4dNG396UA.png" + }, + { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,XMAOwHGXVECoeKoWb_-luw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Clockwork Shoulder Bag (Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2427, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:32.903Z", + "ThumbnailImage": "XOVkcyCEQUWRJU73kORscw.png" + }, + { + "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elven Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1793, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-17T16:05:05.117Z", + "ThumbnailImage": "9pskxjn1i5vvqw267s8jfq4cn.png" + }, + { + "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,EmlwkB77pUiiDEmc2pMVaA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elven Cape (Jade)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2189, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:18.477Z", + "ThumbnailImage": "DRy_t5nuCUqcj18J33q3Hg.png" + }, + { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Cape (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 720, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-20T23:58:08.133Z", + "ThumbnailImage": "bf58ryhvrbk2aecunq5n3d31i.png" + }, + { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,_9QlnTPXuEO5OQ3H0CwFkA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Cape (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1310, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:55.517Z", + "ThumbnailImage": "7h38lx0795mk0b8xq52d9qxpl.png" + }, + { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,5_-QLURc_0W8qeeN3Q3iGQ,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Cape (Creators Contest 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 772, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:07:55.363Z", + "ThumbnailImage": "bxnimeiegto1m9zphsy7qlcz3.png" + }, + { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,cKLBS6pbf0SFuavWyeZ7GA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Cape (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1503, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-17T20:04:18.47Z", + "ThumbnailImage": "1ttt8tqohiquycu310oyhuoql.png" + }, + { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,DZyW-gOG9U-QLGOMFBhOoA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Cape (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1758, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T01:40:31.307Z", + "ThumbnailImage": "2bwspz3moa7kwzc2t95xaqy4m.png" + }, + { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,MbusQ9bte0i9zirlxtNkSQ,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Cape (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1309, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:51.033Z", + "ThumbnailImage": "auudmnyvmvid9ohssear4bwrb.png" + }, + { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,mqdncbYcuUSGFvFqEU0z4A,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Cape (Purple)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 899, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:29.127Z", + "ThumbnailImage": "2bi9ik7y9m6zg5fxaf10v08uj.png" + }, + { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,pEiU6yZm2U-X9ip_CM1SAw,PIV6RtD7Pk-UTcUp2wF1ww,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Cape (Gold)", + "Tooltip": "For earning $50,000", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1805, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:12:07.813Z", + "ThumbnailImage": "7na5kk0hvnqgktgkcfeeae46d.png" + }, + { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1760, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T16:19:11.58Z", + "ThumbnailImage": "ba7xldqaol3atwgv9n84yszra.png" + }, + { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,JilOXG1I_Ei65mw6TzFWgg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Hat (Steampunk)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2269, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-01T19:00:11.28Z", + "ThumbnailImage": "-ejrJeBy7kaQ8QEETufdXg.png" + }, + { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,jXRXO3CVE0-H_iaxbMhFhA,VZyHWGKNJEGSxDT2GO3ebA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Hat (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1813, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T19:13:46.333Z", + "ThumbnailImage": "7xe9d7zlk5k1ybhox7zl3n47i.png" + }, + { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,YSnoHFmJDUa_XCK6JMMh2g,VZyHWGKNJEGSxDT2GO3ebA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Hat (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1812, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T19:13:43.753Z", + "ThumbnailImage": "8e5uyhuugy9bj5wqx2g8ucwlc.png" + }, + { + "AvatarItemDesc": "a4c26527-8f75-44da-b150-7aaf8ef739c1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Shades (Green)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1160, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:54.19Z", + "ThumbnailImage": "0y8i0p2err8v094d39pt4hrsl.png" + }, + { + "AvatarItemDesc": "a5b747b8-c1a5-4bce-999f-e13dbe77bde6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Disco Ball Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1259, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:13.123Z", + "ThumbnailImage": "2za37ica0cvevp732s8h5llq0.png" + }, + { + "AvatarItemDesc": "a600fa80-ed4e-4acb-8d6d-72fa87d2bef3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nutcracker Crown", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2566, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:02.76Z", + "ThumbnailImage": "e1-lO7c1i0m5eg3UkCPczg.png" + }, + { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Hair Clip (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 56, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "37a5o4unxmplzke25isjr0n4n.png" + }, + { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,596097a8-d545-4256-959d-1d3cd96fc64c,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Hair Clip (Yellow)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 486, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:07.013Z", + "ThumbnailImage": "23uhduy56xwn0r399ed4oscrw.png" + }, + { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,ce465d53-3807-423f-baa0-bdba2a75ceb3,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Hair Clip (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 485, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:05.667Z", + "ThumbnailImage": "chwhfus6b1dkb3vtb59wuymig.png" + }, + { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Equestrian Helmet (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 50, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6gyrqvu42014zf0m05yueqgws.png" + }, + { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,4828b50c-95b6-466a-bb25-514891d78202,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Equestrian Helmet (Grey)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 633, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:55.61Z", + "ThumbnailImage": "ebxhd6rhrlk3qem5ly6uri8od.png" + }, + { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,55901f12-d5b5-4fa8-b4c8-e479689ee39d,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Equestrian Helmet (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 632, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:53.9Z", + "ThumbnailImage": "0dobf9ialtu2o3i6ia3w9whbc.png" + }, + { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,d6823e01-69f0-4f85-b94a-74894356a2cf,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Equestrian Helmet (Maroon)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 634, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:56.79Z", + "ThumbnailImage": "7w9g6a5fxuoeblfcf3ahgvbs7.png" + }, + { + "AvatarItemDesc": "a6cbfe76-534a-4655-a8a8-3fed13d001c7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bald Top Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 726, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-10T01:29:49.323Z", + "ThumbnailImage": "3pvimigcs9imx8k1sd5juxlf5.png" + }, + { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Shirt (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 225, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2hyiw1ost44xvt2vreduatn4w.png" + }, + { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,54d3c589-30ba-44c1-a77c-8f9e16eb0b20,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Shirt (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 424, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:27.373Z", + "ThumbnailImage": "5la3vym26ex06q0rm9ykg3w1f.png" + }, + { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,82de1ca3-67d6-454d-84fb-0eeece71fcbc,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Shirt (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 423, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:26.2Z", + "ThumbnailImage": "93qrv8cwm8k71rmnk1o22mzpq.png" + }, + { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,fe5288bc-0e02-4ea3-b17d-dee0e576979d,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Drum Major Shirt (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 422, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:25.063Z", + "ThumbnailImage": "d1ickhvbj03efs8x35tvbakq2.png" + }, + { + "AvatarItemDesc": "a79e855a-c4fc-4ffa-be2f-9f4fef0ab1d5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Outlaw Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2272, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-01T19:00:19.873Z", + "ThumbnailImage": "TulnHZMqkE2HIMXRNacnsQ.png" + }, + { + "AvatarItemDesc": "a928c6dc-442f-4cbb-b705-cc5a3969b34a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teela Hair", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 2583, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:47.753Z", + "ThumbnailImage": "wy-_Y3jSdUC9bKLa63iIpA.png" + }, + { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mecha Wings (First Release)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1911, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-22T18:04:05.727Z", + "ThumbnailImage": "ar7fmx8roe1n7n2hcnjomo65l.png" + }, + { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,cS-oBNlLE061SIB40QjiDg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mecha Wings (Forbidden One)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2283, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:30.313Z", + "ThumbnailImage": "QGWG7sL090695CW4JWWvvA.png" + }, + { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,oSoW8v6emEW4g1IduUNzOA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Wings (Invasion 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2704, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:41.807Z", + "ThumbnailImage": "sQ5AG_RCAk-j6MKfyvnriA.png" + }, + { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,rFcMAp5UvkuGalprkr_ARQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Wings (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2488, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-11T18:02:06.757Z", + "ThumbnailImage": "JEZj0fwAP0a4qOcclGw70g.png" + }, + { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Shirt (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 694, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-31T00:52:28.07Z", + "ThumbnailImage": "1p79pekt3n19qb30ijvjrm1pn.png" + }, + { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,0d2830e7-8eb0-4fa3-99bc-7c80f01dd991,5814a331-6155-4df4-b921-3ffc6059e44c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Shirt (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 701, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T19:45:52.773Z", + "ThumbnailImage": "46gvey2edecat2kkb5igdbv3b.png" + }, + { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,5owofMF_Y02WX2vwVL2aew", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zombie Boyscout Shirt (Mutant)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2403, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:02:48.38Z", + "ThumbnailImage": "hsrSnSftIEikNWVCh1v1GQ.png" + }, + { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,OX1ituawfUqYC-caC1WcCg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zombie Boyscout Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2390, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:38.737Z", + "ThumbnailImage": "O9Zd5keRSkKyg2NA2V-QEQ.png" + }, + { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Field Hockey Uniform (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 179, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "39n1fu8uzgykuoibgylda8en0.png" + }, + { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,7b0d6661-e856-4ec1-ab90-d89c28a70826,1fede91a-434e-49a5-882e-e6db107112a8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Field Hockey Uniform (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 421, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T18:31:24.11Z", + "ThumbnailImage": "akd6dknn22mbqs5rpgcphqekv.png" + }, + { + "AvatarItemDesc": "a994fc19-974e-444e-ae9e-c2f6c32432bb,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Midnight Gala Tuxedo Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2610, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:48:21.75Z", + "ThumbnailImage": "Wir5kzMxjkaVf8C17Tg5wQ.png" + }, + { + "AvatarItemDesc": "aaed6385-0ba5-45f3-b0d2-6b0a9ab79628,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Disguise Glasses", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2085, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:03.797Z", + "ThumbnailImage": "X0LbhAoDYk-wQI2tMehxJQ.png" + }, + { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Peacoat (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 760, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T19:04:25.883Z", + "ThumbnailImage": "3r88aoow0xky1yenciez1enyj.png" + }, + { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,fvoaMN4M10WS6jiA6XlOJQ,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Peacoat (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 791, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:25:46.673Z", + "ThumbnailImage": "2i0jzvjgsic4vsv7uod1p0o5k.png" + }, + { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,jXBi28cRV0CEQgKIrpD0_A,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Peacoat (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 817, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-09T20:28:43.963Z", + "ThumbnailImage": "dhqntf98nka1vp9oh5hi5ybtn.png" + }, + { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,PwsLxCnzOkSW-RGz3tNb1w,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Peacoat (Tan)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 792, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:25:48.323Z", + "ThumbnailImage": "6fdpcq0zhuz9xr09wlcj3j7bx.png" + }, + { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,uiBklotTUEqRI2F67vyJyA,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Peacoat (Purple)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 794, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:11.33Z", + "ThumbnailImage": "beldcz68emei41q0ndhzzbtr7.png" + }, + { + "AvatarItemDesc": "ab1d252a-c15c-4a97-8e48-da0813d33b00,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Con Lanyard (Purple)", + "Tooltip": "", + "Rarity": 30, + "TagList": "reccon", + "AvatarItemId": 1769, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:00:29.44Z", + "ThumbnailImage": "dt1vtd0wu908uat9x5cnwqgmz.png" + }, + { + "AvatarItemDesc": "ab1d252a-c15c-4a97-8e48-da0813d33b00,cxwdcbGTfUS_LYQoXpcQng", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Video Partner Lanyard", + "Tooltip": "", + "Rarity": -1, + "TagList": "", + "AvatarItemId": 2152, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-30T00:16:19.827Z", + "ThumbnailImage": "QyumHCBqFkSaxEc2T7bMaw.png" + }, + { + "AvatarItemDesc": "ab446412-84cd-490d-84e0-2e666633b72f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dirt Bike Helmet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2857, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:40:44.807Z", + "ThumbnailImage": "CXVseWtLVkWtwM2EQ4f2Rg.png" + }, + { + "AvatarItemDesc": "abc25091-ed5f-4c72-9364-fffeef1bc239,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bishop Gloves", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 268, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "d5ga9td4yt4xjgrj7q9m03toz.png" + }, + { + "AvatarItemDesc": "AbYdU7O_9U-Lwg7zFVZzXQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Reindeer Antlers", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 960, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-12T03:04:20.587Z", + "ThumbnailImage": "68fe918b1l9gkogciqeizqf0o.png" + }, + { + "AvatarItemDesc": "ac957e1e-676b-45c9-a39d-b238d2329a03,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Horseshoe Bracelet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2245, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-22T16:52:58.237Z", + "ThumbnailImage": "9EjzWesDb0qc78bYLR4gXw.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Hat (Brown)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 46, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "4jywgtwnb8sydqwmy9qd6aszg.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,_6LmNp0uX0Ky4jp2j62U2w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Hat (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2229, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:34:54.817Z", + "ThumbnailImage": "hFGaKfD6BkyXWpL9Z29Htw.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,192ba73d-6990-42da-8fe0-914c2a7181eb,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Hat (Black, Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 48, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "d9rwabvsu3fo05lmoaqnv6udq.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Hat (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 49, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "1ioaonefjjjvtyvufi87rptrp.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,624c85e5-095a-48b6-85fb-c9bbade19a8d,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Hat (Cherry)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 47, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0sgisiuk6yb2x3qtliioxly31.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,AEqCasEqOUCgetoTwuMTug", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Hat (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2308, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:59.48Z", + "ThumbnailImage": "YisZ-46Na02k8dv191Spew.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,cNarx7yecE2gk-7mYaoHwA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Hat (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2230, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:35:00.667Z", + "ThumbnailImage": "2nwp59be1lvbayv88iqb1rr4k.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,K5vPqD3BrEuODRDzFdC6Hw,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Hat (Black, Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 916, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:50.73Z", + "ThumbnailImage": "55ecravwda31t7zdi490k0t6u.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,teVKVbVEsEyqOSuRdqHQzA,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Hat (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 917, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:51.727Z", + "ThumbnailImage": "5p88yvfhaz0xqx9u944krzm90.png" + }, + { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,zoUmQIcOrU6jgBu_0urrGA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Hat (Invasion 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2701, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:32.867Z", + "ThumbnailImage": "0b-BFgiGEEer1cPxNaI-YQ.png" + }, + { + "AvatarItemDesc": "ad21788e-1995-4c2b-9c7f-610bbc1019c4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousLadyBugMask_Eye) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1989, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:43:46.69Z", + "ThumbnailImage": "6yostvo78m555vx70ouaibzah.png" + }, + { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(OverallsSkirt_Shirt) ", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2860, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:40:50.57Z", + "ThumbnailImage": "A6Gyszd5SkyByb7oryYm_w.png" + }, + { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,e8aNxGFlBUWy59Bfrvvv7w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Brown Overalls Skirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2861, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:40:53.103Z", + "ThumbnailImage": "LP6loSF2uUmBukTEKkAN5Q.png" + }, + { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,HDpCyFn40kOxJ0P_xJr4-A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Overalls Skirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2864, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:41:01.243Z", + "ThumbnailImage": "jAr4ImFmQ0u4xa689IeaXA.png" + }, + { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,OZ1v-s_XFUyfMA5mfd47FA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Green Overalls Skirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2862, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:40:55.963Z", + "ThumbnailImage": "T3O9LKgezU2qgWjCAoDPfQ.png" + }, + { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,sCj73U9p5E6DQreOsbutqw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Red Overalls Skirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2863, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-10T22:40:58.633Z", + "ThumbnailImage": "bGS9YZZvhkSZTQaLBEnbYA.png" + }, + { + "AvatarItemDesc": "ad55bb62-671a-4a29-aec8-36a1e3104f05,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pioneer Cuffs", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2265, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:16.987Z", + "ThumbnailImage": "2o_-7a2C30eYta_KTWhvIw.png" + }, + { + "AvatarItemDesc": "ad6e7c98-8056-4e12-92ad-bfa19a00f4af,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gardener Shoulder Basket", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2822, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:52.327Z", + "ThumbnailImage": "Jr88nPGi9EOu05WlVylKgg.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sunflower Sundress", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1483, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-15T19:05:41.467Z", + "ThumbnailImage": "3ijpwku25zvpdgkp4y12e3yyv.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,6PyJEQxyd0K9TPRnvt_86Q,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sundress (Estate)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1491, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-15T19:06:30.45Z", + "ThumbnailImage": "4iobr7kq8wwwa2wclut3agqo3.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,as9fjqDWiUi1w7yYavKZXA,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sundress (Sunset)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1489, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-15T19:06:13.467Z", + "ThumbnailImage": "7lu5zwmfs5awwdn6oo40jy7z0.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,OJYpuFw810Sg4bTw0XQf-g,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sundress (Lodge)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1484, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-15T19:05:47.99Z", + "ThumbnailImage": "9iwljaztbqbk7v3c1w2zryiah.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,QlZt51mdn0WuiqKoJaIRyA,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sundress (Vineyard)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1498, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:42:10.693Z", + "ThumbnailImage": "5ov29z2kh47zws4vv1r89tx28.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rGMFdPKmK02_OvIIFYlAxA,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sundress (Veranda)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1486, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-15T19:05:57.863Z", + "ThumbnailImage": "4j8oqc693u6bw3exf1fz40gqg.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rsh2uKli90OoEnJZRFc2Ww", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boho Sundress", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2262, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:09.317Z", + "ThumbnailImage": "EPFpkkBDokyWw7QwCJe9Hw.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,-sqfCQpzpUyjEShEXH9JYQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sundress (Sunrise)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1488, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-15T19:06:09.86Z", + "ThumbnailImage": "8vqcr3rvn7ctiddmrvtkcq1oc.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,sz-J7RjesE-ke3bKwumzZQ,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sundress (Meadow)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1490, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-15T19:06:17.363Z", + "ThumbnailImage": "96vw242yfg6iw9nr4lt97iqqg.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,t4gMAKp4L0WBaTGf_rtqFw,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sundress (Yacht)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1485, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-15T19:05:53.977Z", + "ThumbnailImage": "d1rcizuvnlnebb16r91lfnd5i.png" + }, + { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,wxvSDMommkenIl5hTY2fdQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sundress (Seafoam)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1487, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-15T19:06:04.11Z", + "ThumbnailImage": "17odpv44phqhpwrrvimszr6y6.png" + }, + { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Silly Shorts (Donut Dreams)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1497, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:42:04.91Z", + "ThumbnailImage": "6f370azhmwpl1vkwy7fwf4kzo.png" + }, + { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,56qchovVVEaVwL9S52kneA,BAjMoTHbD0mSCjoG9jmzjA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Silly Shorts (Sour Popsicle)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1494, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:41:49.797Z", + "ThumbnailImage": "2lgy30wam8vhg848fzjhiys66.png" + }, + { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,9P8ARRUYdk6hCoGMKhix4w,o__JORNtYEiJEyyoBIimPA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Silly Shorts (Pink Flamingo)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1492, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:41:35.15Z", + "ThumbnailImage": "49x7h4tmx4xozv5opw2vrtmnl.png" + }, + { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,nu_UGtkJOUK-5MWaW83MUg,pgBFpOtl00K2zsTJcfrefQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Silly Shorts (Watermelon Rain)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1496, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:42:01.563Z", + "ThumbnailImage": "65sqa2rlvhzcxamj55t9w8684.png" + }, + { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,Pg2cVQonrkmbXZdsNcn-KA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wacky Shorts (SummerCamp Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2167, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-13T01:18:45.373Z", + "ThumbnailImage": "nIUJ-iQCTECRCeCD0vn96g.png" + }, + { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,sJioq5ARDUyMHFji_6OxFw,bjXO36Nu6EWD2dU1UC4Uwg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Silly Shorts (Pina Colada)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1495, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:41:58.31Z", + "ThumbnailImage": "8u3din8ubpb13mug1b7ls4lnw.png" + }, + { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,zJMD-_HR80WCAUqYGe7_NA,rAzhaLh1nEWMd9v1D-HWcQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Silly Shorts (Lonely Island)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1493, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:41:41.48Z", + "ThumbnailImage": "e0hiapycpgqmkydxsy7vminkj.png" + }, + { + "AvatarItemDesc": "ae7c9d1f-d371-4dfe-a6df-d74662606aae,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stranded Astronaut Suit", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1938, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-03T21:36:40.53Z", + "ThumbnailImage": "6z6iwsstjeii7vhx905bsn4tj.png" + }, + { + "AvatarItemDesc": "aeda4e5d-9cfc-44ec-b325-ab8b2d906a8f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bullwhip Belt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2290, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-10T15:40:35.433Z", + "ThumbnailImage": "AlSw_umA9E-_tWoN6PsFsg.png" + }, + { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chef Hat (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1137, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:19.22Z", + "ThumbnailImage": "e5wnr991h4k0p24z7l5fzcchr.png" + }, + { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,PR5dh2jf2kqGLO0lXgA69A,-lYK7LhYyEy6wqL1tIE9cg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chef Hat (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1573, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:37:48.18Z", + "ThumbnailImage": "6da55yu9ap4a2qw81ndsgake8.png" + }, + { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Gloves (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2031, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:09:39.927Z", + "ThumbnailImage": "glEms9DPgUePBYRHEkwVCA.png" + }, + { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,3bqY_T4_HEy406HcXrfLuA,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Gloves (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2033, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:09:45.31Z", + "ThumbnailImage": "3kbfjdmvbkav8SJ0HVhIfw.png" + }, + { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,9ir4Es5d0Ue-8bn2EUcCZQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Gloves (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2080, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:21.623Z", + "ThumbnailImage": "Ziuv9nfKPkOE__m_o9Hvxg.png" + }, + { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,aaaG7Fg8fky2dkrwVsA30g,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Gloves (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2036, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:09:51.76Z", + "ThumbnailImage": "5bl8JvLg7Eqp39q9_7m5dw.png" + }, + { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,I4lNZy7lR0uyUN5Vk3fabA,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Gloves (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2034, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:09:47.607Z", + "ThumbnailImage": "GLCx4lFj6E-Z-FE9wkiDoQ.png" + }, + { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,SMeMLRUF-UWrOcXYJzgScw,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Gloves (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2035, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:09:49.74Z", + "ThumbnailImage": "NVXRDfl_ZkOY9c5Nq_W1Wg.png" + }, + { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,WkI_v-Sua0WlhmMf8R4aGA,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Gloves (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2032, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:09:42.95Z", + "ThumbnailImage": "cHR8FF5MZkaGrOTZcAvR-A.png" + }, + { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,XaNgcjkwP0uxS5_S1JaQrA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Gloves (Space)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2400, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:02:35.44Z", + "ThumbnailImage": "NXhmwZeIG0SGdfTzbBGsaA.png" + }, + { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tiny Backpack (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2781, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:45.81Z", + "ThumbnailImage": "yn-2YY0OvU-VMl9fBtdbuA.png" + }, + { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,5GEhQr7Iy0-kB0yCA3uJ6g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tiny Backpack (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2787, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:14:00.897Z", + "ThumbnailImage": "lfkspyvSk0CIkZx0gXhMog.png" + }, + { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,AtF5be-huUeADedbRurRcQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tiny Backpack (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2786, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:58.28Z", + "ThumbnailImage": "TQGXsPW7Hki2VKZiU0b-HA.png" + }, + { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,cxWuO4qBtUOKYmCXI0D5Jg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Green Tiny Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2783, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:50.797Z", + "ThumbnailImage": "e-QC6uq5zECcdfkIRxtpiw.png" + }, + { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,FIZdMEUgykOHb7fVlOfa5g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Black Tiny Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2782, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:48.49Z", + "ThumbnailImage": "9xjIqLGxDkOZsXIexIon3w.png" + }, + { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,T9XdU5xAFEqX3QV__SjXYA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tiny Backpack (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2785, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:55.693Z", + "ThumbnailImage": "VzzHEVAKM0ChjhmxaHnhow.png" + }, + { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,wrobkXV-10CD1JJtgyy6Fw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "White Tiny Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2784, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:53.263Z", + "ThumbnailImage": "y91-mA5ypkiHUOTxxjG6iQ.png" + }, + { + "AvatarItemDesc": "affdc9ad-8312-4421-8f56-e35dfdaeb63a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lifeguard Whistle", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1832, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:18:16.79Z", + "ThumbnailImage": "8ew0vvmubkulgd7xjvlqhfuc2.png" + }, + { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker (Teal)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 758, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T19:04:23.4Z", + "ThumbnailImage": "6qo0q0lqcx2crqugl2xmhnz4d.png" + }, + { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,C3ll7uPfUkeZ1QLX80_BpQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker (Yellow)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 894, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:22.033Z", + "ThumbnailImage": "0kifl6w66mqa2wbhliszoe52l.png" + }, + { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,EbVDqEJQOk6j0UvX3t-8rQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker (Blue)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 895, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:23.533Z", + "ThumbnailImage": "37ag45u7zn3cqqya03wz5nmgw.png" + }, + { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,grutFwJD_0Cb3t6fddNg6w,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker (Red)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 896, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:25.02Z", + "ThumbnailImage": "5rgodebtv8essp0sxgveqp7fd.png" + }, + { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,JS7aa4QSUUOpUYPqRZEb5g,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker (Orange)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 893, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:20.673Z", + "ThumbnailImage": "au0r6ubbl0fyr6xi7sqch0b59.png" + }, + { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,rwojzpr0E0ylG6_Vv_MVaQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Windbreaker (Purple)", + "Tooltip": "Breakdance inspired colorway", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2065, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:18.637Z", + "ThumbnailImage": "5aqX6fFXKkulI-FwAVm9Kw.png" + }, + { + "AvatarItemDesc": "akAhnN0cFkecj8q3spixkw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1083, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-12T01:24:56.753Z", + "ThumbnailImage": "c0aetz7tzn1vg6rqcopztwq0i.png" + }, + { + "AvatarItemDesc": "ASHnWS0h9kOJhbOUwxWKFQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tutorial Gown (Bachelor)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1099, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:25.7Z", + "ThumbnailImage": "37ulwbdd8vskdogo0hv1kascn.png" + }, + { + "AvatarItemDesc": "ASHnWS0h9kOJhbOUwxWKFQ,U2ZbHn8WJEySUXVpzAY6ig,6nmHu9zj8k-tEz0tBHblnQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teacher's Gown (Level 1)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1256, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:54.017Z", + "ThumbnailImage": "2wia57rfapa2pl00ngn2vtv2t.png" + }, + { + "AvatarItemDesc": "awOFE0_GSECr8GBNBo6a_w,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Giraffe)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1072, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:26:03.667Z", + "ThumbnailImage": "6o6o3vze30qmak32kdlkeus4l.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerful Dress (Navy)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 142, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3josy4gpalnfb4bgbv15krqjb.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,05K7dmjigkCByO2ufw9jtw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerful Dress (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1598, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:05.507Z", + "ThumbnailImage": "8z3e22ju1mrd78t30pzbm5z5l.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,1773d5d8-4714-4721-b30c-97e25d6f2a5a,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerful Dress (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 433, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:01.437Z", + "ThumbnailImage": "aseuozf59hxlehklnyniqbre9.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerful Dress (Purple)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 431, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:39:59.143Z", + "ThumbnailImage": "bwdc3w9brd906m9tlr3iwesz3.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,faedf215-289b-40f7-90cc-f5b98517d133,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerful Dress (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 432, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:00.573Z", + "ThumbnailImage": "1hw2ja5gln6hu18squbodnpaa.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,PLRhiOhhb0KhatFH7f3pwA,F9vYkdcuGUOSGEg0wpQt2Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Spring Dress (Orange)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1367, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-01T19:09:50.323Z", + "ThumbnailImage": "eppwkjhvfbuczv31sgbty26v0.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,qoVZuGa5NkOmyfikHjDhXw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerful Dress (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1600, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:12.043Z", + "ThumbnailImage": "cs5izn6ddok4ol512yitiw3cs.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,RwgnKTfMEkWrAp_OMGy__Q,F9vYkdcuGUOSGEg0wpQt2Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Spring Dress (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1368, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-01T19:09:56.04Z", + "ThumbnailImage": "8q1o0y04vs1ve8bpxz6iqkwui.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yDZFr27Zq0-JH-EsEsxG2g,F9vYkdcuGUOSGEg0wpQt2Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Spring Dress (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1366, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-01T19:09:44.613Z", + "ThumbnailImage": "eum5bolzoy8k5w31k9j0rtzcj.png" + }, + { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yOw1WqEN0EWqR9t53EsQpw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerful Dress (White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1599, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:08.6Z", + "ThumbnailImage": "56blq2erf400cehs8x4zcnwrf.png" + }, + { + "AvatarItemDesc": "b07a3964-7a53-4467-aa85-ec19cc27a57b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alien Head Earrings", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2385, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:26.503Z", + "ThumbnailImage": "0n2uuqp3f7gj3z8o0ynlzl3et.png" + }, + { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mechanic Overalls (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1347, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:45.03Z", + "ThumbnailImage": "bqm1574wf7rpdwjlok49b0p77.png" + }, + { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,EiGgN7uVukqoRE7UJcMLTw,H3OQDBef1UaacSD52p8Hdw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mechanic Overalls (Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1350, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:51:02.18Z", + "ThumbnailImage": "8l97dx6qhjdo9t7s2dpksymii.png" + }, + { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,iokdlBfjuEuAwqIMOQwxdA,H3OQDBef1UaacSD52p8Hdw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mechanic Overalls (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1348, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:51.42Z", + "ThumbnailImage": "5ka8fpkswhsrqk4yzqu9zq6hx.png" + }, + { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,nKauYAyWhkm2AMHFyC-fLg,H3OQDBef1UaacSD52p8Hdw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mechanic Overalls (Orange)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1349, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:57.577Z", + "ThumbnailImage": "dvw88qyim2kmbtb852qiitri8.png" + }, + { + "AvatarItemDesc": "b0a2e988-9942-4c52-a714-f1bc12fa6290,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Rocks Shades (Tokyo Machine)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2731, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:33.437Z", + "ThumbnailImage": "EwmmD_7_NUeiFXLFKImuQw.png" + }, + { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Vest", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1761, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T16:19:21.817Z", + "ThumbnailImage": "11cf76c54n13whwtqa3rjs7s1.png" + }, + { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,1-_ssucgeEalgr6EDL3S9g,Ru4HN3stVUutQ9rUh7ro1g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Vest (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1817, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T19:13:59.127Z", + "ThumbnailImage": "2dhxtutyxumnzuwg5rz5nbm1l.png" + }, + { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,2eTBbHTkf0uxy9JqA507Hw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Vest (Steampunk)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2271, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-01T19:00:16.79Z", + "ThumbnailImage": "x5M_A1sHQE-nk0Uj7ghTzA.png" + }, + { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,cbn6vE0gDUOuklVhJv1vNA,Ru4HN3stVUutQ9rUh7ro1g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gunslinger Vest (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1816, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T19:13:57.003Z", + "ThumbnailImage": "2mqqtndrscn1090v5nnmhizyz.png" + }, + { + "AvatarItemDesc": "b148cb1e-df81-442f-aea6-ab1727aad00e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chunky Afro Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 990, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:04.43Z", + "ThumbnailImage": "3mpvrp2oqpvbugfnbb57ooj1m.png" + }, + { + "AvatarItemDesc": "b16768f0-ce8b-4844-96f1-e38d63f9c1fc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bucket Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1766, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T20:59:28.227Z", + "ThumbnailImage": "e7zfauqbveb04wiazlcnt3nna.png" + }, + { + "AvatarItemDesc": "b17591ba-3c2d-4309-ab01-b6743424e07e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bard's Hat", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1885, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-12T17:05:57.493Z", + "ThumbnailImage": "7ixk1u407fxtupt3m3sjujxlx.png" + }, + { + "AvatarItemDesc": "b17591ba-3c2d-4309-ab01-b6743424e07e,l9cF1s3B8EC6BGlQ4Tx1cg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bard's Hat (Shamrock)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2794, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:13.783Z", + "ThumbnailImage": "l1uILA2f4EKvZEBtGvSETQ.png" + }, + { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Shirt (Brown)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 363, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:27:03.613Z", + "ThumbnailImage": "6i5j2nqmud9i7j69mikjo4wjl.png" + }, + { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Shirt (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 404, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:29.89Z", + "ThumbnailImage": "8gpdgnc9rmf5fzvsp4sio5zla.png" + }, + { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,97938f4c-52b8-4c85-8575-856654666316,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Shirt (Gray)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 405, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:30.937Z", + "ThumbnailImage": "4qj5sy46am7e176dh6xnr2ejv.png" + }, + { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,cac27853-e2df-4d77-b3fd-af3bc0813f01,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Shirt (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 403, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T23:18:28.703Z", + "ThumbnailImage": "7q4pokzc6588ccgqdjft4wov4.png" + }, + { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,ugpS7o-ZxkCv7HAvhewZgw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Angler Shirt (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2520, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:31.607Z", + "ThumbnailImage": "Joz7a1NRQES_i5VXRjxiKg.png" + }, + { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Gloves (Triton)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 662, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-04T22:39:29.44Z", + "ThumbnailImage": "8yxna4s3e3firsdmmowshealh.png" + }, + { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,CahBzgN3D0y46AQsvGC14A,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Gloves (Leviathan)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 936, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:12.257Z", + "ThumbnailImage": "ael0gchmqiiy4xijypkebw5gy.png" + }, + { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,Su7kiW24d0KapNns96JoFQ,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Gloves (Kraken)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 935, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:11.337Z", + "ThumbnailImage": "4isq4kmfnatlmnrbk9ylp4ur2.png" + }, + { + "AvatarItemDesc": "b1ca1dc4-6867-48b6-a332-4efff06a5db1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cleric Gloves", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1891, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-26T19:21:10.55Z", + "ThumbnailImage": "6qgeth2im91d0g6kce2zm8k7h.png" + }, + { + "AvatarItemDesc": "b1ece775-b1c4-4c5b-b2bd-cd0542794dd1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jester Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2029, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:08:50.043Z", + "ThumbnailImage": "0sChD_Bp9Eq36jZRpwRRUw.png" + }, + { + "AvatarItemDesc": "b1ece775-b1c4-4c5b-b2bd-cd0542794dd1,g_jYTusUbU6W_6jHif-CKw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jester Shirt (Mardi Gras)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2747, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:11.43Z", + "ThumbnailImage": "YNqKRBfsS0CFwf6ZTMjyvw.png" + }, + { + "AvatarItemDesc": "b35aae1f-f5fb-4417-bb6c-4ddce4ec499d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bindings of Elseware*", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2302, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:44.82Z", + "ThumbnailImage": "hyRSoiE5ZUGnAC91bFgIIg.png" + }, + { + "AvatarItemDesc": "b35aae1f-f5fb-4417-bb6c-4ddce4ec499d,cfAfhzaNvkG7wGx0gkaRUg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bindings of Elseware (Shadowy Illusion)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2564, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:05:58.873Z", + "ThumbnailImage": "BA2wuggUAkyxEev61GWUYg.png" + }, + { + "AvatarItemDesc": "b37582a1-7904-4288-a47a-7a63a3cb28ae,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Soldier Helmet (Green)", + "Tooltip": "Unlocked during Xbox launch", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1507, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-17T20:06:05.127Z", + "ThumbnailImage": "6t5em8ljarz9lnn8erh5ndc1b.png" + }, + { + "AvatarItemDesc": "b3949221-9416-4afe-8777-440f01ec4c1c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Class of 2020 Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1720, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:12:08.823Z", + "ThumbnailImage": "5ckirjfll5885ahrmczp8ry2l.png" + }, + { + "AvatarItemDesc": "b3949221-9416-4afe-8777-440f01ec4c1c,oMz5rMzCxkiw9690ZkvlGw,gW2zFv0sFEmiodfw8p9P-Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Early Access Tee", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1890, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-26T19:21:00.77Z", + "ThumbnailImage": "dhfwe25d3r0oxtup5xd695cyf.png" + }, + { + "AvatarItemDesc": "b3949221-9416-4afe-8777-440f01ec4c1c,zlBPAWMbOE2RuKoIy1Ps8Q,UwQiLub0-kqf4dNvQc-R0A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Con Shirt (TFO)", + "Tooltip": "", + "Rarity": 50, + "TagList": "reccon", + "AvatarItemId": 1903, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-08T21:31:04.757Z", + "ThumbnailImage": "7c0xvai9f3e3orr592s3eq4da.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (Black) ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1772, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:07.113Z", + "ThumbnailImage": "2jsxx5bos2r2jual185q0pgcu.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,Aex0Zh1RQ0u9oTDFF1cFIg,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (Yellow)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1781, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:35.683Z", + "ThumbnailImage": "9yt8aczo24n68e4zolsg3k0cs.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,El0s9F6cfkywcKOkqwbJtQ,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (Grey)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1779, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:31.93Z", + "ThumbnailImage": "9d8ocr6t26ofb3frswgln8ghp.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,J9cK9BKtHUinG-DwAoPi3g,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (Dreen)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1774, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:22.947Z", + "ThumbnailImage": "97wov16x2whj90451paeq5wr9.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,logtSrZSTUqwEmBw9i0qjA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec-On T-Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2685, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-12T21:02:00.57Z", + "ThumbnailImage": "efVnvXfV-0-RgOpfnNi_bQ.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,N0fBxjrCekO-HUqmc3MufQ,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1775, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:24.703Z", + "ThumbnailImage": "9r42wuf4n5jgtidnopmbsho11.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,oNoEl-nDqk-HLsfz1538oA,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1776, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:26.197Z", + "ThumbnailImage": "0u6tuseoo4aelelolic3o693u.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,P49CJ5imfEuxH1rryrfFRA,nbgwLqKBnUyvieWX0i47dg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scrubs (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2018, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:41:12.74Z", + "ThumbnailImage": "bCXA7saMUUuD_C4_Qy0t5w.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,PkMkvHzXek-yKyqJESZ3tw,nbgwLqKBnUyvieWX0i47dg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scrubs (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2017, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-26T17:41:10.797Z", + "ThumbnailImage": "6JmHNL-jsE-M9URUaMcvuA.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,pQ_3mZI7yEaxMw9n_Fr4Sg,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (Pink)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1778, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:30.05Z", + "ThumbnailImage": "1hb9mgxu2zrau3k0gdj4psvsv.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,Ris_kNVcgU-EK4SoMckC2Q,74J7skzs9EaIq09bZArjiQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Reclympics Shirt 2021", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1823, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-04T16:12:53.797Z", + "ThumbnailImage": "0xxjg720qofphga2otdghooga.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,TpFWTdEW2kqtpvc0sPv-dw,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (Purple)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1777, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:28.097Z", + "ThumbnailImage": "avz1q0x4dp2ujj3k9yzfvcufz.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,-VF3K4miGE28LxMgqVehRQ,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1773, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:21.227Z", + "ThumbnailImage": "aj0epqqoal6o3lrbfmlvdjvrw.png" + }, + { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,vxZVeH2b_E6XlqyqCW0hBA,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pocket Tee (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1780, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:33.673Z", + "ThumbnailImage": "2q0u4aonxjqnyx4hulnj3xvcj.png" + }, + { + "AvatarItemDesc": "b4c93141-f387-4e42-9b04-12b7a97c9416,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Star Glasses (Popstar Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2780, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:44.077Z", + "ThumbnailImage": "bsf3ipTBlUC2I-jUSFPw9Q.png" + }, + { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cozy Winter Coat (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2587, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:43:57.23Z", + "ThumbnailImage": "J2d0ZFyToECidRm1EHVhLA.png" + }, + { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,B3t4hjeUeEyT17nfbZgxAQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Red Cozy Winter Coat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2591, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:09.327Z", + "ThumbnailImage": "PhvdPQnEikmC4BSDxeHfeA.png" + }, + { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,Grr0Jm6r9kuiZKvnLPz9tQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Cozy Winter Coat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2593, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:18.21Z", + "ThumbnailImage": "5_Is3y0bw0-_CDD5izOqfQ.png" + }, + { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,IEnB86oIL0KDa-zzcxhjwg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Black Cozy Winter Coat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2588, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:00.303Z", + "ThumbnailImage": "tWrlF7BJxU-nPUjBYNlJxw.png" + }, + { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,nloukujf9kSwK1T2HiwJwg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cozy Winter Coat (Pastel Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2589, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:03.207Z", + "ThumbnailImage": "doAF6sFqkEWtgY2AjjfQKg.png" + }, + { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,xLcqKXKH-0Gw1lrSSQe-Ag", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cozy Winter Coat (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2590, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:06.193Z", + "ThumbnailImage": "t0ntXj7xqUqXyp7YAxwnGg.png" + }, + { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,ZzJxs2oz6UuXCX5rGvLHFQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "White Cozy Winter Coat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2592, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:12.357Z", + "ThumbnailImage": "m7LntT7DgUy0q0ALmr_4sA.png" + }, + { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Crown", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1470, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-24T21:34:18.233Z", + "ThumbnailImage": "cls959ibdrc0xabl1rbe41fux.png" + }, + { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,iGhiA5wU8kG3NH6P9NZvGg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Crown (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2104, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:16.06Z", + "ThumbnailImage": "vXnwcxkJbE-7MComJenMwQ.png" + }, + { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,-K940hWJXkee1HDrlurepg,ItJCR1utoU6i-syjJpxQqw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Crown (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2011, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-20T01:07:20.963Z", + "ThumbnailImage": "aiplwveih9o7f5q4ok7hr4a2t.png" + }, + { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,SdSjmCkq-ECoboR2PwxJfQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Crown (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2103, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:15.06Z", + "ThumbnailImage": "7ejV0XPkWEuQwpYQ8UBwQg.png" + }, + { + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lumberjack Cap (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 64, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "d7reyk0b2dqeh51xmv3wcihld.png" + }, + { + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,7amHTgEv-UOJSGl0ofo4mw,lb5tuJOqnUKp9prjjlgHmA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lumberjack Cap (Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 829, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-23T21:21:48.03Z", + "ThumbnailImage": "cjqz06mkg3l90vu87fnh371yt.png" + }, + { + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,cKHAetNcgUOxFfDkAPPF9w,lb5tuJOqnUKp9prjjlgHmA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lumberjack Cap (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 830, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-23T21:21:49.72Z", + "ThumbnailImage": "drjic5tpew7fpjaelvkqowvgg.png" + }, + { + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soccer Shirt (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 509, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:35.953Z", + "ThumbnailImage": "2vqxpnzd5r6nuyacqrsrw5loh.png" + }, + { + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,mtR99SoHQ0aJLJfXPsKW1w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soccer Shirt (Purple)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2317, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:30.497Z", + "ThumbnailImage": "mJIUWEd9WkWLnKurCXXFEA.png" + }, + { + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,OnQeVxdstkS2zGxLBAuM3Q,i8bvbGAKREmAEbjKO-geOQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soccer Shirt (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 778, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:08:02.593Z", + "ThumbnailImage": "9bshjyb8x1qk9xkany8c3ngke.png" + }, + { + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,-v3ddzUMF0aKxJR82SDevw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soccer Shirt (Orange)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2316, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:26.973Z", + "ThumbnailImage": "rRsmZUSOC0q9ITRtTz45Zw.png" + }, + { + "AvatarItemDesc": "b66cb611-c079-42f0-ae04-6f51384dbe90,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Penguin Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2603, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:44:46.507Z", + "ThumbnailImage": "zzqrxKCL00W27uhhyfZuqA.png" + }, + { + "AvatarItemDesc": "b6cee099-5840-401a-9d74-0b80ff71ee69,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Feather Boa (Mardi Gras)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2023, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-02T18:10:57.967Z", + "ThumbnailImage": "Kv11sGN1q0uGTiTIyHPeTA.png" + }, + { + "AvatarItemDesc": "b6cee099-5840-401a-9d74-0b80ff71ee69,an_Z5HMFjkaHyHoZZV4AFA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Feather Boa (Rainbow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2171, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:19.22Z", + "ThumbnailImage": "rwu9Nb6pTU6Pjd3orGYWOQ.png" + }, + { + "AvatarItemDesc": "b6d10952-d492-45e5-b54c-de3ab138be0b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hot Dog Hat (Mustard)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2377, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:39.137Z", + "ThumbnailImage": "Vv4sv_u_EU2qi4FLQuoCmg.png" + }, + { + "AvatarItemDesc": "b6d10952-d492-45e5-b54c-de3ab138be0b,2KCpbel8JkaeAGQRgvpt2w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hot Dog Hat (Ketchup)", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 2378, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:41.017Z", + "ThumbnailImage": "N2RqYRINKU-RJEE5tp5BNg.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Black)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 752, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T18:47:24.153Z", + "ThumbnailImage": "964z64p0djst7okp5yy4qnb5n.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,3a1oW3_MY0e4lDN2V1X4ig,za8Mz14Ww0KtC6wavUPXdg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Nonbinary Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1771, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:00:59.023Z", + "ThumbnailImage": "7px3ud7g3dce8g0qtfmbzy9ar.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,9jB8U3yxjE6hanEZgMdvtA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - AAPI (AAPI Heritage Month)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2202, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-05T16:53:02.1Z", + "ThumbnailImage": "6TEq-Xvb8kirly5K2g96vg.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,D_Xmo0rOzkS-kgq1CYXt3g,tnCJp2eDI0SwjVfJMhk3LQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Trans Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1458, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-03T01:07:24.193Z", + "ThumbnailImage": "9lq1a36dbi2qvm0v5g0dci5ne.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,DIeasJUIj0KNetAzPzuIrg,o3Q2gADhh06dgaipkkdMsA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Bi Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1757, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T01:40:15.157Z", + "ThumbnailImage": "8z6u9864bufzxe9myyoisnl28.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,EkA09Hj2m0u3c5STynn3Bw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - ANAM (Autism & Neurodiversity Awareness Month)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2887, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:13:07.047Z", + "ThumbnailImage": "k4xHpFAnkEm0feaYPcjMzQ.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,G6Udm6kMdE28vmRY5KPanA,Fw79pqDPP0C8H07AnTY-Vg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Lesbian Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1756, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T01:40:11.443Z", + "ThumbnailImage": "aa9c59vzcixu27kaoazqzpbsd.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,Ist3SXFwKkCCvxirWLLjng", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Video Partner Hoodie", + "Tooltip": "", + "Rarity": -1, + "TagList": "", + "AvatarItemId": 2153, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-30T00:16:21.127Z", + "ThumbnailImage": "9ZVUjjO21U2ujrZzoNX9SA.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,JTgXKeT7w0K2Mw4Jk2HCqg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Grey)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 796, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:26.057Z", + "ThumbnailImage": "14fpnws4q76d3svlzzp3ogr29.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,kBaeiw5WG0OHOIsric74Ag", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - WHM (Women's History Month)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2824, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:58.81Z", + "ThumbnailImage": "iegw0q7VnkCblb2xmJZiRQ.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LovycnPHoUiP_N9w7BzsnA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Juneteenth)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2232, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:35:08.773Z", + "ThumbnailImage": "7Z-IZ-6LvUypmMCX8IwHSQ.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LuYelZY8NkqmOp1pnxPXBg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Yellow)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1612, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:19:23.037Z", + "ThumbnailImage": "7ngrs0bphj486q6105peoygyq.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,MfF0wizDjUa7RUE-AVJpvA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Intersex Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2194, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:33.103Z", + "ThumbnailImage": "PO7jrliur0CVizm0SH3TbA.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,mvMeyStxGUGlNLSYNeSubQ,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Purple)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 787, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:25:22.28Z", + "ThumbnailImage": "9d2j5ikkdbngspuc7tki5lecu.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,-Nf7WM2TeEKujB637h3tRA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (White - Starter Pack)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 875, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:34Z", + "ThumbnailImage": "2xo1n1x3mq2iry1ptnih904dt.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,PIwziHk1BUuYkAf6kuK6wA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - BHM (Black History Month)\t", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2059, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-16T19:03:52.687Z", + "ThumbnailImage": "mNgon98gpkamzdOKrEwBhQ.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,PRLBrEEZhUumm3VnYVJP6Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Aromantic Pride)\t", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2192, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:26.157Z", + "ThumbnailImage": "3qt9ioRkZ0ClPXKVL2YMvw.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,rNhOQoP3XkOBHV28ze2NpA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Orange)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 793, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:25:50.113Z", + "ThumbnailImage": "ccdrg5p5ytm15zierfd33d677.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,sf962XJ0tkis0svkMkZCXQ,4bI7QRvdnEansPkwx8Di9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Pan Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1791, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-08T01:17:55.75Z", + "ThumbnailImage": "arzqgzmg36st1ri623d76xhhx.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,sxUE0iOSZEmezm54T7xI3Q,tlpa7195x0CkmSjpR1RArQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Rainbow Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1457, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-03T01:07:18.743Z", + "ThumbnailImage": "dhqnvyh6gae90iy240h1b07t5.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,TEgugZRs80iJbhL87RdYwg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Pink)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 878, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:54.673Z", + "ThumbnailImage": "89cwe9sw6lx2jml1bc48d9io1.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,tm7Cnd3LzkqWHA1JMrgoeA,nbLr3c3lOkiWhNg9IYbt6Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Ace Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1770, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:00:50.67Z", + "ThumbnailImage": "5xxg31ft29j91d3n4nxdkw270.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,u_Gzj9Nro0WS48xKnH9few,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 786, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:25:19.247Z", + "ThumbnailImage": "d4jf3ogeghh4h207uwsgs53ay.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,Xt3Ndm8mC0qsLClPIbgwUw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie - Pride (Genderfluid Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2193, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:29.53Z", + "ThumbnailImage": "pJQjmPlV80Kjht3dBWJjEw.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,yM5xRrd9OkmDGyQddwOP6g,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Red)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 876, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:37.5Z", + "ThumbnailImage": "6w9zh5x30uv01aj0rnudzyicy.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,ytmSzjhCr0Sm58MSNbwJUA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Green)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 877, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:39.11Z", + "ThumbnailImage": "81kofnq5cb3fvgyozz15k1ro0.png" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,Z10TTlOeW0mumezbqXKGzA,Ht0WRvpguUaLZ1tigCzCMA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Hoodie (Gold)", + "Tooltip": "For earning $100", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1809, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:12:33.223Z", + "ThumbnailImage": "5yo24l49i1ul66r6i2yec4ggz.png" + }, + { + "AvatarItemDesc": "b73ae23b-c911-4b09-a803-40999bdef6b8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cleric Headpiece", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1892, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-26T19:21:15.44Z", + "ThumbnailImage": "2yzkfucefna1jy3vuypzb7b3y.png" + }, + { + "AvatarItemDesc": "b74ef8c3-405a-4d68-a2bf-01579a9cc397,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mecha Helm (First Release)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1910, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-22T18:04:03.083Z", + "ThumbnailImage": "3clewgmvjgao6vqaxfjuzx41z.png" + }, + { + "AvatarItemDesc": "b772a5a9-dd79-43e4-8d95-f965d81bed8d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Kevin the Goblin Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1916, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-27T20:19:16.56Z", + "ThumbnailImage": "084qi740gtrdi1jyi3yjt5q6r.png" + }, + { + "AvatarItemDesc": "b795c631-f075-4d32-ac87-c732b36cb932,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Light-Up Necklace", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 1279, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T21:40:21.137Z", + "ThumbnailImage": "3faagp8a1v4tthau00hha26mx.png" + }, + { + "AvatarItemDesc": "b79a6f2c-d960-4d8a-b05f-24e818ec5f60,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NBA Headband", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2119, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:38.38Z", + "ThumbnailImage": "hVhS_lAUy0O3ga-alhshaQ.png" + }, + { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Hair Hat (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2239, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-14T16:33:26.87Z", + "ThumbnailImage": "6Wo-wGbct0y9F6OdVvsZog.png" + }, + { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,0WW04NMMfU2LLahCq0jQ6Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Hair Hat (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2555, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-31T21:10:45.673Z", + "ThumbnailImage": "gK3kKpiWpkeCTN3muHzInw.png" + }, + { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,4kYWnAwZo0SDZFmiU8jJwg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Hair Hat (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2556, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-31T21:10:48.333Z", + "ThumbnailImage": "HPGiZzkfbUagfHZSMVdpIQ.png" + }, + { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,YfRfaC49J0yW0wnSJf5DwA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Hair Hat (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2557, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-31T21:10:50.717Z", + "ThumbnailImage": "5VAj7sHGqkWRLz4ktf2ibQ.png" + }, + { + "AvatarItemDesc": "b84f5e9e-11fc-424d-ad39-86901edb9edc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Demon Jacket", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1525, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T01:19:43.187Z", + "ThumbnailImage": "badoqabz6dkrchkzj2vkx5fxy.png" + }, + { + "AvatarItemDesc": "b861e5f3-fc6d-43b3-9861-c1b45cb493a8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bishop Hair", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 74, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "a1hubxyh2x781ngkvrnl6q4r2.png" + }, + { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Visor (Nova)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 102, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0lm206mtws500pk9e4v0zaxuv.png" + }, + { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,FFIpxInE-EKbk2GY-pIkyg,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Visor (Nebula)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 908, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:41.317Z", + "ThumbnailImage": "c9qgvf1jfrdwzsjud14bqa9pp.png" + }, + { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,SXG9rdEkxkOR31Nk0aTOww,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Visor (Quasar)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 909, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:42.68Z", + "ThumbnailImage": "av1v53eoyk53w8zi6bwd633xb.png" + }, + { + "AvatarItemDesc": "b8e485d4-b5c2-480e-908c-d9b500375759,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hearing Aids (Cochlear Implant - Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2881, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:54.44Z", + "ThumbnailImage": "6g30dvwaavnpkdqlzdb6czfja.png" + }, + { + "AvatarItemDesc": "b8e485d4-b5c2-480e-908c-d9b500375759,7ZRNVpxhWk-j8R3oj0oVXg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hearing Aids (Cochlear Implant - Gray)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2883, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:58.033Z", + "ThumbnailImage": "bmepd5uq48h51oc7xxq9kepf2.png" + }, + { + "AvatarItemDesc": "b8e485d4-b5c2-480e-908c-d9b500375759,8WJI7RAuaEy4KvQiQhoKBw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hearing Aids (Cochlear Implant - Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2882, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:56.3Z", + "ThumbnailImage": "3vu86qw9p3ikkjm0hx774naxc.png" + }, + { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boxing Gloves (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 269, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "a39t7yom90yxeiwitw6n8iohp.png" + }, + { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boxing Gloves (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 438, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:07.903Z", + "ThumbnailImage": "3tg5nlsq7otflej53cfartbv3.png" + }, + { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,rzUd1IMTKUmW0HeMPSIOBQ,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boxing Gloves (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 932, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:08.303Z", + "ThumbnailImage": "0to9e0lty6offdt6cnxeq1qpk.png" + }, + { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2001, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:33.217Z", + "ThumbnailImage": "e6ik8yccgzd9kcci799wrss8n.png" + }, + { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,EjNmQJBRnUet_ovEQ3HnDA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Cape (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2407, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:04.873Z", + "ThumbnailImage": "FTP3W6-lVEm0dHlsJU-OAA.png" + }, + { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,mO5wjf7_cEWNCHFR6ymGxA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Cape (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2205, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-05T16:53:12.703Z", + "ThumbnailImage": "EsJbgLpY9E2nOTvBpQupHQ.png" + }, + { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,oy67Rd9BskuB8yloqSv0Jw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Cape (Green)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2532, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:42:06.387Z", + "ThumbnailImage": "8__P61NSO0yRenF0XuCZVQ.png" + }, + { + "AvatarItemDesc": "b95678aa-351a-4929-8a0e-0274a183eb18,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Formal Necklace (Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1269, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:15:51.723Z", + "ThumbnailImage": "5fwhywu2l5mxei877fhrhwhq1.png" + }, + { + "AvatarItemDesc": "b96426ec-093d-4bfe-95e1-b88489479198,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Gloves", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2408, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:07.293Z", + "ThumbnailImage": "3e_aTt0gJUOLEV5MPnaBFA.png" + }, + { + "AvatarItemDesc": "b96426ec-093d-4bfe-95e1-b88489479198,agkPLQG_Mkmqf3WkDaFaWA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Gloves (Blue)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2409, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:09.313Z", + "ThumbnailImage": "0seg4oV6PE-6014-iF3t0Q.png" + }, + { + "AvatarItemDesc": "b96426ec-093d-4bfe-95e1-b88489479198,eBm7gRXomkivUz4Qg_ab8w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vigilante Gloves (White)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2410, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:11.41Z", + "ThumbnailImage": "hNQCYaLS6ES3S7MsMnbjYQ.png" + }, + { + "AvatarItemDesc": "b9987d0c-0cbf-41dc-9a9c-8fdb5165800e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Braided Beard", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2829, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-28T20:16:50.133Z", + "ThumbnailImage": "l6JiqgrjoU6Pe9nqG_A2Yw.png" + }, + { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boxing Helmet (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 43, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2c8gnq9h5a6jrn81ru4497q6i.png" + }, + { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boxing Helmet (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 430, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:39:57.563Z", + "ThumbnailImage": "cwp28pmovv17mrz6o4w62ejpa.png" + }, + { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,rzUd1IMTKUmW0HeMPSIOBQ,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boxing Helmet (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 918, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:52.71Z", + "ThumbnailImage": "0oaynqpwbmosrcxdikxyfnnm7.png" + }, + { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Cloak (Nightwatch)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1300, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-22T20:22:14.713Z", + "ThumbnailImage": "a1hz9fyly8abux6bynwxt67g6.png" + }, + { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,A7l6Q2clsk2XyKf62D3dHA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Cloak (Ironbound)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1618, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:20:02.627Z", + "ThumbnailImage": "8yf569v4byj5czra0vsottv9w.png" + }, + { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,pXrZhtzjV02_qvIQoWEFWA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Cloak (Hearthstone)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1616, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:19:57.95Z", + "ThumbnailImage": "90opi030nb86oj7r0um5a2iip.png" + }, + { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,VK4YBLXO10G2_aEl3ZQUGA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Cloak (Whiteout)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1617, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:20:00.67Z", + "ThumbnailImage": "dtxdon4brg2jmucu6b9sga2wh.png" + }, + { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Bracers (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 598, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-07T02:21:16.077Z", + "ThumbnailImage": "6ko9exiyd39fsdh9zptnhw8ba.png" + }, + { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,62bd5dda-08da-4528-83c1-f0ca3812dc6e,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Bracers (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 618, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:55.883Z", + "ThumbnailImage": "cxo3ckfyyp09zazkttzy0mjz4.png" + }, + { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,cdca593a-8840-4140-9145-fe962732040c,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Bracers (Brown)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 617, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:54.7Z", + "ThumbnailImage": "f0s9ro8uu6ibrjgn1bicm5vf8.png" + }, + { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,X3MkhL55Rk-0UK6h4dw0Eg,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scallywag Bracers (Crimson)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1104, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:44.81Z", + "ThumbnailImage": "00nybvpdwpb8lqxe6gkzo9y7x.png" + }, + { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Vest (Brown)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 168, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7p83fzhqxxbxo8vh3t9otc9e1.png" + }, + { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,192ba73d-6990-42da-8fe0-914c2a7181eb,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Vest (Black, Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 169, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "ev3mq9lpdefdivq6ayo76ak58.png" + }, + { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Vest (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 170, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2l9uggmozvea8gtpv9ytjfglp.png" + }, + { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,624c85e5-095a-48b6-85fb-c9bbade19a8d,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Vest (Cherry)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 171, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "digjcfruws97b6pe7orkqjunq.png" + }, + { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,BW5oLDA36EK9nLzTm7xViQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Vest (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2226, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:34:25.753Z", + "ThumbnailImage": "kxjJxDcwh0u3MPgS6XdCzA.png" + }, + { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,K5vPqD3BrEuODRDzFdC6Hw,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Vest (Black, Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 897, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:26.427Z", + "ThumbnailImage": "7bsroab0vzswtlgqzzd5mijnk.png" + }, + { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,ODOnI3iYoEKrlQfFabbvoQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Vest (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2225, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:34:11.7Z", + "ThumbnailImage": "RxR8AFtkNky4E7NUQNbCCQ.png" + }, + { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,teVKVbVEsEyqOSuRdqHQzA,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Vest (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 898, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:27.69Z", + "ThumbnailImage": "dg66aywux3nkmv6q4rwlf4uwy.png" + }, + { + "AvatarItemDesc": "ba96458f-84c3-42b7-acc0-e4d96f31ec84,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeletor Hood", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2581, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:43.04Z", + "ThumbnailImage": "SAPYQD9BqUWYP73yXsGZkg.png" + }, + { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Firefighter Helmet (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 51, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "agf9y9srlnxo896ku56vbgb2e.png" + }, + { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,4c26d1e7-2382-4478-b9c4-a068ed01a607,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Firefighter Helmet (Yellow)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 636, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:59.767Z", + "ThumbnailImage": "8mvts9qqf1v3kmd2l4mgbqjkx.png" + }, + { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,891d902e-3257-4a8c-9001-858046007997,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Firefighter Helmet (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 635, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:06:58.577Z", + "ThumbnailImage": "e4jk6yhqfbgqan7m5g4uz672n.png" + }, + { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,uahcQNh3IEiooPFq-SQi5w,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Firefighter Helmet (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2006, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-20T01:06:26.733Z", + "ThumbnailImage": "bnhtf2lj2d5khggvf485zqnxb.png" + }, + { + "AvatarItemDesc": "bb6ee7fa-7a31-4a16-a97e-be6eac42c595,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pioneer Dress", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2266, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:19.11Z", + "ThumbnailImage": "-__TuY2TCUu0TPihPV1SqQ.png" + }, + { + "AvatarItemDesc": "bb8602d4-f91f-4e35-9c88-1cdf3a04ff0a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bee Body", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1186, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:48.8Z", + "ThumbnailImage": "3w6s9ko5eqhqffltdu2xx937j.png" + }, + { + "AvatarItemDesc": "bc0a1c68-2eb5-4dde-a242-c4e19940699c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Monkey Backpack", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2679, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-05T20:28:29.663Z", + "ThumbnailImage": "KnhWwAmT6kOTA9oXrhmGMQ.png" + }, + { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Hat (Mastermind)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1381, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:54:54.81Z", + "ThumbnailImage": "7oh8ujd818cghfg99enk8x1d8.png" + }, + { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,4RH8_Z1mqU-JIVvx31wOsA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Hat (Outlaw)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1384, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:55:05.49Z", + "ThumbnailImage": "0bjo5i6bxmha24uhgq15xq71t.png" + }, + { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,QJSPgq2KXEOWNynY8uqQvA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Hat (Rogue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1383, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:55:01.76Z", + "ThumbnailImage": "2jtzah4nvld7knjcyuxcgml69.png" + }, + { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,RBRFHN8_rkuImbyDAfcHWw,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Hat (Spy)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1382, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-14T23:54:58.31Z", + "ThumbnailImage": "d0flbz3gdxvalp78ggvuj2x8p.png" + }, + { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rose Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2803, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:41.387Z", + "ThumbnailImage": "dWn_mPxj7kqBYwHjUkgI8w.png" + }, + { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,g8h43tuiN0CCifW9XbnFhQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Red Rose Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2806, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:47.12Z", + "ThumbnailImage": "myhvbSN3lEG_bApVoStEcA.png" + }, + { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,KUSVg33DSUK8aYXxJzOTdA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rose Hat (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2804, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:43.353Z", + "ThumbnailImage": "-PKF_-QCLkiKRwC3epBnZA.png" + }, + { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,P8w3-vcH5kaHaMEsFsKDjw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "White Rose Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2807, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:49.15Z", + "ThumbnailImage": "7TM3VMXrDUSYrIPIMneOSA.png" + }, + { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,sA0KRBVMikOo6BBfk0dC1g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blue Rose Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2805, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:45.277Z", + "ThumbnailImage": "FWfZEwnuIUSoM_qCk6O_ag.png" + }, + { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,T0PMM2iQqkCCMZoznrdkug", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Rose Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2808, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:51.223Z", + "ThumbnailImage": "kABVMxEknUWZArqSsxRLFg.png" + }, + { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Round Glasses", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 1221, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T23:28:26.46Z", + "ThumbnailImage": "emi0fu2fmbr4yo7ar29206bpi.png" + }, + { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,2pnfLqkYZ0-GbpeE8g0vVA,hGtyDIIWckGoRgCaSG6GBw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Round Glasses (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1915, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-22T18:04:29.153Z", + "ThumbnailImage": "conhirr4han3hgcb2cd702mbx.png" + }, + { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,t_y2xmFYLU2v6Jb6PX6v_g,4J9GPTKjjUOjyLVPmJyxWg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Round Glasses (Tortoiseshell)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1913, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-22T18:04:26.627Z", + "ThumbnailImage": "8i5jwartl3iqnxvt1wo4k0n5h.png" + }, + { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,vw2iLomK9keTfEWsqJrmhA,hGtyDIIWckGoRgCaSG6GBw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Round Glasses (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1914, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-22T18:04:27.9Z", + "ThumbnailImage": "99d174z75khtsr89u9oy0e8ac.png" + }, + { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Skater Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2910, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:52.177Z", + "ThumbnailImage": "0GJO9X6LHUCt29vIeqSe6A.png" + }, + { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,7IYi1twr6kO3xJiQo5CB4w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skater Fit (Checkerboard)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2914, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:32:02.63Z", + "ThumbnailImage": "a1kMIu6ND0CfZWLprY8CHw.png" + }, + { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,MVXeErsEE06KenrYaEm7Kg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blue Skater Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2911, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:54.91Z", + "ThumbnailImage": "SbLa3ck7dE2KhA1vlS01Hg.png" + }, + { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,qwQ8OV3E60WG_VEl9ECHoA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Green Skater Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2913, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:32:00.083Z", + "ThumbnailImage": "hvNdEmSkiUWJ0ctgd3uXlw.png" + }, + { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,y6NrbfS070WvASkKmPK-9Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Burgundy Skater Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2912, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:31:57.55Z", + "ThumbnailImage": "CuNGqjAKSU6GCIYRVZDJjQ.png" + }, + { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Puffer Vest ", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1675, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:05:38.057Z", + "ThumbnailImage": "d4c3lyj93p5m9r7r9lvo7z2br.png" + }, + { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,ZLaDizWS7kOmnHVGlLLJ-g,TUZ21v0C9UK9GPsfbRwpsw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flannel Vest", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2008, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-20T01:07:04.647Z", + "ThumbnailImage": "87cdvvpwz27kl5fqj4a53il38.png" + }, + { + "AvatarItemDesc": "beee4e09-9d93-4023-bc78-c5dc551a0ab8,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nutcracker Suit", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2567, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:05.237Z", + "ThumbnailImage": "6-Sz9f-O00uY5pWih9NC_w.png" + }, + { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winner's Medal (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 116, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "04xgdtlhrslfn0o41so5fnjoi.png" + }, + { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,ERnUPsyT6kuEnIRZF8zPwg,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winner's Medal (Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 907, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:40.003Z", + "ThumbnailImage": "8xn26bulod52740rbedbiwok2.png" + }, + { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,iaDL2im4lkCXUo0NWM-F3g,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winner's Medal (Bronze)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 906, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:38.753Z", + "ThumbnailImage": "4rm8hpw76k9han4s5k58jc9gc.png" + }, + { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Sash (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 692, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-31T00:52:16.843Z", + "ThumbnailImage": "10h045rqcvgang1sy8hxigaa2.png" + }, + { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,639f5e2c-6fbd-4ab4-aa10-7772e0932798,66cc536d-8cb5-4262-b7f0-49a33b97ea10,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Sash (Brown)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 707, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T21:12:55.89Z", + "ThumbnailImage": "e9pz1n0sr3t8a3p5llhnnh5l8.png" + }, + { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,67490e3b-0f9d-4bf8-84fb-54957b981c8c,66cc536d-8cb5-4262-b7f0-49a33b97ea10,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Sash (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 705, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T21:12:49.493Z", + "ThumbnailImage": "9bcfdhumbtjizrtjd0clcoxgy.png" + }, + { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,b520f3bc-599a-498c-8a4f-97cc25aa741f,66cc536d-8cb5-4262-b7f0-49a33b97ea10,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Sash (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 706, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T21:12:52.623Z", + "ThumbnailImage": "1reomg1o3fiimjissaj3cz8gd.png" + }, + { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowler Hat", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1192, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:04:16.573Z", + "ThumbnailImage": "7ftlnff1zjo948sndiuh1x636.png" + }, + { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,Dvwz4YRu_ES_rl94y6FNBA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowler Hat (Grey)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2207, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:22.27Z", + "ThumbnailImage": "w97a0JIhSkGDeHj7x9Tx8Q.png" + }, + { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,VyqdOGaUnEa8WzccUIn48w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowler Hat (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2208, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:24.243Z", + "ThumbnailImage": "wztK_Auwy0SJicMfhG1M-w.png" + }, + { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,YBpBFNAFGEunM5GX5lFxHg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowler Hat (Brown)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2206, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:19.96Z", + "ThumbnailImage": "Z8BRM2D_akKVUKgLncneKA.png" + }, + { + "AvatarItemDesc": "BJ2XrGvl40iIl28IbTfbKg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cheerful Ponytail", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 975, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-06T02:00:33.557Z", + "ThumbnailImage": "dj7x2xk5ttme8r1jpcmeebmjj.png" + }, + { + "AvatarItemDesc": "BqpRbr_T1kO_YJqB1787kA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cupid Quiver", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 971, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-04T21:17:24.287Z", + "ThumbnailImage": "d3mpn71rzkxnchgl4zc2c29lm.png" + }, + { + "AvatarItemDesc": "BR0mZKsKaE-t4R8CzEwuyg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Thrilling Cuff (Red) - Available again until 10/15", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 821, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-09T20:28:54.857Z", + "ThumbnailImage": "5zwxtidy5x8bl647kq837917l.png" + }, + { + "AvatarItemDesc": "BR0mZKsKaE-t4R8CzEwuyg,B1IotYmwbkiUAfdZiqzq8w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Thriller Wrists (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2327, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:54.34Z", + "ThumbnailImage": "FqT9BAyTM0qDBFE5vkveUA.png" + }, + { + "AvatarItemDesc": "BR0mZKsKaE-t4R8CzEwuyg,Q1knTl-n-EeAUwotFspNew,FHB5XHwNWka7aUt5km3LNg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Thrilling Cuff (Blue) - Available again until 10/15", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1530, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T01:20:29.873Z", + "ThumbnailImage": "5tmz1m7roox1cl2u7cf3bgrnc.png" + }, + { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shutter Shades (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 755, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T19:04:19.43Z", + "ThumbnailImage": "8p01g7rfkflo0g5se24b17jny.png" + }, + { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,1DQi3Wt8ukK2gWvl0zJnkw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shutter Shades (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2074, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:01:38.52Z", + "ThumbnailImage": "DePlu75lck-gLWofC8uKmg.png" + }, + { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,76CA_KCr806y1FA35m-YTg,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shutter Shades (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 910, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:43.88Z", + "ThumbnailImage": "c9ilqoetseg0h6s3twpchmkfp.png" + }, + { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,7B7vpnMTfkGLcMdHCZ_kWA,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shutter Shades (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 912, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:46.273Z", + "ThumbnailImage": "bo52eq6h1gjw33zb6kj234swy.png" + }, + { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,nO-YacKU1kmLjTFAAqNeYQ,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shutter Shades (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 911, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:45.083Z", + "ThumbnailImage": "ajtgswd058zwm4k13wu9gtw62.png" + }, + { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,u_H8YUV4MEGNGh5h9ckm_w,a3OlD7iI_EqurYq_RIQCvw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shutter Shades (Gold)", + "Tooltip": "For earning $1000", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1811, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:12:55.697Z", + "ThumbnailImage": "3bgeqvxk1ut8bz0ipoy471x1b.png" + }, + { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,ZpcM5H2Q1UCt0hh82nSu9w,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shutter Shades (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 913, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:47.477Z", + "ThumbnailImage": "1md3c8azai7phcdzdwuu83inx.png" + }, + { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Tunic (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 216, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2vybukcx6j4f40n6enwd6d9mh.png" + }, + { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Tunic (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 219, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "05hq8v4ju1q79njz45lwlti5v.png" + }, + { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,61VZkFjB402brzWm4UsftA,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Tunic (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1311, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:06:02.123Z", + "ThumbnailImage": "c2wrex5zlcm4q7bek6fuavelp.png" + }, + { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Tunic (Yellow)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 218, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5ifgufbqvr5jnazfx4cruhixk.png" + }, + { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9ad37173-e640-4b9e-a474-716d482b73d2,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Tunic (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 220, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "dkhkp10elyre43sbqzangzn0e.png" + }, + { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9b35ae52-febe-486a-8557-ec7190a9756e,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Tunic (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 217, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "azaisqtidm1kgo72k6ahsn245.png" + }, + { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,lgqLGi01o02ZFC9Xs5Ofdg,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Tunic (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1115, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:23.1Z", + "ThumbnailImage": "71zptzc6ptipah0zjqi4oj5ks.png" + }, + { + "AvatarItemDesc": "c161dc73-6ce3-49c4-8d15-45e6911f84e4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sea Captain Beard", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 111, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5whnrhprjsn09q0089w2ztby2.png" + }, + { + "AvatarItemDesc": "c2362f96-0a73-451b-9a85-46410eefd2ce,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chess Knight Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2920, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:15:35.31Z", + "ThumbnailImage": "2ZkEpc01eUGaW4hzohQxlw.png" + }, + { + "AvatarItemDesc": "c2d22328-b41a-4e53-9b1e-814e84b86d15,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Back Kite", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2893, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-24T17:08:22.34Z", + "ThumbnailImage": "HsPbJKuTm0WZI6Of5AnXQA.png" + }, + { + "AvatarItemDesc": "c2df65e0-2e85-4666-bea1-e8efa654b155,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gaia Clip (Sprout)*", + "Tooltip": "First stage of growth", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2915, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:32:05.443Z", + "ThumbnailImage": "QrS8jVr1HU2v-T0h7SMZgQ.png" + }, + { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Suit (Triton)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 661, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-04T22:39:28.143Z", + "ThumbnailImage": "2j7gd6uoyus6lyn8g1yvji91e.png" + }, + { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,CahBzgN3D0y46AQsvGC14A,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Suit (Leviathan)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 879, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:56.207Z", + "ThumbnailImage": "ejlghhpy20pr22d1be9zamyak.png" + }, + { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,Su7kiW24d0KapNns96JoFQ,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Deep Sea Diver Suit (Kraken)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 880, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:00.85Z", + "ThumbnailImage": "clcdiuwdbo9i9gcuvogdg36me.png" + }, + { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Holiday Elf Costume", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 1623, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:20:23.887Z", + "ThumbnailImage": "av5quwapam4mgd2prq9f64nkf.png" + }, + { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,8k3q_1d_-kSBzNLCl1HQhw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elf Shirt (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 2524, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:45.793Z", + "ThumbnailImage": "QWw5Yklbyk2cF85WzqFl-g.png" + }, + { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,Hd5IIMd7VUqndR_og0zxPg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elf Shirt (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 2526, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:52.263Z", + "ThumbnailImage": "tRXo9yhf00enptfGUMyqHQ.png" + }, + { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,i3pwJQoNDkO_68pQ_3Y0tw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elf Shirt (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 2525, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:48.947Z", + "ThumbnailImage": "A9c3qAoffkKGpt3NGDQj7Q.png" + }, + { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,YwossyXZNEm3OPWwXsyTAg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Elf Shirt (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 2527, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:55.773Z", + "ThumbnailImage": "lNu1DktQikamJcxDfb6XpQ.png" + }, + { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Twist (Beige)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2352, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:39.567Z", + "ThumbnailImage": "taLvR9OtMkuwOHCj9sa8Yw.png" + }, + { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,irw2uj4c2Eil0ndPCTqodQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Twist (Yellow)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2355, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:46.317Z", + "ThumbnailImage": "n71xleEsHEKKy_YJgkOBbQ.png" + }, + { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,jcG-vMduWEq14vo2sKYdWw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Twist (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2353, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:42.047Z", + "ThumbnailImage": "aTq6lg1RF0KsrotD8g8PVA.png" + }, + { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,pPZ3sDw3B06mKiYsAiAt9w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Twist (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2358, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:53.057Z", + "ThumbnailImage": "DSuLZADyxUa5EzpsYky2cg.png" + }, + { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,sO8e2epLrUud243Xi9odXg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Twist (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2357, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:50.81Z", + "ThumbnailImage": "8mn7hHezlUePzyx-HN48rg.png" + }, + { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,s-QTVT5eTECKHL9FnHFCAQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Twist (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2354, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:44.163Z", + "ThumbnailImage": "vkUv2dsvVEqj7J_oudnCnQ.png" + }, + { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,UnHAtXkd2kCdamzw6B3Mvg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Head Scarf Twist (Turquoise)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2356, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:48.62Z", + "ThumbnailImage": "9EfM-NBnuUud7oDeXW_t_w.png" + }, + { + "AvatarItemDesc": "c45ed7b8-99bd-4a4b-a9ff-e16edf5d7a18,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "High Pony Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 583, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-08T00:39:11.08Z", + "ThumbnailImage": "b8pcnjd03lqqw0jzj8ueug6d4.png" + }, + { + "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Resistance Trench Coat", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1680, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:33:36Z", + "ThumbnailImage": "ekvm0nia4j7hfolms572ortek.png" + }, + { + "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,pCEBoSP2pESLl9ih-J-55g,8SzXFoWD8k20cekFe6cLKg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Resistance Trench Coat (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1931, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-20T21:24:53.92Z", + "ThumbnailImage": "3iw1qqexx0h5n5ksh78jfpf4h.png" + }, + { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 759, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T19:04:24.58Z", + "ThumbnailImage": "b89jss76zlj72ms617ah00h3b.png" + }, + { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,apSQiQ1eO0mEzRsbugeu9w,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket (Green)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 874, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:32.747Z", + "ThumbnailImage": "6m42sjjil9iqwyjnymvy516a7.png" + }, + { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,iufpnteVCEiiZu_m-yPovQ,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket (Purple)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 871, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:28.937Z", + "ThumbnailImage": "4xku2dldqk5zfbjc6m9uw2v07.png" + }, + { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,VpqHNpPiY0CfRJEjRRM-mw,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket (Red)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 873, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:31.53Z", + "ThumbnailImage": "6mcbxskzp5pfwcnetac762guc.png" + }, + { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,Z1F9rjKqCE-Hd2-Ip5g3gA,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Letter Jacket (Black)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 872, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:30.217Z", + "ThumbnailImage": "eq8wyyutlzcjeneqryph1cfzk.png" + }, + { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Wings (Monarch)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1364, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-17T19:30:36.717Z", + "ThumbnailImage": "99uel8r3j0b7wyrporms60tok.png" + }, + { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,1qHXl55Qn0qSb1gAhr8Wjg,GlB_scM-5kuc4A5TmGe6Yw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Wings (Frontier Bluebottle)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1592, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-13T20:15:25.69Z", + "ThumbnailImage": "3kupnkadfcqst9wcpz79lvelg.png" + }, + { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,nODTglESMEC9tBY1k-LrsA,Do__oD53x0-dNtVeHsr4yA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Wings (Midnight Gossamer)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1593, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-13T20:15:33.76Z", + "ThumbnailImage": "4rdnvl3uo6e2xmx16jac16cg2.png" + }, + { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,PTqpWqqU9k--lNlRrmlVbA,yViVKOLHc0qLiPw9Oy1Obg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Wings (Candy Agrias)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1591, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-13T20:12:47.967Z", + "ThumbnailImage": "1kwmi22q1osg0qzg3f3truukf.png" + }, + { + "AvatarItemDesc": "c51780fd-9eb5-4bc0-9da0-34ab22d800df,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Glowstick Bracelet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2832, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:39.463Z", + "ThumbnailImage": "veozF1-boEi1gm3EPXGN2Q.png" + }, + { + "AvatarItemDesc": "c51877eb-efda-4a04-8394-092637e2a9bf,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Helmet (Buckateers)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2078, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:16.613Z", + "ThumbnailImage": "HfG5sUm4_EC1LqHmdMhF4Q.png" + }, + { + "AvatarItemDesc": "c51877eb-efda-4a04-8394-092637e2a9bf,cLKDeDSwd0OvF27bW_wBWA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Helmet (Yellow)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2716, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-02T20:39:08.917Z", + "ThumbnailImage": "l33ddE1N5kSh2m4vYm-lhw.png" + }, + { + "AvatarItemDesc": "c51877eb-efda-4a04-8394-092637e2a9bf,m4t_QKkV4EWTVEH8biQuEA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Helmet (Purple)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2714, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-02T20:39:03.57Z", + "ThumbnailImage": "hGYlm15Q8kS3Qwi0ugLJdw.png" + }, + { + "AvatarItemDesc": "c51877eb-efda-4a04-8394-092637e2a9bf,Z6o5ySTsmkmwAGslDH7k4w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Helmet (White)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2715, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-02T20:39:06.52Z", + "ThumbnailImage": "yVFjcpLMhUGC2rFphSKjxg.png" + }, + { + "AvatarItemDesc": "c5d70cb4-71dd-4fe4-b719-34fe2073c611,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(UGCTee_Shirt) ", + "Tooltip": "", + "Rarity": -1, + "TagList": "", + "AvatarItemId": 2184, + "IsBaseAvatarItem": true, + "CreatedAt": "2022-04-19T23:40:30.807Z", + "ThumbnailImage": "KXfytDhXzES2yco-rwqDSA.png" + }, + { + "AvatarItemDesc": "c65a94e6-7475-4030-8fcd-9ce25852ff7c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Arrow Through Head Hat", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2421, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-19T17:06:44.887Z", + "ThumbnailImage": "xIvzfECzA02itIo1Gx1FnQ.png" + }, + { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Umbrella Hat (Rainbow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2195, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-27T16:02:36.45Z", + "ThumbnailImage": "5K9fUPIZ1kaQahcIYrlZCA.png" + }, + { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,3L-AGgM50kCCz2V3UJtErA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Umbrella Hat (Ladybug)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2827, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-23T22:04:57.303Z", + "ThumbnailImage": "D69pyDco3kKsZJf_pN2FHg.png" + }, + { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,Ii2WNQxqtUeoIfGItUkVbQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Olden Umbrella Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2267, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-12T17:03:23.48Z", + "ThumbnailImage": "qcRLmi1ST0OCkd8H8YzgYw.png" + }, + { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,U-KT3nJlW0-JT8GSQuQXhg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Umbrella Hat (Mushroom)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2828, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-23T22:04:59.593Z", + "ThumbnailImage": "_ER1egNWrEmQDiXRt-SAmQ.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Black)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1008, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:33.66Z", + "ThumbnailImage": "dfc0t1w1r9z7p33f1562b1u2u.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,0809a5cf-a0f3-4614-9f98-71518524518a,8212812b-e7e7-4f6d-aa27-d1112af45473,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (SciFi)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 649, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:33.677Z", + "ThumbnailImage": "dftbch1qkdqq457hq33rhhz9h.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Grey)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 455, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:20.503Z", + "ThumbnailImage": "47orvw4rgb2dcq2uysth7k5kz.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,31jelNWFyk6FlWt4HyPAlw,9zGwmle_yk25V-KnC_PJEg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Hearts)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 968, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-01T22:13:07Z", + "ThumbnailImage": "7x53ntzd6jkkh7xk2h9lwypz0.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,3svqbYmGt0uyVWnx7vJNmw,iLo1YhFY-06HNWgM6gkB7g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Neighborly)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1902, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-08T21:30:59.203Z", + "ThumbnailImage": "f3b04h0f6kp8xvajy1fhvj8se.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Yellow)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 458, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:23.443Z", + "ThumbnailImage": "863juzzox17unyjhagvnbslfh.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 457, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:22.467Z", + "ThumbnailImage": "1eq0w8wx46ey92gsw096z68mj.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 456, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:21.503Z", + "ThumbnailImage": "9govgvnlf9gabvjvh5rckwqt2.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 454, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T22:02:19.483Z", + "ThumbnailImage": "e0ix17ip3n8ghjd6zp8tpdsz1.png" + }, + { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,W4a144so90eRzCojUnDowA,pHw_MghIYUazSFve6L237w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Business Tie (Candy Cane)", + "Tooltip": "", + "Rarity": 20, + "TagList": "holidays", + "AvatarItemId": 1251, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:28.347Z", + "ThumbnailImage": "22ppyftjkt057kgxnmn84jhax.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Glasses (Teal)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1005, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:29.3Z", + "ThumbnailImage": "56tk3ruae6anx7arnsnyk6k03.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,5H0I1anlkkuUYIM28_ZOlA,l_iJLV14q0eNgOsOI1u0pw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Glasses (Purple)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1879, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:52.253Z", + "ThumbnailImage": "9hfdcf1titio5gbw8o07wtk2x.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,9tZq7Xvfj0WhhLBAuAacxA,l_iJLV14q0eNgOsOI1u0pw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Glasses (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1878, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:49.843Z", + "ThumbnailImage": "ax893cneyhf2wbm98vxenyxxl.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,BqNgpjP7a0qmm3I3DNbKLA,l_iJLV14q0eNgOsOI1u0pw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Glasses (Yellow)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1880, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:54.387Z", + "ThumbnailImage": "6s6sp9bunolpihm8u9g9a538k.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,dRQI80Qn4E-kzhPJoW66MA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acetate Glasses (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2092, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:19.12Z", + "ThumbnailImage": "tD99sEOpYUyYZ-MFVKK3lQ.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,F1IV-zZ22kKtXkr2pHp_YQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acetate Glasses (Seafoam)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2090, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:12.727Z", + "ThumbnailImage": "h-G0dl2uBEKQJ4YBI0Sw4w.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,FuMUQFSnnU6awB-vPaeuZw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acetate Glasses (Bubble Gum)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2087, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:06.437Z", + "ThumbnailImage": "SYNkbSO4106ID65XGWzI2A.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,OBcu3bf1NEio_7t9smqGag", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acetate Glasses (Amber)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2089, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:08.66Z", + "ThumbnailImage": "1lmEHPGbEUmTeG7d_lJ6Uw.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,-OgDdlvL9EyzeiA50YY5kw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acetate Glasses (Charcoal)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2088, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:07.587Z", + "ThumbnailImage": "yt7jg1pEiUuJZMJuLmP55A.png" + }, + { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,Sad0HQX_Y0eYTx1qqgxKwQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Acetate Glasses (Sunrise)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2091, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-09T20:24:18.013Z", + "ThumbnailImage": "bV0WFKjHdUGPdgeJ9k_BZA.png" + }, + { + "AvatarItemDesc": "c7c85554-e118-4433-8d6b-b61a2971e045,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wrist Floaties", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2218, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-18T17:40:04.307Z", + "ThumbnailImage": "TgzWE1dBGkqvgHpdtFU2Uw.png" + }, + { + "AvatarItemDesc": "c855dcc3-96cb-470d-b159-d37a025a47d1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dutch Braid Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1200, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-10-23T21:05:41.83Z", + "ThumbnailImage": "dpd9st8mzzq7fb7gyrsby9mnh.png" + }, + { + "AvatarItemDesc": "c859a371-5d34-4e53-a96f-a6f7f3377aba,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero's Quiver", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1919, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-29T23:24:59.097Z", + "ThumbnailImage": "aqhhqebivzflcpyzyf70m1608.png" + }, + { + "AvatarItemDesc": "c859a371-5d34-4e53-a96f-a6f7f3377aba,aMOwLebcBU6SuPigtovUYg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Future Quiver", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2155, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-30T00:16:24.97Z", + "ThumbnailImage": "kNf3tlW1kEGHxU4EDJABMQ.png" + }, + { + "AvatarItemDesc": "c87239ca-a255-4b13-bbc5-1b38236fb4cc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Viking Helmet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 71, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "drqcby4q8dncgmtl1ndocn4kj.png" + }, + { + "AvatarItemDesc": "c8a97aeb-e8dc-40ba-b6bc-a7c7be907381,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Feathered Hair", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1170, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-30T20:20:27.193Z", + "ThumbnailImage": "7zgp3njcd8tpgi1f8j1679bwa.png" + }, + { + "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Shell Necklace", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1465, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-17T20:43:40.293Z", + "ThumbnailImage": "f44q2mf0bi5g9hcmaw85jm3j6.png" + }, + { + "AvatarItemDesc": "c8d2503e-5d43-4828-8d1d-40c64a577753,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Harmonica Necklace", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2383, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:55.587Z", + "ThumbnailImage": "I_TDOXrCVUe1V3HKxNvzAw.png" + }, + { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nineties Outfit (Da Bomb)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1569, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:34:09.613Z", + "ThumbnailImage": "6gfimjrsbl126ir365lqnmv8n.png" + }, + { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,6ZtRAbD-xUufWNLCrlrrCg,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nineties Outfit (Chill)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1920, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-29T23:25:09.373Z", + "ThumbnailImage": "eakv6vkwmx6lwc95u5k9tvb07.png" + }, + { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,ulOBBvFEJ0ioFA1qmL390A,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nineties Outfit (Aiight)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1568, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:34:07.373Z", + "ThumbnailImage": "1oix7x6qvyo7ps4kk7lftxq9j.png" + }, + { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,V4CVhCB8eU-nrfYgticVOA,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Nineties Outfit (Booyah)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1567, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:34:05.373Z", + "ThumbnailImage": "1czdhhr33h8ztob05qmon2562.png" + }, + { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Harness (Purple)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1147, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:02:00.27Z", + "ThumbnailImage": "2y48o7b7lqi2zpho283lmy51n.png" + }, + { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,AC3zfm38JEyBZWuXDh4Ukg,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Harness (Black)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1144, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:47.72Z", + "ThumbnailImage": "axtrgokadupvoy6xhgle28790.png" + }, + { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,dyEaPloE8kazWC7Zblv8uQ,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Harness (Yellow)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1142, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:38.727Z", + "ThumbnailImage": "c7vhxic6odjal3d4elovf6li9.png" + }, + { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,RfZNDPUok0WyQEa3Ko08ow,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Harness (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1143, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:43.127Z", + "ThumbnailImage": "8ke3ipxnfopjshcyjl3kc7mhu.png" + }, + { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,sX0ZZDcCUkyFSJISfvq0vg,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Harness (Orange)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1146, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:56.953Z", + "ThumbnailImage": "6xgus9q1g8stsgzfpsinr3li4.png" + }, + { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,TnEDe1QoMUCUdqPL_7CxTA,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Runner Harness (Green)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1145, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:51.767Z", + "ThumbnailImage": "5fi6lrfurv47a5jv8vcz3fmxv.png" + }, + { + "AvatarItemDesc": "caf1e229-9660-4abf-8074-f706709f4097,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Overalls", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1838, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-23T17:41:53.143Z", + "ThumbnailImage": "5aq3d9icptakxqxo8zitb57dn.png" + }, + { + "AvatarItemDesc": "cb061cf3-05fb-4494-be5e-091ddb080271,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pink Pop Rock Gloves", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2802, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:39.433Z", + "ThumbnailImage": "lA0R461bQ0ST6HUFBbaWCA.png" + }, + { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headphones", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1767, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T20:59:45.127Z", + "ThumbnailImage": "6a9x79mupkr34kq5jdirl6jkn.png" + }, + { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,0jnL66i2_kGjfzDBc8ZNSQ,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headphones (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1784, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:06:54.79Z", + "ThumbnailImage": "e0ivt24nvmykvpkg7ivnet274.png" + }, + { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,1Cbw9819NE-Fmv1NQIYKow,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headphones (Emissive, Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1786, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:06:57.873Z", + "ThumbnailImage": "a4nb7rytqdlq8f433qn0cieme.png" + }, + { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,5JQPQ2JBUkSFyXeYWvr4tA,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headphones (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1787, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:06:59.33Z", + "ThumbnailImage": "295vi4pw9jv6gz93ql5te9zw3.png" + }, + { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,9Zm7zOFBXkGRHrtp0JnaeA,oEsjaKTnKUq-Zgg4vm-EfA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headphones", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1789, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:07:04.197Z", + "ThumbnailImage": "92zq8rl5cyj5107xzihrijuss.png" + }, + { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,chqfCVxsEUuuUfp6qIadrg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headphones (Emissive, Blue)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 6613, + "IsBaseAvatarItem": false, + "CreatedAt": "2024-03-27T22:53:46.083Z", + "ThumbnailImage": "EkFVi2G8T02B9WxMBsz-hA.png" + }, + { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,omnSzDLD5ESCU6ndropzPQ,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headphones (Purple)", + "Tooltip": "RecCon 2021 exclusive", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1788, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:07:00.793Z", + "ThumbnailImage": "3agkplk68iooewqp7l2qckznf.png" + }, + { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,pY3RdcA2lU6H5rVXp8csfg,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headphones (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1785, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:06:56.357Z", + "ThumbnailImage": "2wipr83z3k4w166t8juiq5q2x.png" + }, + { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,VtsT6sKDYE24bAU-PKkIDQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headphones (S.)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "s", + "AvatarItemId": 2440, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:13.343Z", + "ThumbnailImage": "Mx131-oxr0WEOEUxE3QvYw.png" + }, + { + "AvatarItemDesc": "cbN5e-t_jEKa4hzir5JAxQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Traveler Shades", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 976, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-06T19:10:59.763Z", + "ThumbnailImage": "35n8yj17afa5u5gc5w40oz7de.png" + }, + { + "AvatarItemDesc": "cc30f7f7-6c12-4a96-acfd-11aec984c2e4,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Outlaw Vest", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2273, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-01T19:00:21.723Z", + "ThumbnailImage": "3zjJ5Sl4WkCfXJUE--1kTg.png" + }, + { + "AvatarItemDesc": "cc96f8a5-bc5b-4f89-83b7-ecd53905ada7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beard (Thick)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1007, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:32.317Z", + "ThumbnailImage": "amvkakyjtnfjh0sip52ftw6uk.png" + }, + { + "AvatarItemDesc": "cca7ab3d-5609-4700-92fd-3280fcea9b77,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Stache", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 110, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "e01eh3p4tl9606u818mhsjsx1.png" + }, + { + "AvatarItemDesc": "cd77c8ed-ab60-4f42-9bee-0141c7e3e626,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Horseshoe Necklace", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2247, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-22T16:53:02.803Z", + "ThumbnailImage": "5vzoo1Ope0ayRkVlKiJDZg.png" + }, + { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Goggles", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 765, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-04T20:13:41.81Z", + "ThumbnailImage": "0dl5ao69a8mzsn6jlyoei1qmd.png" + }, + { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,mZ2ASMrs80axStLp9g1enA,dGzmSibucEe7i1HD7lPcNQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Goggles (Silver)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1826, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:13:49.123Z", + "ThumbnailImage": "bu4jy4ulmhtqc9baxhaqtabrf.png" + }, + { + "AvatarItemDesc": "ce250e13-8137-4f62-9e52-2b1cebe7d0ad,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Hawk Hair", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 368, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:07.583Z", + "ThumbnailImage": "8zf6s3vsds90klh8gnb66rq7t.png" + }, + { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbershop Wrist (White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 388, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T20:29:00.637Z", + "ThumbnailImage": "24zf9tyok63h84td17n6zo3j5.png" + }, + { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,bb01b51e-a95f-441e-8c52-abc3aeed7145,f7c7d05f-5454-445a-af38-25f110bd204a,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbershop Wrist (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 416, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T00:16:24.513Z", + "ThumbnailImage": "06z3ng7dlwz8wcsxzadsfgslx.png" + }, + { + "AvatarItemDesc": "cea5c141-32d8-4dae-80d9-6fb74834a79c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Farmer Hat", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 367, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:05.087Z", + "ThumbnailImage": "dd3ww7dcaihkg0ags2cxuiyuz.png" + }, + { + "AvatarItemDesc": "cec9cfac-a45b-4edb-b26d-7453cc2bfaf2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Froggy Headband", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1286, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-06T22:36:57.383Z", + "ThumbnailImage": "8xe1257ru45z0b0867roht3eu.png" + }, + { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beam Sword (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2493, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:12.653Z", + "ThumbnailImage": "vskg3C6Z10uF_tdfqjarlA.png" + }, + { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,6WJKUeFNn0amYNvKMxijcw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beam Sword (Forbidden Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2496, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:20.997Z", + "ThumbnailImage": "7NNMQvKd_02w8L9dd1zvxA.png" + }, + { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,hNFdYhoJYk24MqU2GhQXlw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beam Sword (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2495, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:16.423Z", + "ThumbnailImage": "OCi7E50f4UqQMDGTuaWxCg.png" + }, + { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,OIfcKSEil0uHgT5baEFuOw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beam Sword (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2498, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:40.463Z", + "ThumbnailImage": "RuBjPNvqok6wRw6kkXH2GQ.png" + }, + { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,u0bLCSxcA0yDHC29XnLZOg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beam Sword (Science Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2494, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:14.583Z", + "ThumbnailImage": "OodKnoLtC0KlwWUbUQQJjQ.png" + }, + { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,VPvezA1A8UKt2qNoNRW9dg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beam Sword (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2497, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:38.117Z", + "ThumbnailImage": "ObiBqarizkuy3DPPXfx4dw.png" + }, + { + "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gathered Shirt (White)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1452, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-05-13T21:06:06.517Z", + "ThumbnailImage": "7z1qr4njpz9qbv9yoq0metngg.png" + }, + { + "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,8lwfuCRnU0291wqwgTwgRQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Riveter Shirt", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2083, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:26.423Z", + "ThumbnailImage": "sWYoOZIiY0KBXKZYOQ38zw.png" + }, + { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wrap Skirt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1894, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-26T19:21:43.507Z", + "ThumbnailImage": "2tkpst7269jmrhwyhewrh4t18.png" + }, + { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,B5WV1io6fkaAJdm4GbzM_Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Monarch Butterfly Wrap Skirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2837, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:52.02Z", + "ThumbnailImage": "78b4yr_R40a5Z_V4E85knw.png" + }, + { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,bNWm_2_VE0-4fdcF6S0aIA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Purple Butterfly Wrap Skirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2838, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:54.837Z", + "ThumbnailImage": "RGy9sbGCrkuEWsufq0SbUg.png" + }, + { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,q9Nganq9nUaV3zuvx9s3nQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Wrap Skirt (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2835, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:46.41Z", + "ThumbnailImage": "8VDdpE56dk-9OeT9sGG-dA.png" + }, + { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,y8yTimlV2EWhJMU-Ay9e8A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mint Butterfly Wrap Skirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2836, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:49.147Z", + "ThumbnailImage": "DWzLX_RUc0yrZ_icbuAJgA.png" + }, + { + "AvatarItemDesc": "cf360f73-b349-44e7-b5c1-f175a0f5e70d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belt of Elseware*", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2300, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:41.25Z", + "ThumbnailImage": "jhTnA-cti0mo7tgXVYQI3Q.png" + }, + { + "AvatarItemDesc": "cf360f73-b349-44e7-b5c1-f175a0f5e70d,zQgy7h3CO0a02zJfhA9wXA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belt of Elseware (Shadowy Illusion)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2562, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:05:55.107Z", + "ThumbnailImage": "bIvb2VlYREWBdsNT4kX_2Q.png" + }, + { + "AvatarItemDesc": "cfce35b4-d182-4505-a631-5a8e5011f550,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pink Pop Rock Earrings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2800, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:33.143Z", + "ThumbnailImage": "0ae49cxd8vs4g8bpfmd9l2uiv.png" + }, + { + "AvatarItemDesc": "cfe276b9-1bdf-4c41-9e86-1a0215c6c5a1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ascot", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1849, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:45:14.867Z", + "ThumbnailImage": "emuh8dfzl0l4dji5yae6lwwde.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Turkey)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 812, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-04T00:45:17.87Z", + "ThumbnailImage": "9mi7d2raqzh1s4hk8ya5hwblu.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,032pE8s9Ik-2CImFVDrSqg,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Flames, Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 888, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:13.987Z", + "ThumbnailImage": "2ib04jli4dwo8vm3pm3qmk46c.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,8xjU4GQ4OkaqGyad-ypwtw,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Flames, Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 813, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-04T00:45:20.027Z", + "ThumbnailImage": "ewgjupwpbyyvetn7svdbg3pka.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,FC8ZFBPt4EyTe7IYbv2Tpg,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Flames, Pink)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1161, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:03:06.113Z", + "ThumbnailImage": "ddse4tp99yydkypotqc8d4hpg.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,GDvaUU10-EKh3pKUQ9tnag,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Runway)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 890, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:16.66Z", + "ThumbnailImage": "1uwainjpb5gco3zqlgd0ofvkm.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,ghM-uFq5-0Ci38AOHa9zZA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Deadwood)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 814, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-04T00:45:22.09Z", + "ThumbnailImage": "2sj414tpbb69wiylcanfba7e7.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,Gtq8yRlt1UeFW8U-sc7FiA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Brooklyn)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 886, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:11.237Z", + "ThumbnailImage": "e46hwhpywl6eqefwj0lqe1mah.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,-k9_-2onrEG407or8t1RFw,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Hambone)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 811, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-04T00:45:13.487Z", + "ThumbnailImage": "5qcfg0698s80wf9u8vhxu0ykx.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,kLyM-6otSUy2ql5SEmnF9Q,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Spared)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 889, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:15.363Z", + "ThumbnailImage": "73mnfpvyaf58qnzfmjq9gdmfp.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,KqjQ1xRpokGLKp9GVN1EFA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Striker)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 884, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:07.82Z", + "ThumbnailImage": "apdshw5awntmir8e59mptvuwj.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,M4765UHzsUeNTwH-Pcxp1g,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Flames, Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 887, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:12.58Z", + "ThumbnailImage": "a8ua2rvt9gw4r4necvamkx7sz.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,XrSL-v2MbkK0md-FMOweOA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Sleeper)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 885, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:09.923Z", + "ThumbnailImage": "0t1wg2mro2gwc3d4flp6re5pk.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yrQCLXiqRUSwnuQRYX2Rsw,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Lily)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 883, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:06.113Z", + "ThumbnailImage": "3lw7exr10ocq54wlzytnktw7h.png" + }, + { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yZR5aX3gQ0WpRUT6cfK1cA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bowling Shirt (Split)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 882, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:04.33Z", + "ThumbnailImage": "f20xxqkrb5z55ft9ia6vtt5u4.png" + }, + { + "AvatarItemDesc": "CTcrvbo3OEepIV4oW8bx4w,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Receding Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 727, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-10T19:25:02.533Z", + "ThumbnailImage": "6eylc335jw4t1874pjzcwpudy.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room Shirt (Crew Neck, White)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1019, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:48.33Z", + "ThumbnailImage": "2theh2wmoj85n9yoigkwvalhv.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,14afd295-bcd0-4595-80dc-d477618b9ab9,2ee3944d-e9fb-4959-973e-570a7fc6cc57,a74e6c0d-1300-4928-9141-977a711b71c4", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "SFVRCC Promo Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 336, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-27T19:16:00.557Z", + "ThumbnailImage": "01iubrr0qyuaj94by5oj4xg3m.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,381a9f13-5b44-48e6-8a49-221422a963f5,0440f08f-ef1d-49d8-942b-523056e8bb45,9e782751-71c6-4208-87da-3a3cffa6a4f0", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "KO Skull Shirt (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 562, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-08T18:59:59.007Z", + "ThumbnailImage": "69q96bwnfq08dvg7z8i3423dd.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,4d52bbd6-ef74-45ae-a6c2-bde10ab8eb16,0440f08f-ef1d-49d8-942b-523056e8bb45,4ca3347a-dc87-412f-9eb1-799372e6fdd1", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Robo Logo Shirt (Pink)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 568, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:27.763Z", + "ThumbnailImage": "92ns2hqejpkog0560clmw3qjv.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,5864d23d-1a86-40a6-a52c-46ee670e4508,2ee3944d-e9fb-4959-973e-570a7fc6cc57,167ba0d4-4fac-4143-b5ae-1dbd8e02dc76", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Class of 2016 Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 192, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "au05f75bl482johdfb0fvjxjw.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,5e7a48ed-8f08-4990-a3ae-05722c9f59a8,0440f08f-ef1d-49d8-942b-523056e8bb45,237e0aa2-5911-4704-8d2a-d446ddd2d842", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "RECS Shirt (Green)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 578, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-29T01:25:03.627Z", + "ThumbnailImage": "afeyng27plnoeojutrac3dvvj.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,6kPcLZtEqU2Hs4yBFvc_sA,0440f08f-ef1d-49d8-942b-523056e8bb45,br9hzhDoZUmIevgl7SJkmg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Class of 2019 Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1280, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-06T22:36:11.71Z", + "ThumbnailImage": "1kt3y6b06rh6qdox2huzn0c6f.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,6kPcLZtEqU2Hs4yBFvc_sA,0440f08f-ef1d-49d8-942b-523056e8bb45,NxMm0sSBdUatynU16o0_Zw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Class of 2018 Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 965, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-01-22T23:43:30.803Z", + "ThumbnailImage": "58ls1z246ivu3x64bsenly4v9.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,815138e6-b0dc-459c-9538-20f5bbd37d6b,0440f08f-ef1d-49d8-942b-523056e8bb45,75162f12-44e7-499f-bc6c-9b0612e9164b", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Class of 2017 Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 594, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-01-11T18:54:38.84Z", + "ThumbnailImage": "dtf1nt1wah54rmo77jxzohkg6.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,815138e6-b0dc-459c-9538-20f5bbd37d6b,0440f08f-ef1d-49d8-942b-523056e8bb45,8f19d7f9-4f28-48ab-a1c5-d8f4f788514c", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hang In There Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 573, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:33.37Z", + "ThumbnailImage": "eu5x1j13qp2b88ukdkh7eax1v.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,922f229c-124f-4f07-b4e3-19138420ca19,2ee3944d-e9fb-4959-973e-570a7fc6cc57,ceb07e4f-50a9-4ed0-b50b-c59d92ba66b5", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Birthday Shirt (1st)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 362, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:27:02.577Z", + "ThumbnailImage": "e03fl2rpw0xd46aawjspj2i92.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,941c046e-4e95-49f8-a7d7-19071fcc3c94,0440f08f-ef1d-49d8-942b-523056e8bb45,6c395d04-2aa6-4a3e-8c2c-695932bc9736", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Squad Goals Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 570, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:29.89Z", + "ThumbnailImage": "85nms7ezyti5i4wp8l9azl90l.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,941c046e-4e95-49f8-a7d7-19071fcc3c94,0440f08f-ef1d-49d8-942b-523056e8bb45,703ff56b-560d-4ff4-8c63-d195e879a328", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alpaca Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 571, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:31.17Z", + "ThumbnailImage": "19u0u4m2c6wsyaocczd4hv6pd.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,95e4cc30-cb68-473d-a395-feadf5b51512,0440f08f-ef1d-49d8-942b-523056e8bb45,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room T-Shirt (Crew Neck, Orange)\t", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1749, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-30T01:35:18.397Z", + "ThumbnailImage": "67l6cwkqcs2tczds20bgj5rxy.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,95e4cc30-cb68-473d-a395-feadf5b51512,0440f08f-ef1d-49d8-942b-523056e8bb45,0c496f32-0011-4c4d-9778-59446f70c032", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Room T-Shirt (Crew Neck, Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 565, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:23.843Z", + "ThumbnailImage": "b1k80npgw88paq57cw285zhgv.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,ba6b6e1a-a09a-4ba0-9523-552869f03336,0440f08f-ef1d-49d8-942b-523056e8bb45,d461ca71-45c9-415e-8e09-ba93e8d73450", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Happy Tree Shirt (Blue, Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 623, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-04T17:02:17.85Z", + "ThumbnailImage": "26xtdwd2iy25ifneaxeal9nji.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,bda7a57e-5227-49f4-a119-e3f166604738,0440f08f-ef1d-49d8-942b-523056e8bb45,4ca3347a-dc87-412f-9eb1-799372e6fdd1", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Robo Logo Shirt (Blue)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 569, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:28.82Z", + "ThumbnailImage": "3tf587nd10cq6wv4dr1lk0r9p.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,bde08851-a9e4-4faa-8f04-a0a661672472,0440f08f-ef1d-49d8-942b-523056e8bb45,237e0aa2-5911-4704-8d2a-d446ddd2d842", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "RECS Shirt (White)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 566, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:25.407Z", + "ThumbnailImage": "bp1j53987blav97zjuw9die57.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,befa2f11-b9fd-457c-b1d5-9d82e90b70ce,0440f08f-ef1d-49d8-942b-523056e8bb45,770e7674-6f9b-41f8-b023-ae79738db0d3", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Unicorn Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 567, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:26.593Z", + "ThumbnailImage": "5fseh1kw7c5ej962dbiugr5ns.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,c0ff7719-c56a-4934-831b-506ad0f51cca,3259238f-4a9e-4e06-99de-6e7324fa0894,e38294cf-6279-4863-9aea-1a19aeaf8476", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Tag Alpha Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 561, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-08T18:59:57.037Z", + "ThumbnailImage": "2stqqgiaqmpxhz7kyzokxny1x.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,d3-sxPTJOk2rKo-Jgy3wvw,0440f08f-ef1d-49d8-942b-523056e8bb45,v0GsPFC7cU-_JNG4-ERfog", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Video Contest T-Shirt (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1246, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:36:17.53Z", + "ThumbnailImage": "971lp3mdb0j453fkjy0cckqud.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,dDLQbD9jtkOmw3PR5QJdfg,0440f08f-ef1d-49d8-942b-523056e8bb45,2tFUNn-4kkK6ICo_Zp065g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "No Laser Ham Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 735, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-30T19:15:56.44Z", + "ThumbnailImage": "2ad06ofz4ewso7onvvyfzerog.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,eb1vYTP_KEGQH-f33_whQg,0440f08f-ef1d-49d8-942b-523056e8bb45,t2do8WSejE-Y0aiEirKw9g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Video Contest Shirt Reward (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1840, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-02T21:11:21.973Z", + "ThumbnailImage": "84fxnyn9eqldulf6rpki5uuz7.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,evgH6VWUgkKJNews32hUxQ,0440f08f-ef1d-49d8-942b-523056e8bb45,v0GsPFC7cU-_JNG4-ERfog", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Video Contest Shirt Reward (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1841, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-02T21:11:24.327Z", + "ThumbnailImage": "8zhwxqyn2zie0fpfnaf18z5ve.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,f8635fe2-90bc-42c8-9bbe-3387b5157e18,2ee3944d-e9fb-4959-973e-570a7fc6cc57,49934059-cc45-46ce-8277-f96959e1f6ba", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Helix Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 337, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-27T19:16:03.177Z", + "ThumbnailImage": "eyc48682dl6k4obf67w3822z8.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,fe304452-b57b-45bc-9c1c-b85b70bcec12,0440f08f-ef1d-49d8-942b-523056e8bb45,6a007c73-d930-408a-93df-041a715e0dd4", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "KO Skull Shirt (Pink)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 572, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-16T22:47:32.313Z", + "ThumbnailImage": "dckjq7bzoptwnhc7299yac8sm.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,fwIgUAM_C0WhKds0O6DyPg,0440f08f-ef1d-49d8-942b-523056e8bb45,fJVxsLWuTESd-2xTCJPZ2w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Recollage Shirt (Pink, 2D Art Contest)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1130, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T21:13:28.293Z", + "ThumbnailImage": "a9mzwqn1pzmy5ptemp2sjk6r3.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,g4diCmk0wEmIKUVozk9tDA,0440f08f-ef1d-49d8-942b-523056e8bb45,nHg4Uifww0GEX15L27WonA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laser Graffiti Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 736, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-30T19:15:57.637Z", + "ThumbnailImage": "aqkgdsqeztkohtgzqy9eu3ee6.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,Ib_iMwvUm0CJ-t_Thwt77Q,0440f08f-ef1d-49d8-942b-523056e8bb45,d42UBeUO4UO3Q2F8IpeRbQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyber Trash Shirt (Yellow)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 733, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-30T19:15:53.3Z", + "ThumbnailImage": "70j1efvr06uolk29w6i31vbbq.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,jna5wcWK90WokJyoeJH1iw,0440f08f-ef1d-49d8-942b-523056e8bb45,0qh4mcxJH0Wsrb3nz8UeGw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Emerald Syndicate Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 732, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-30T19:15:51.207Z", + "ThumbnailImage": "4yagacwve48lrxa8yoo14k83r.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,jna5wcWK90WokJyoeJH1iw,0440f08f-ef1d-49d8-942b-523056e8bb45,MPfe2wahQECCDGfhZE-drA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hack Graffiti Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 737, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-30T19:15:58.983Z", + "ThumbnailImage": "8q53ymq8bhq82a6s9fqt8a814.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,LrQ1z-mTHE2vIePBwm8l_Q,0440f08f-ef1d-49d8-942b-523056e8bb45,omS7gF10C0ec0ozEoJGJXw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Recollage Shirt (Blue, 2D Art Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1499, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:42:19.923Z", + "ThumbnailImage": "anq7dknee5z82yqq5bymquby0.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,M1JVd5ur7U2ZtpvhEhPNhw,0440f08f-ef1d-49d8-942b-523056e8bb45,tzMFIJyxZE6cZNuLdaKs7w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hyper Noodle Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 739, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-30T19:16:09.53Z", + "ThumbnailImage": "agqloaqzftkyi0wa9v9j439d0.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,nLRxEIBhUkyQsfrk3nzsDA,0440f08f-ef1d-49d8-942b-523056e8bb45,n4hqSCv9OUewI30KnbPhFw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyber Junk City Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 738, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-30T19:16:03.123Z", + "ThumbnailImage": "5k6xiv9l2oaeteyfht5ak4epq.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,owoIOIEM70e6WxnYdlKYWQ,0440f08f-ef1d-49d8-942b-523056e8bb45,t2do8WSejE-Y0aiEirKw9g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Video Contest T-Shirt (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1839, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-02T21:11:19.413Z", + "ThumbnailImage": "0jdw82n61uuapunyx297i85ng.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,rnM1qDlYBU6_Dl1bjg0J1Q,0440f08f-ef1d-49d8-942b-523056e8bb45,OZb8bb5FNUuFYOkwANvxAA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rebel Rose Shirt", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 731, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-30T19:15:48.823Z", + "ThumbnailImage": "2w7aitx6z9si6pezgai622y01.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,TtncjvYcK0qHqWN-IMMoqg,0440f08f-ef1d-49d8-942b-523056e8bb45,hHhjZeLcaUGN1OyFoYHznw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Happy Tree Shirt (Purple, 2019 2D Art Contest)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1043, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-04-05T19:47:41.357Z", + "ThumbnailImage": "978ivwbrlhtfjt9lpibr7eqx3.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,TuAjeDmPuUmFr_ESx4q6WA,0440f08f-ef1d-49d8-942b-523056e8bb45,AXtRUZcYWU6g1ZtM-L4vfQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Video Contest T-Shirt (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1369, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-01T19:10:07.073Z", + "ThumbnailImage": "3d9h318l8ubxs4x703bpvjqcy.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,UUlB4S3GVUGyil6ZK-EbWQ,0440f08f-ef1d-49d8-942b-523056e8bb45,omS7gF10C0ec0ozEoJGJXw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Recollage Shirt (Green)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1889, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-18T21:22:47.977Z", + "ThumbnailImage": "4dsx1k2farwthtgsfgem735gx.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,v12eJ8louE-cW7-pCGzVLQ,0440f08f-ef1d-49d8-942b-523056e8bb45,v0GsPFC7cU-_JNG4-ERfog", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Video Contest T-Shirt (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1563, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:32:35.97Z", + "ThumbnailImage": "ded2g4m0rj9eastu0comvx8bw.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,yaQ7AlUc3kGq8_RW3eTSmQ,0440f08f-ef1d-49d8-942b-523056e8bb45,d42UBeUO4UO3Q2F8IpeRbQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyber Trash Shirt (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 734, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-30T19:15:54.903Z", + "ThumbnailImage": "8o1cue9ixf7cfijq9eqg5xk8j.png" + }, + { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,ZNPzHmrU6kGVQW7Q5ei03w,0440f08f-ef1d-49d8-942b-523056e8bb45,fJVxsLWuTESd-2xTCJPZ2w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Recollage Shirt (Yellow, 2D Art Contest)\t", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1295, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-22T20:21:42.06Z", + "ThumbnailImage": "ansni4asvqpm50bcuomwb4i4l.png" + }, + { + "AvatarItemDesc": "d12e5738-00c7-47e7-9334-8399eec5aa89,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "International Thief Hat (Mystery Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1515, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-15T19:19:01.683Z", + "ThumbnailImage": "87ayi0litn96xap15w1n2iq85.png" + }, + { + "AvatarItemDesc": "d15139de-5e57-423b-b8da-335ad7a4df5a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fae Horns (Hidden Worlds Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1763, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-19T20:29:29.57Z", + "ThumbnailImage": "0lhij515w2a2pi1bjg8pqzztr.png" + }, + { + "AvatarItemDesc": "d1c4f1aa-3acb-42ca-bfe7-5e2a1e863f95,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Microphone Headphones", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2375, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:35.597Z", + "ThumbnailImage": "ONlwGgbS3EG8In6YslOpGw.png" + }, + { + "AvatarItemDesc": "d1c4f1aa-3acb-42ca-bfe7-5e2a1e863f95,M9ZKWX59e02037Qy4rgmAA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Microphone Headphones (Orange)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2376, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:37.18Z", + "ThumbnailImage": "NY7YBusIgkCX1gRBRn_KDg.png" + }, + { + "AvatarItemDesc": "d1c4f1aa-3acb-42ca-bfe7-5e2a1e863f95,u2nh8EAZT02TxPTWVl59UA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Headset (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2565, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:06:01.093Z", + "ThumbnailImage": "46_hhqT9P0isgoM6SBDAVw.png" + }, + { + "AvatarItemDesc": "d1de5e76-0367-42f2-be88-6f28a140e5f6,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gaia Clip (Bud)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2916, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-03T21:32:10.49Z", + "ThumbnailImage": "PXVbvtMXvUuHbJItHMqazg.png" + }, + { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Hat (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 33, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "d0ct7ztnb49pz8t2575vjicnw.png" + }, + { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Hat (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 35, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "85o1rs3o13bqcy2gu8qjvzgij.png" + }, + { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,61VZkFjB402brzWm4UsftA,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Hat (Grey)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1301, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:06.767Z", + "ThumbnailImage": "7wxsli15xh05ark51tui5k2b0.png" + }, + { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,6e152cc7-e93a-4408-8092-236db420b680,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Hat (Yellow)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 36, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6neueh6asjwdnysb7fxmpi9ep.png" + }, + { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9ad37173-e640-4b9e-a474-716d482b73d2,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Hat (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 37, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7ilinnf748ep3x9ag9hht0gds.png" + }, + { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9b35ae52-febe-486a-8557-ec7190a9756e,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Hat (Tan)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 34, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "665whx3sukltm50bvhdjb35kb.png" + }, + { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,lgqLGi01o02ZFC9Xs5Ofdg,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Archer Hat (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1123, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T20:00:11.09Z", + "ThumbnailImage": "6jvwgyrx37n8e3913svxb1s0i.png" + }, + { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Robot Gauntlets", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1719, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:10:59.567Z", + "ThumbnailImage": "446uvbhzordij4cso3587acsi.png" + }, + { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,BoaDgMfzEEycbxVmWneHNA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alloy Power Gloves (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2110, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:26.33Z", + "ThumbnailImage": "SIkjnmq_P0mIn1aA3HyRTg.png" + }, + { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,gIDTSqjSvECgxxd4YtOZIA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Alloy Power Gloves (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2111, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:27.537Z", + "ThumbnailImage": "shxxE1X6sE6_4lH3hEXGSg.png" + }, + { + "AvatarItemDesc": "d3b8bd7b-ca9a-4f5d-b115-3659dc294a03,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Top Hat (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1356, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-03T01:43:48.76Z", + "ThumbnailImage": "1h9wa7v6ma9wzhwdgvumqlyp3.png" + }, + { + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dodgeball Shirt (Purple)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 365, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-21T23:27:05.647Z", + "ThumbnailImage": "0czsyf22bw9er1mbnytxi0ytj.png" + }, + { + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,0ba92db2-690a-44ce-92f4-130e9503b6c1,944d934d-5e21-42d7-8196-fff9a81ee469,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dodgeball Shirt (Teal)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 440, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:10.253Z", + "ThumbnailImage": "08j0sgwi31ma53zy69e9h1cvs.png" + }, + { + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,4a85c181-92fe-47a5-925e-05f0ccb25006,944d934d-5e21-42d7-8196-fff9a81ee469,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dodgeball Shirt (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 439, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:09.307Z", + "ThumbnailImage": "5dzmypownxu9mz6fttdzw0cjp.png" + }, + { + "AvatarItemDesc": "d4f86b2b-0fa3-4264-9eac-cf15b62463bd,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Resistance Shades", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1681, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-20T01:33:42.73Z", + "ThumbnailImage": "eewujb3it57bm2qlk725l2aji.png" + }, + { + "AvatarItemDesc": "d52ff2bb-d396-478d-8153-2aa845feb306,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hiker Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2251, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-28T17:06:05.183Z", + "ThumbnailImage": "CHOox5OrjECPbDwbhliATw.png" + }, + { + "AvatarItemDesc": "d57cf97e-b5d2-4e47-8231-a226a161f6e3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Shades (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1136, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:15.013Z", + "ThumbnailImage": "12z70obzqdrm08ikd55tdgqj6.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Arizona Cardinals Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2643, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:03.037Z", + "ThumbnailImage": "cdu27a9jf28i0va22wre1e08h.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,_egTT9EA-UK0aLkn_QnWFA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Carolina Panthers Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2647, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:06.013Z", + "ThumbnailImage": "5lqm8xisnbpdwi6my605vy6uj.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,-0DfEFcbNEaNI2uvfHF9qA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Minnesota Vikings Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2663, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:21.67Z", + "ThumbnailImage": "en0jav3kz8odonu5j54j9ckk3.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,10nSNj7eRE6XwS9y2OvC2g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Chicago Bears Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2648, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:06.627Z", + "ThumbnailImage": "1lkfrltzaelfhihaleygfgtoz.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,1nFX70Rqo0-qQo2M_Z1KCg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Houston Texans Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2655, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:11.3Z", + "ThumbnailImage": "9kjwm7fopyhvlu9oq60p8kqh1.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,27Fg--SzD0ertvGEv1Jgsw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Las Vegas Raiders Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2659, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:13.847Z", + "ThumbnailImage": "2hbcygm3cqto3mirz4d7og1d7.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,3m5Q5crrHUGZJ9_GuxubQw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Tampa Bay Buccaneers Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2671, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:26.577Z", + "ThumbnailImage": "4c9qxd5hhuxj27pqdxfocik1g.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,4viU0bMT1UuasZHD8euFKg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Philadelphia Eagles Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2667, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:24.197Z", + "ThumbnailImage": "9j2025b6j83s88cooyi6ui7g8.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,5fjPcf4xQkSEYn3T-f8xLw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Detroit Lions Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2653, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:10.07Z", + "ThumbnailImage": "7q30iarhlropnxgad6s0kjjdc.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,6EjRVha2i0mCUVLaL_em_w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Los Angeles Chargers Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2660, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:19.583Z", + "ThumbnailImage": "3inbs0h93lddkdaggk3h26yae.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,6JY7l1gtpE631NTmT6xv3A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Kansas City Chiefs Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2658, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:13.277Z", + "ThumbnailImage": "85q8el387hlfi6qwrheeqg2g2.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,cOyJcjGyp0miaMLAOpz0FA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Indianapolis Colts Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2656, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:12.067Z", + "ThumbnailImage": "621yuib76ktgb5dus5p65ciue.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,DVnSVZcj8kyLr1DXRu7kzg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL New England Patriots Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2664, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:22.243Z", + "ThumbnailImage": "32qnngk3wsvsjk35n4vcfap7z.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,EtgbhY9a_EqO4j86Al9Kpw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Los Angeles Rams Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2661, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:20.327Z", + "ThumbnailImage": "di6np6u43ih96rrsdk18jvwox.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,FnezvbcGD0-oyFOTkpUo7g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Washington Commanders Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2673, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:27.877Z", + "ThumbnailImage": "4ynu85lp1m1sqc2r1upivy5ox.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,FokpgM8R5EuXZwe89T78yA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Cleveland Browns Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2650, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:08.103Z", + "ThumbnailImage": "bya9qdvmk13buz121v7p3omb0.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,jYJehFukzUCHKzWQAaM3uw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL New York Jets Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2666, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:23.61Z", + "ThumbnailImage": "b7zfebrr9rbe6rsoq8y16fx7w.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,kjDg5GM1b0iepa52BX5wbg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Baltimore Ravens Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2645, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:04.363Z", + "ThumbnailImage": "eexlvsjg8kezkcwttljr1690x.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,nIUjGqY8L0u0ZbX45b4PUQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Jacksonville Jaguars Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2657, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:12.637Z", + "ThumbnailImage": "2w56qylw8p57q7ik25gtk5usj.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,oyvOdKXeGU65V6sKhhb0qg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Miami Dolphins Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2662, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:20.893Z", + "ThumbnailImage": "5h0qrqjtunac31f0srzvmmttz.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,QD-SRdKijU2RVu60TcU_jw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Seattle Seahawks Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2670, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:25.927Z", + "ThumbnailImage": "d4lmbw9jnhj1x5cb2dj6y7wdx.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,QgECbFDwyk24sI-e_fXy5w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL New Orleans Saints Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2665, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:22.843Z", + "ThumbnailImage": "70ki9yd0las1hfb2tvielgtqm.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,q-Gjg0zzI0mTHxjn8wi5HQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL San Francisco 49ers Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2669, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:25.377Z", + "ThumbnailImage": "d4pa7azn3fyrni6imh3ip7dpg.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,sjY_XUbXAk6h2TGnjBGDeQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Green Bay Packers Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2654, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:10.667Z", + "ThumbnailImage": "3vg7up51ivibzltebmdutv694.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,TtthSwdIq0CuSNOKDLsldg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Denver Broncos Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2652, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:09.507Z", + "ThumbnailImage": "dwh5sx4vh6v0gdfi3kkalxutn.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,v0nZrzbIMEi3AaGuNjmwDw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Dallas Cowboys Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2651, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:08.73Z", + "ThumbnailImage": "7xj6xkknhas1ka2boco8j8tkf.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,VxmHqppE6UWiXVBXL2QvTA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Atlanta Falcons Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2644, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:03.667Z", + "ThumbnailImage": "0znrqqn0ggnpfhcs942kyvrtp.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,WlfHWDcnO0SBT5wTjEPSmw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Buffalo Bills Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2646, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:04.967Z", + "ThumbnailImage": "707jfnnrkawaq9bdwniic0pye.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,XNTUcdaSVEuS3rbzwIwYNg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Tennessee Titans Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2672, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:27.133Z", + "ThumbnailImage": "9u34u3inzwswkkhcwc7snict0.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,XPBWTcpQ9kaS0mabpdvYhw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Cincinnati Bengals Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2649, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:07.437Z", + "ThumbnailImage": "axl8sqe1o3pyczpmutxk61ltf.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,YePtDvVnOk6cZkDBVIv-PA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL Pittsburgh Steelers Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2668, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:24.77Z", + "ThumbnailImage": "2aupjxiovt27lh2rkk8a4q4h8.png" + }, + { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,zMWcGYnGdk6lVqVNuFwJHw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NFL New York Giants Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2674, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-01T18:24:28.46Z", + "ThumbnailImage": "0tah1l71br2opihsogi3xwk34.png" + }, + { + "AvatarItemDesc": "d6b0a1e7-e918-43e5-8191-3a8d9d01df7c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Shirt (Blue, White)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 186, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3c1iifcjs873h8qwb9pekkmpu.png" + }, + { + "AvatarItemDesc": "d6b0a1e7-e918-43e5-8191-3a8d9d01df7c,b1ea158d-1663-4db1-bb09-9847f6e9d1e6,e5635772-4e84-4b30-b77f-4a1196cb599b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Shirt (White, Red)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 497, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:20.85Z", + "ThumbnailImage": "bkzswe4hfhdvak21tbjhe6icc.png" + }, + { + "AvatarItemDesc": "d6b0a1e7-e918-43e5-8191-3a8d9d01df7c,d5efaf80-7f34-4c9a-bc3a-b80b1ac70ace,e5635772-4e84-4b30-b77f-4a1196cb599b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Shirt (Red, Orange)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 498, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:21.823Z", + "ThumbnailImage": "91cioy61054580v8ruloocj3l.png" + }, + { + "AvatarItemDesc": "d6b0a1e7-e918-43e5-8191-3a8d9d01df7c,fcbdfbfd-254a-4538-b119-43e23404b8b5,e5635772-4e84-4b30-b77f-4a1196cb599b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Shirt (White, Blue)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 496, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:19.777Z", + "ThumbnailImage": "8j3mq83a7m2bcd1ue5tzv6r2o.png" + }, + { + "AvatarItemDesc": "d7410e54-5193-48b9-b5c9-06e4439dd924,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Back Keytar (Pink)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2276, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:08.36Z", + "ThumbnailImage": "abgo5oixia5zua1xh9pr9knb6.png" + }, + { + "AvatarItemDesc": "d7410e54-5193-48b9-b5c9-06e4439dd924,0aNp_2sWHUS_08TMe-_AzQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Back Keytar (Purple)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2278, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:13.377Z", + "ThumbnailImage": "aiaec0zo6aruhuugqrw4xr6p2.png" + }, + { + "AvatarItemDesc": "d7410e54-5193-48b9-b5c9-06e4439dd924,njOH4bbntk6THrxbd9TDDA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Back Keytar (Orange)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2277, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:11.247Z", + "ThumbnailImage": "8jjzm1iwi6v9h63b4saad9462.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tracksuit (Yellow)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 251, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5gm9mbr01cwr3bmzl4nsv5ko7.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,026ca50e-3a81-43cf-87f5-950687b7bbdd,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tracksuit (Pink)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 501, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:25.457Z", + "ThumbnailImage": "essmk8w84jurmnzu791bfueh2.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,3JrW3FFUvEe6HZ9VjOVjMw,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweat Suit (Pink)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1971, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:20:24.007Z", + "ThumbnailImage": "2izsye42u9sx691sx6b1bpdil.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,6584dada-499e-4d7c-958d-466955b20640,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tracksuit (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 502, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-11T22:35:26.48Z", + "ThumbnailImage": "bvsa18aen05ajtkzw2h9y672b.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,Ijf-j7EgEkGYOKo9SQNLRw,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tracksuit (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1649, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:55:44.397Z", + "ThumbnailImage": "222uif2yybv04a5a1ialb8rze.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,J7l1YwWjqkutybwykwih7w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tracksuit (Squid Teal)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2182, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-19T22:54:41.853Z", + "ThumbnailImage": "SPNmVkKb1UWv0spykc088w.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,jeEWPFvzaEGmXaUrxTFvwg,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweat Suit (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1974, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:20:35.033Z", + "ThumbnailImage": "bbonh2ov1akhkcgu49ws63rse.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,NjCLn5A5h0-V8jB72etCNQ,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweat Suit (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1973, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:20:29.983Z", + "ThumbnailImage": "bm3lgqlrymyw0u7z8sipii563.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,OT5APcpbpEiMNNah8n4Txw,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweat Suit (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1972, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:20:26.883Z", + "ThumbnailImage": "955r71z2z3dwqtuuo4h7wtm00.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,t2fOeVWloUOKDlIaf4Sxnw,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweat Suit (Yellow)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1970, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-08T23:20:21.003Z", + "ThumbnailImage": "3jkufkhi2w8i2n3lsvlvf65c1.png" + }, + { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,uUOO-k5KS0mU7B5BLaOpnA,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tracksuit (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1648, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:55:41.88Z", + "ThumbnailImage": "8v9x6a68s45783jrnnqykohcu.png" + }, + { + "AvatarItemDesc": "d7730a9e-78a1-4356-bc09-6b066615850b,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Afro Updo Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1477, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-07-08T19:52:09.287Z", + "ThumbnailImage": "3ybnk0r2sa9x5nfulb4n5hfua.png" + }, + { + "AvatarItemDesc": "d8280c0c-d803-4513-be10-a0ba96d8821e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flowhawk Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1000, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:21.08Z", + "ThumbnailImage": "5en879epjtfbbwep4k3qz00wa.png" + }, + { + "AvatarItemDesc": "d834be2b-b107-49aa-b0ec-b54bdb4c61aa,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Iso Helmet (Invasion)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2485, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-04T17:41:40.16Z", + "ThumbnailImage": "9aC9wW3rVkKmZlMNJSwZkg.png" + }, + { + "AvatarItemDesc": "d84c0ff9-8fbe-4ed8-abf3-7996e81888ab,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Large Afro Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 556, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-10-26T01:09:06.817Z", + "ThumbnailImage": "9qr2ce4r54kz6w69sxrp0cm74.png" + }, + { + "AvatarItemDesc": "d86e2e65-5d87-466d-b885-8c52ac2eeeb0,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Jacket (High Seas Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1245, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:35:45.353Z", + "ThumbnailImage": "3jysjn20nxxud7yahb9m78toy.png" + }, + { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frantic Rabbit Cuffs (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2433, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:52.197Z", + "ThumbnailImage": "JmX7fBYzcUyHQStd9MQjHQ.png" + }, + { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,_4mk8E4PUEGf_3SPuFUy2g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frantic Rabbit Cuffs (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 2434, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:55.053Z", + "ThumbnailImage": "Ny4bGecU1kqDWzGnr1B1Uw.png" + }, + { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,Adiw7dQqyk6pS0q3T0lcSg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frantic Rabbit Cuffs (Yellow)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2437, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:03.32Z", + "ThumbnailImage": "NAR-63A3vUSNmcNgu2Jhyw.png" + }, + { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,aO5Q4BPpuU-bsNavGii40A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frantic Rabbit Cuffs (Purple)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2435, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:19:57.737Z", + "ThumbnailImage": "VqjRqu51m0mkMRhHinsJ9w.png" + }, + { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,MVhTW78G_E6z2mY0Y5ZnAA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frantic Rabbit Cuffs (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2436, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:20:00.647Z", + "ThumbnailImage": "XOxmltIN6kSzCdXiXACw6w.png" + }, + { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Vest (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 197, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "94farwa7bctza7e4db865is8x.png" + }, + { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,178c6beb-c737-434c-a53b-d14f438f6a98,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Vest (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 654, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:41.567Z", + "ThumbnailImage": "274io1pn2peum3e1dm08i0tlj.png" + }, + { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,2913bd93-bf35-4bdf-b83a-d40a10213adc,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Vest (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 655, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:42.623Z", + "ThumbnailImage": "0hdenghs8yfyhmtnz229g0hd1.png" + }, + { + "AvatarItemDesc": "d960b47d-f8bd-4c2e-813c-a6a09876ea18,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scarecrow Hat", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1178, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:03.583Z", + "ThumbnailImage": "cbojb5iebhb2p1tra7gh61j7y.png" + }, + { + "AvatarItemDesc": "d960b47d-f8bd-4c2e-813c-a6a09876ea18,TZ3oQBp_3kWY4Vzscgv5Wg,xCpdHx1iM06Gg0tYoGv0DA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scarecrow Hat (Creators Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1179, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:08.357Z", + "ThumbnailImage": "5saxy9nrha61uuej237wtnnsh.png" + }, + { + "AvatarItemDesc": "d9c025e1-561b-4997-9f69-c96eb3c00786,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wrist Warmers", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2072, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:34.46Z", + "ThumbnailImage": "kuIHwuTu10Cr8dCY4ZBlzQ.png" + }, + { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rose Earrings", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2285, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:37.463Z", + "ThumbnailImage": "4h1x24hz3beovhoamej45mz90.png" + }, + { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,10nOM4HBRU-e7Bb05SrtLw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Purple Rose Earrings", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2288, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:46.333Z", + "ThumbnailImage": "63yh6x5s2jp8owgzlji3dlq1b.png" + }, + { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,4ve7AWD5pkGjvmtC6JRdiw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rose Earrings (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2286, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:41.333Z", + "ThumbnailImage": "bf3m7280dfcfs560g1sg22rd1.png" + }, + { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,F3m52YaKyEqwbgUyPVfFxQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rose Earrings (Orange)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2287, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:43.63Z", + "ThumbnailImage": "044d8yuos4umj6mmduxqxzgkx.png" + }, + { + "AvatarItemDesc": "da4e7b34-2095-4a9e-801e-4f409039e0dd,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Buzz Cut Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 989, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:01.84Z", + "ThumbnailImage": "5yfm6hc4pnazd6475re6lhwdc.png" + }, + { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Babydoll Dress (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 135, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "6sqmpmy9umgo11ba977kv392b.png" + }, + { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c5deba2a-6e35-4b13-8e94-8ba5457f39df,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Babydoll Dress (Yellow)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 137, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "c24u162frxoa2ztfi76luw9ji.png" + }, + { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c9589974-c261-485e-b571-cb2f34fb178f,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Babydoll Dress (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 514, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-20T20:52:13.657Z", + "ThumbnailImage": "6ag9z8xgaq11l42y9relrmux1.png" + }, + { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,d6823e01-69f0-4f85-b94a-74894356a2cf,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Babydoll Dress (Maroon)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 136, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9qamxgi6spdwdg7gwy4xnedzt.png" + }, + { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,da6d0ced-3d43-4878-a868-925f2ed6fd5b,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Babydoll Dress (Pink)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 660, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-04T22:39:26.813Z", + "ThumbnailImage": "7f7hajiw2luckub1h51u4co33.png" + }, + { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,e13cf33d-7588-4e2e-955e-f0a29d6380b7,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Babydoll Dress (Brown)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 138, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "9zwdqgsqcsxt5ced3hkhejxc2.png" + }, + { + "AvatarItemDesc": "dbecb1a5-f342-4017-b5c8-9cdfcd1254ec,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Samurai Armor (Jade)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1906, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-15T20:43:02.603Z", + "ThumbnailImage": "6u8vpdm9um3l371w3nl9q0j0g.png" + }, + { + "AvatarItemDesc": "dbecb1a5-f342-4017-b5c8-9cdfcd1254ec,c7wiHNZ-X0KazEW4cY9PeA,5fVeR6S6R0yo_NcT-TB1lQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Samurai Armor (Red, Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2061, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-16T19:03:57.837Z", + "ThumbnailImage": "tcgeftujX0my-JOBuLu7kA.png" + }, + { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbershop Hat (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 386, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T20:28:57.273Z", + "ThumbnailImage": "chch6uszf5qnxlwl6jtw9bftb.png" + }, + { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,631c9015-2a00-47ea-bb35-465a2ddbca5d,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbershop Hat (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 412, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T00:16:19.197Z", + "ThumbnailImage": "d67bfbfq6h2c493xoldetiunp.png" + }, + { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,7f9cb939-36a4-40da-8337-025e1d7bf8e5,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbershop Hat (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 413, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T00:16:20.55Z", + "ThumbnailImage": "4d6mxhehvygwsuycquilcwmtt.png" + }, + { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Gloves", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2456, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:46.79Z", + "ThumbnailImage": "zmUtvtALhEyonXMMbmhMLQ.png" + }, + { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,3EOUuzxLSkSopjIohgQ-zQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Gloves (Orange)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2459, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:53.71Z", + "ThumbnailImage": "swrVud60vU-52WTaynUCqQ.png" + }, + { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,csLWYuunH0K9Ij1q1FoBsg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Gloves (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2458, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:51.463Z", + "ThumbnailImage": "OlimAxzdbEWXp8C2t0UdRw.png" + }, + { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,dudShaXMYkaIZdZfyleoXw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Gloves (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2461, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:58.503Z", + "ThumbnailImage": "0aPPOEDh1EqRvNey2G6Buw.png" + }, + { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,sP8lTqgdk0WyuwQczT_ijg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Gloves (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2457, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:49.103Z", + "ThumbnailImage": "a8n5oQkGBU6RKd7IECdwjA.png" + }, + { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,Zf0z5Ghkwk-QJJq4u7Fjww", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blaster Gloves (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2460, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-28T00:21:56.063Z", + "ThumbnailImage": "C3a5a-EHuUeFBNVj8c4TcA.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blazer (Blue, White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 143, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "ap1up0rb8i4a1km9mn9e44dsm.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,_ycDQ6RcyEGAntVlSDpPeA,6UBZuZQBG0eZtNmty2IGdA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blazer (Candy Cane)", + "Tooltip": "", + "Rarity": 30, + "TagList": "holidays", + "AvatarItemId": 1254, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:42.09Z", + "ThumbnailImage": "d57lxs90awzdwpbei5f4j6nz8.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,05ac07e1-67f0-486c-abf5-a62866475abb,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blazer (Black, Cream)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 144, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7si3m7no7ulqg9he671mhowgx.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,0ffad843-d6c9-425a-8686-7217009c867e,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blazer (Green, Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 148, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0z5rg3veja6t3bw5vpad3759e.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,272fe8eb-5061-4729-a7a8-414ff667a82f,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blazer (Grey, White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 145, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "cugl1bt43o2xnok3ehawcralp.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,6f2e74bf-1e95-463d-97db-d5d1a53b2c28,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blazer (Black, White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 147, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "00wlb607co30g3d5s8a51rat5.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,7WrSbK4Ml0K2z-ig5HIUCw,9skD_xxLq0mpfP13f9n8hQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blazer (Shamrock)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1352, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-03T01:43:21.917Z", + "ThumbnailImage": "10hg6w8e7ui5q5yod1bb5dhab.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,9374bf66-2ee5-493b-8439-efce4b201904,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blazer (Grey, Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 146, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "crmfr0dn581ysgtbeh5d3m2mr.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,uCA4tnv9Mk2mX-NnFlj2Mg,NvlKJFz4IkKDliVOJKJYhA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hallow's Blazer (Pinstripe)", + "Tooltip": "Available until 10/25", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1918, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-27T20:20:50.503Z", + "ThumbnailImage": "dwz0pxz74xy4zmr653hor487a.png" + }, + { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,YlgQOY1VJUuGzYxoTYAqGg,jhQ23U8Pmk2K2wfBdrEWNA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Snowflake Blazer", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1929, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-13T18:59:25.303Z", + "ThumbnailImage": "dswjk6ox1i8gqtdq0td0c43qy.png" + }, + { + "AvatarItemDesc": "de19b239-3ed0-4f03-acb6-da69b5aa52ea,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Zombie Vest", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1190, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:54:11.637Z", + "ThumbnailImage": "7q88u3fe1zgi5smic4akp7ow9.png" + }, + { + "AvatarItemDesc": "dece6d88-b6b1-4e01-b341-8ca4171353cc,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousCatNoirEars_Hat) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1996, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:12.19Z", + "ThumbnailImage": "bkqrk31ohvuvc5euhf8ftmopj.png" + }, + { + "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bog Monster Suit", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1336, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:46.313Z", + "ThumbnailImage": "cdcrail4xl68zz5i57rfmgvcm.png" + }, + { + "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,2jj5lxx6Gka5U6j0cWjN5w,HQnd9m0Wi0upaXRNsE5HPQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bog Monster Suit (Movie Magic Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1653, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:56:45.52Z", + "ThumbnailImage": "7jabhuhr3ufptld365gkfrn58.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Hoodie (White Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1180, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:21.43Z", + "ThumbnailImage": "1b7g9kq7p2543j7d970f1bkw2.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,2mwfYNx7iUGbSf6u8rRXwg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Hoodie (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2312, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:09.22Z", + "ThumbnailImage": "6Oec9FiiLE-7m4bafgo2Jg.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,DJnKyNXtuEW1tbKBFscIng,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Hoodie (Pink Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1531, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T23:55:29.203Z", + "ThumbnailImage": "0s8dsvnn6kc6q646bv4ipcqzy.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,jhPUIkf5bkinMSsqPTK3fg,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Glow Skeleton Hoodie", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1533, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T23:55:35.517Z", + "ThumbnailImage": "8duxsgrggyqxtmflb6g47toll.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,NvnHqZ-nb068DOSrxZPYIQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Hoodie (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2311, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:04.997Z", + "ThumbnailImage": "cFJR0iw4gUGSumlZz_qxXA.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,s6DQxJ3gY0CG8L7JmcmRTQ,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Hoodie", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1181, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:53:24.62Z", + "ThumbnailImage": "7hrs6xlvsngnvndq0px6erei9.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,WRi0rK1O60qEpDPgOH5P6g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Hoodie (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2315, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:22.76Z", + "ThumbnailImage": "uHnG7V2W1Uu8H2VhCYGJgA.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,x_UvGO3yQEmprFEXhPExDg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Hoodie (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2314, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:18.56Z", + "ThumbnailImage": "fU2o342vgECqLjsyiP8vCw.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,xtjgHdnYREm_gx_tLsTpvg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cyborg Skeleton Hoodie (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2313, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:13.727Z", + "ThumbnailImage": "nRtJQf3QR0iu2fICET7LtQ.png" + }, + { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,ZY0rVNemjEuEMGMjuPNZyA,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Skeleton Hoodie (Blue Glow)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1532, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T23:55:32.45Z", + "ThumbnailImage": "5z8kh7zr2w90iw14n6828rdeu.png" + }, + { + "AvatarItemDesc": "df29d81e-851b-40b8-95ae-8461f702b1e0,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beehive Beanie", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2816, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-17T18:40:37.09Z", + "ThumbnailImage": "GTnJ7Ox8b0SRwSSDw8LESQ.png" + }, + { + "AvatarItemDesc": "dfcc5a47-5f73-496c-84b4-d44702231f7e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Samurai Wrist Guard (Jade)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1907, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-09-15T20:43:05.04Z", + "ThumbnailImage": "0n5obvj9pnbfm6a7x8t010av0.png" + }, + { + "AvatarItemDesc": "dfcc5a47-5f73-496c-84b4-d44702231f7e,h-uMOz2Hz06ymEjtz4wuzQ,4Ooi0h3SrkObClvS2cGk9Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Samurai Wrist Guard (Red, Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2062, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-16T19:04:00.463Z", + "ThumbnailImage": "AShCqsZgOUmxqJasgumjXQ.png" + }, + { + "AvatarItemDesc": "e005f9ab-47bc-4c5b-8c45-b0cc6c55ab1c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jolly Hat (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 1934, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-03T21:35:06.62Z", + "ThumbnailImage": "8fzadq5f6ni6nboo4jmt4z0wb.png" + }, + { + "AvatarItemDesc": "e005f9ab-47bc-4c5b-8c45-b0cc6c55ab1c,veF50UiWeUS8ugHSm6g_3g,7KDavHUPDUKTJI0fFzJHpQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jolly Hat (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": "holidays", + "AvatarItemId": 1935, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-03T21:35:13.323Z", + "ThumbnailImage": "8qodk6xu0694kgb6xwrvd2pb9.png" + }, + { + "AvatarItemDesc": "e042433a-40a2-4758-8074-3b9d407835ec,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Romper (Pink)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 555, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-10-26T00:08:07.033Z", + "ThumbnailImage": "bw125vxk818kcf1j36i5htzc4.png" + }, + { + "AvatarItemDesc": "e0c4c93d-ea3e-420f-9e8f-7890b5bd4b6f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sunflower Earrings", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2826, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-23T22:04:54.537Z", + "ThumbnailImage": "3e4iynr3546eem9i3x1apmhk4.png" + }, + { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Tabard (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 722, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-20T23:58:11.877Z", + "ThumbnailImage": "c7mqflmgoajhkoupate9o25ll.png" + }, + { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,5TJPDmvEBEOkP82ZWLFqtg,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Tabard (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 864, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:18.47Z", + "ThumbnailImage": "247il28eoprdj9km80orhaqg4.png" + }, + { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,8zXWUxwZHU6tThCV4p5iGg,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Tabard (White, 2019 Fantasy Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 964, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-01-18T21:17:37.467Z", + "ThumbnailImage": "6i0vxy286tiuc0bmfbvghl17k.png" + }, + { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,rCeRk8Pdl0W5M47JAQPhpw,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Tabard (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 863, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:17.043Z", + "ThumbnailImage": "9q4xzeoi13tu32l6zxmci5daj.png" + }, + { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,s2kCppLsN0uY7Hy6qjQc-g,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Royal Tabard (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1314, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:06:16.94Z", + "ThumbnailImage": "eq5nxte0f2lf5p4vau1f14d8j.png" + }, + { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Women's Athleisure Top", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2063, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-23T19:00:13.917Z", + "ThumbnailImage": "hItB5Kz2jkyqLdN93apHFQ.png" + }, + { + "Rarity": -1, + "PlatformMask": -1, + "IsBaseAvatarItem": false, + "FriendlyName": "Helmet Hair", + "AvatarItemType": 0, + "Tooltip": "", + "AvatarItemId": 9503, + "AvatarItemDesc": "c5010738-41fa-4eca-aeac-e24adaa29789," + }, + { + "Rarity": -1, + "PlatformMask": -1, + "IsBaseAvatarItem": false, + "FriendlyName": "Hacker Suit", + "AvatarItemType": 0, + "Tooltip": "", + "AvatarItemId": 9503, + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,5aa7be74-19a9-4dd8-b525-46c5aef34866" + }, + { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,FbedbSonT0izB7Q6cLXCzw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Orange Floral Athleisure Crop Top", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2770, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:17.753Z", + "ThumbnailImage": "Lt9m7wE1U0-91--MzopOoQ.png" + }, + { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,QF05cIuqhEeY8oNnO9CocA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floral Athleisure Crop Top", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2769, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:10.207Z", + "ThumbnailImage": "wKJw4wkhlE2Io6Asemls-Q.png" + }, + { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,SoQerU2dOUu9BdRBAsEllA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floral Athleisure Crop Top (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2771, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:13:21.033Z", + "ThumbnailImage": "XNVa9yB1X0SSTUTytHozCQ.png" + }, + { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Scarf (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 591, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-01-10T20:33:02.683Z", + "ThumbnailImage": "byw8djj38cmq7xhypade0jdsi.png" + }, + { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,09Cg6dOq2kC2-tI5yyGSYg,eUktNKKK3kqUR8-gA3rNxA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Scarf (Snowman)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1597, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-11-23T22:21:35.267Z", + "ThumbnailImage": "6vj33whkr0o942bwju915h7tv.png" + }, + { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,2lD-mjl3pk2wWv24RY2tbA,dUu7b-JFOky9c2lIVCNmcg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Scarf (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 950, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-10T23:52:14.47Z", + "ThumbnailImage": "8oldwy2zk4m8splglpnb00px6.png" + }, + { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,cj9OYinX5kyzlhBUQwZKog,AKWH3_SDqkG8SRm5sauROQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Scarf (Ugly Ham)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1944, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-16T22:16:21.827Z", + "ThumbnailImage": "dg0fgutjfxtnt68jv0ixfe86l.png" + }, + { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,NJcJw51-xkq0phT-nlJw2A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Scarf (Reindeer)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2678, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-05T20:28:25.223Z", + "ThumbnailImage": "K2uufB0PC0S-SCX_3wmmvQ.png" + }, + { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,OrqqGMhK1UKGowFxpJi2mw,6WVXb20giEWyZbW2gWGz_w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Scarf (Frost)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1225, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:34:39.15Z", + "ThumbnailImage": "7vhlvcgeu2orqfj1v5ym2tw6b.png" + }, + { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,TDcZZ2ynEU-Mgmju_qIVIg,6WVXb20giEWyZbW2gWGz_w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Scarf (Vermont)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1670, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:04:43.46Z", + "ThumbnailImage": "c9kkdeflt9if8ses9jc4zceuw.png" + }, + { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,-tDd0gdxQkuvL2id10AweQ,6WVXb20giEWyZbW2gWGz_w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winter Scarf (Pine)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1226, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:34:41.73Z", + "ThumbnailImage": "c374omg9e5qg2vfc2ferpr6rs.png" + }, + { + "AvatarItemDesc": "e1a13235-e3b3-4b39-8e6f-e6449d4321b7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Eyepatch (Skull)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 619, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-28T01:18:41.61Z", + "ThumbnailImage": "dfy3wgi2sfer51uhs3af8y5da.png" + }, + { + "AvatarItemDesc": "e1a13235-e3b3-4b39-8e6f-e6449d4321b7,clFrpYWFQEmDkE14f3o_Ig,DE1C-RJkuEWIvpR0q1i42g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Eyepatch (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1121, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T20:00:04.69Z", + "ThumbnailImage": "dkbvx8r9yxtlxb2uhcv5qn1az.png" + }, + { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bat Costume Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 1928, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-13T18:56:39.32Z", + "ThumbnailImage": "5ox8ama5khsmyb0okqnvem5p2.png" + }, + { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,IgocvfGIn0u_Jq4GP2_fJg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Green Bat Costume Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2529, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:40:00.897Z", + "ThumbnailImage": "-KAlFceGmEy5iT39k9-pNQ.png" + }, + { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,oO_Ij0Vsvki4Fa6qonrf7A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bat Costume Wings (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2528, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:59.083Z", + "ThumbnailImage": "R-4c5-nUAkebQ9WzWNLZgQ.png" + }, + { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,Q2BNGA-idUyHDPu7m-ZSnA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "White Bat Wings", + "Tooltip": "", + "Rarity": 50, + "TagList": "halloween", + "AvatarItemId": 2530, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:40:02.777Z", + "ThumbnailImage": "DdcTk6htq0eP97IwF_w0mA.png" + }, + { + "AvatarItemDesc": "e21b9dd6-c3d1-42cb-a90d-1b60ffb826fd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Monkey Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2212, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:30.32Z", + "ThumbnailImage": "kykH4YwaaUSlrQTBZsT8tA.png" + }, + { + "AvatarItemDesc": "e2620c2c-c28e-45ce-a83c-0588329b9c81,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Shades (Blue)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1138, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:22.32Z", + "ThumbnailImage": "0bc165hvvokoljesm0z26hcxx.png" + }, + { + "AvatarItemDesc": "e27d33ca-8a81-4c16-a3c1-ffdbc9104d7f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pincushion Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2834, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:44.243Z", + "ThumbnailImage": "1jTfJYB_7EGuMfrAABvtrQ.png" + }, + { + "AvatarItemDesc": "e286863c-2967-4d00-b837-b49487b9484a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fauxhawk Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 992, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:10.46Z", + "ThumbnailImage": "2a7algukgsrdsvd69r2r6nqlw.png" + }, + { + "AvatarItemDesc": "e29d044e-79fb-4280-bca9-aa1e1257e968,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Martial Arts Gi (Speed)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1572, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:37:38.597Z", + "ThumbnailImage": "4shtbpjixq5n883npkahv8c5v.png" + }, + { + "AvatarItemDesc": "e2ObiQFqCUOdKniKL9a1EA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cupid Headpiece", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 969, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-04T21:17:01.413Z", + "ThumbnailImage": "agu0otilxkbnfpbo3ad7xiozv.png" + }, + { + "AvatarItemDesc": "e36bcd98-7e85-43fa-89f8-57e4ec33823a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bob with Bangs Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 988, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:15:58.963Z", + "ThumbnailImage": "ddt2ggc02cukv16x74awz2f5s.png" + }, + { + "AvatarItemDesc": "e441a297-22ba-4a43-92ef-3549c6cc45c1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousCatNoirHair_Hair) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1994, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:07.75Z", + "ThumbnailImage": "56uyxkfexq3rv8uwgrvrv1uc2.png" + }, + { + "AvatarItemDesc": "e4888429-6f5b-4f57-9b9b-2559d3a54856,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rainbow Headphones", + "Tooltip": "This item may come in handy at concerts, afterparties, or in dark, forbidden lairs...", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2002, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:38.547Z", + "ThumbnailImage": "es10uj7wkevzcr8uv905avgbr.png" + }, + { + "AvatarItemDesc": "e48955ae-50e0-4f55-93a1-611150142331,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Barbarian Tunic", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1676, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-02-04T00:06:24.577Z", + "ThumbnailImage": "7m1uy36svx5mpua6eq7senkzm.png" + }, + { + "AvatarItemDesc": "e49d5d78-157e-4bc8-b878-ff7c4963fdc4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mohawk Hair", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 87, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2l73l9kt7me20f6m5vhkstse2.png" + }, + { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Jacket (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 372, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:12.213Z", + "ThumbnailImage": "d4xgo6yv2c0ciprp97kwmfjbz.png" + }, + { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,0724b166-9ace-46ff-a191-b13f135b00a8,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Jacket (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 374, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:14.13Z", + "ThumbnailImage": "5ovn4a6rs6eyhc8cqwowjycsp.png" + }, + { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,4169bfed-8403-4590-a29d-4941275ac0b6,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Jacket (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 373, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:13.203Z", + "ThumbnailImage": "f4451n0e2f0tbm5fmb0h59n72.png" + }, + { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,9bb0x4qgokyQLbt1jA25Wg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Outfit (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2750, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:22.487Z", + "ThumbnailImage": "qEYJHcXWwkKASHqpFug-TQ.png" + }, + { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,AdJ3ExsUq0ixzaKDHK5RUQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Purple Punk Jacket", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2753, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:30.783Z", + "ThumbnailImage": "XTqgvYBK3UeAHs9ot0OlpQ.png" + }, + { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,G2ncsS9U8E6fyjvliFqdOw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "White Punk Jacket", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2754, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:33.66Z", + "ThumbnailImage": "30PBljeph0mO3nz4ycwRAg.png" + }, + { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,MFsWxydybE-dw3KO2hkuZA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yellow Punk Jacket", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2755, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:36.363Z", + "ThumbnailImage": "rlFO-9ZKCE2yfkHlavGzig.png" + }, + { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,TC79rbThdkCZHGWaxk-qYA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Olive Punk Jacket", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2751, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:25.207Z", + "ThumbnailImage": "f4hUyaoXvUGqD6pHI4u8WQ.png" + }, + { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,YceWQmfB7U-R7OeBIr2Ogw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Punk Outfit (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2752, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:27.987Z", + "ThumbnailImage": "d21ms4sSZUe8LXA5sCgB6Q.png" + }, + { + "AvatarItemDesc": "e5b83dfc-b2e1-4dcb-a4ab-9d3a4c8a34ae,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Wavy Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 584, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-08T00:39:12.58Z", + "ThumbnailImage": "ctj8umc3ax8se6s476eqty6l0.png" + }, + { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Jacket (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 657, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-02T20:48:19.58Z", + "ThumbnailImage": "1xwbdqjl5uws8zmxy544nzuk6.png" + }, + { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,2axtF2iOGkez1kfRRGUbYw,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Jacket (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1561, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-24T01:56:21.99Z", + "ThumbnailImage": "16dvdrgwodptixm96hemhraul.png" + }, + { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,Chiz8maLoEGDpZOJZEtdQg,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Conductor Jacket (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1554, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:40:56.27Z", + "ThumbnailImage": "6hvy6jdqfz4iasmq7xqwcfpgr.png" + }, + { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Helmet (Grey)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 58, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0gmqaftgdlsoph92078ffbhpq.png" + }, + { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,22dc463a-a89b-46ad-9a0d-557c742b4a80,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Helmet (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 61, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "a4l2zz1yv4o8nlxgjjcyczfza.png" + }, + { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,59866578-d4e0-417b-9483-233ab108b1ac,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Helmet (Cherry)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 60, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0r1snvqxftybe0m39s41incq1.png" + }, + { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Helmet (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 62, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "c2t0mn4y8uzp3mnvpdd9z0unb.png" + }, + { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ed134bee-d199-43eb-98bd-206571603f40,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Helmet (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 59, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "acqok07g1d8homim9mnjivxuf.png" + }, + { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ITH2OpzjP022vZ5JgxV_iQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Helmet (Yellow)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1122, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T20:00:07.863Z", + "ThumbnailImage": "15u1a4mvdkbujoe41brggozje.png" + }, + { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,PMa9370LPEig_7pKwCceEQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Knight Helmet (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1302, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-24T00:05:11.423Z", + "ThumbnailImage": "eb444rmgn7q2ygy1kaxe6tsh2.png" + }, + { + "AvatarItemDesc": "e6216087-fb37-46f1-bda4-a88c4640f339,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jack Frost Hair", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1283, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-06T22:36:44.38Z", + "ThumbnailImage": "7xvu0kz1tmmaoifwn7fvdtl6o.png" + }, + { + "AvatarItemDesc": "e6216087-fb37-46f1-bda4-a88c4640f339,KwhdQ1deNE6Y6jzO9vaAnQ,byvLynH8x06OQ7GNCXOVYA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jack Frost Hair (Lilac)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1755, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T01:40:06.52Z", + "ThumbnailImage": "6swgo4j116b5mqtoe4dl3pyh1.png" + }, + { + "AvatarItemDesc": "e633d56d-5121-4492-b606-40759108a00e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Pop Earrings (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2231, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-01T15:35:03.277Z", + "ThumbnailImage": "47gm8nyvqd8aiokq2iddqfdko.png" + }, + { + "AvatarItemDesc": "e633d56d-5121-4492-b606-40759108a00e,6CFwXqWT50mH1v6WueFsjw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rocket Pop Earrings", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2310, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:03.423Z", + "ThumbnailImage": "d54dk7h9h3ru312k9t4ncpscd.png" + }, + { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Oversized Cardigan", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2055, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-16T19:03:43.123Z", + "ThumbnailImage": "oROtFcbPVUKgu5jyR4cmxQ.png" + }, + { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,bIQKJloWV0SEnBEtoxP_Wg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Candy Corn Cardigan", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2386, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:28.697Z", + "ThumbnailImage": "rf7qGqus3keA_hz_CqguUw.png" + }, + { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,kKpiR8YM8UG7xcaIgS9aXA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Oversized Cardigan (Forbidden)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2387, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-06T17:11:32.097Z", + "ThumbnailImage": "4wbSOraJ9UqV8L-NG1fvjA.png" + }, + { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,oQspLDUDxEaiudqzXY7gbg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Oversized Cardigan (Painted Egg)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2868, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:22.873Z", + "ThumbnailImage": "pkxpJOu830etcGZdkiTlFw.png" + }, + { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,W1LdNEXmX0m72Wr7EjJ_gQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Oversized Cardigan (Winter)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2586, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:43:52.71Z", + "ThumbnailImage": "2-BK_tv4akuy0tNJWv2PRA.png" + }, + { + "AvatarItemDesc": "e6d49fa3-db6c-4e5a-938c-8cd9b6f977e5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jester Gloves", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2030, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:08:53.597Z", + "ThumbnailImage": "v__U3oLXhEWjGpKh_L8MoA.png" + }, + { + "AvatarItemDesc": "e6d49fa3-db6c-4e5a-938c-8cd9b6f977e5,YzJL2s9S0Umv5XH_g5PG_g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Jester Gloves (Mardi Gras)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2746, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:45:06.597Z", + "ThumbnailImage": "FhANeW3-fUqUVfzO1F7Ujg.png" + }, + { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bounty Hunter Cape", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1550, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:40:03.12Z", + "ThumbnailImage": "2wi7442sqsy6n251dpxoai2q1.png" + }, + { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,2N0meQR4GEGu9Yy61C0Lwg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bounty Hunter Cape (Western)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2249, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-06-22T16:53:06.19Z", + "ThumbnailImage": "ayapiP7cAE2QSEcl72wYQw.png" + }, + { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,Q3ctsvvDDEy_S1TDiGdf6w,DobTmYhC7EigHmvYnCTm3w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bounty Hunter Cape (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1976, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-12-29T17:07:39.543Z", + "ThumbnailImage": "e82j0afggi0d70h9zv4jq8z5q.png" + }, + { + "AvatarItemDesc": "e9913b06-58cb-4b90-bd08-981a3f19f352,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Construction Shirt (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 223, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "7qj8vsrrhy3lfmq74f8h4kp4t.png" + }, + { + "AvatarItemDesc": "e9913b06-58cb-4b90-bd08-981a3f19f352,QXtBrjnRckKJGiRtsy4AVQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science Hi-Viz Vest (Restoration)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2943, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-24T15:25:37.803Z", + "ThumbnailImage": "pfFTo8CNSEWIT3J-S7fQHg.png" + }, + { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Vest", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 805, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:54.373Z", + "ThumbnailImage": "dmp4y6ycyxupuom25j3hzjnwn.png" + }, + { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,fD5vtKxBWECH54Jj4FbnUg,C8gCmBZ8RUG83vvDw_UYew,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Vest (Time Travel Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1081, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-07T00:12:57.15Z", + "ThumbnailImage": "5ozwlaf5193fr6v3ysxikeo2e.png" + }, + { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,gy-xeYKKREaBlx9fUmuW2w,C8gCmBZ8RUG83vvDw_UYew,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Vest (Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1835, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:18:35.98Z", + "ThumbnailImage": "8b66w4zmh5zq171rxofxcml3h.png" + }, + { + "AvatarItemDesc": "ea254491-116c-41c4-a9ca-1fa1fca76374,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hearing Aids (BTE - Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": "", + "AvatarItemId": 2875, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:42.533Z", + "ThumbnailImage": "4lvbe8qhhnk5qhf9gs7iglqbj.png" + }, + { + "AvatarItemDesc": "ea254491-116c-41c4-a9ca-1fa1fca76374,1n-ekJos-EeViiz_zG4jEg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hearing Aids (BTE - Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2876, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:44.563Z", + "ThumbnailImage": "b84s2wgn3n5fz4wcz7jmslcez.png" + }, + { + "AvatarItemDesc": "ea254491-116c-41c4-a9ca-1fa1fca76374,xn8Or1kV-EGhpOqnYj6_0A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hearing Aids (BTE - Gray)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2877, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:12:46.563Z", + "ThumbnailImage": "8v81gej0s8m49iztzzyb4eicc.png" + }, + { + "AvatarItemDesc": "eacebd1a-070e-4733-a6b6-65811ef7891a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stranded Astronaut Helmet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1933, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-03T21:34:19.037Z", + "ThumbnailImage": "0w9bwz7zburoq47xylvojlem9.png" + }, + { + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Gloves (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 510, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:36.92Z", + "ThumbnailImage": "eqstzzls6wlgjfdkwtcpj53gp.png" + }, + { + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,32a5e42d-2b60-40b1-a145-ed96fc91af8e,f4cea991-fc3d-4715-bf82-8a8fb60e8799,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Gloves (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 512, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:38.7Z", + "ThumbnailImage": "bi4tmrffhhhfm5xmt03sfyvnu.png" + }, + { + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,72a010c0-bddd-4e5d-bca6-9821d82de9a6,f4cea991-fc3d-4715-bf82-8a8fb60e8799,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Gloves (Gray)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 511, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:37.89Z", + "ThumbnailImage": "6etin2gx8z6mi85m8niz96so2.png" + }, + { + "AvatarItemDesc": "eb830b12-c1b5-4796-b9cf-ccf0f0e1d4f1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mardi Gras Mask (Orleans)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1324, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-31T00:38:06.11Z", + "ThumbnailImage": "8ucp3apcgf7mvka7m2albckl8.png" + }, + { + "AvatarItemDesc": "eb830b12-c1b5-4796-b9cf-ccf0f0e1d4f1,mkkk2N_2-EKX3pVfk7U5aA,UQe6v62i6ESImdpc7gB_8w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mardi Gras Mask (Parade)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1651, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:56:35.917Z", + "ThumbnailImage": "3lmgppocqd4j182ijbbxl0eo0.png" + }, + { + "AvatarItemDesc": "eb9611c6-bb50-41a2-93e9-7f959815a846,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dreads Long Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 587, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-12-14T01:07:52.183Z", + "ThumbnailImage": "eds0e7isjgdyo1d98d51ibdiw.png" + }, + { + "AvatarItemDesc": "ebdf9a1b-46d2-4960-8da5-0cfa0c0adef2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Jersey (Buckateers)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2079, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:18.75Z", + "ThumbnailImage": "DLbcAnoh6kOcI8vlUfbceg.png" + }, + { + "AvatarItemDesc": "ebdf9a1b-46d2-4960-8da5-0cfa0c0adef2,c3Su0qnh-UK-ymcGaUy4Uw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hockey Jersey (Goblins)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2702, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-12-21T19:41:34.997Z", + "ThumbnailImage": "R1XZo-34Wkm75mdVSeCFPw.png" + }, + { + "AvatarItemDesc": "ec474314-fd79-441d-852b-d8999274fe57,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wavy Middle Part Hair ", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1986, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:43.92Z", + "ThumbnailImage": "bathop4rdgdsysv3jg6wi2uua.png" + }, + { + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Astronaut Suit (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 134, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "60g0w2ayv9lwn8fokpqhccd0m.png" + }, + { + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,9GhnX4Pj4E-wxbPlD8GB-g,YSrGwXybGEqaqHNCS64qOA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Astronaut Suit (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 798, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:30.937Z", + "ThumbnailImage": "4pm9zzbb13116s8257iggug13.png" + }, + { + "AvatarItemDesc": "ec5f5089-7154-425b-8be2-743954ea2d69,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Wings (Crystal)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1717, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:33:55.597Z", + "ThumbnailImage": "345iaeu3y6o2ptwgo6fuggdrw.png" + }, + { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Helmet (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 347, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T23:01:03.37Z", + "ThumbnailImage": "cz08dx8wptcrolonzvozwn4w1.png" + }, + { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,8c74ee27-3d56-401b-8a8c-7868a80770e8,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Helmet (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 340, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T18:21:24.023Z", + "ThumbnailImage": "f54hknoj615yks00svpyjvttz.png" + }, + { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,cea53c7f-24a9-4e3b-80b9-fbf95738f973,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Helmet (Orange)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 338, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T18:21:20.38Z", + "ThumbnailImage": "ef7205mj0de2hjfkm2shgsjo3.png" + }, + { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Helmet (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 339, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T18:21:21.647Z", + "ThumbnailImage": "5f87fvdl1iouxqppbtsu50ic0.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (White)", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1023, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:53.473Z", + "ThumbnailImage": "9a4gj5yigfksglnec4np95a2h.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,0809a5cf-a0f3-4614-9f98-71518524518a,3290f148-1bd1-4ffd-a947-61fd0529af05,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (SciFi)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 564, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-11-13T20:56:59.377Z", + "ThumbnailImage": "btwnqsv2torue6ekxyp3zudoe.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Grey)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 288, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "beff1xr2vo6gnh2vgobzx0hrw.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 684, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:53.36Z", + "ThumbnailImage": "7etdcocmjntbessmyb4q1yrql.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,2qYs9IkE90eppx1DggNlsA,6Y43EyTpiEejGp0ODWTSjA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Moons & Stars)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1867, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:28.487Z", + "ThumbnailImage": "0vdopp5i9bqzer09tpkfgi76a.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,484b6c13-af22-4ad5-8c43-34c0de095d49,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Light Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 289, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0r354na62acon4jev863fj1vh.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Orange)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 685, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:55.043Z", + "ThumbnailImage": "dkn9mf26l54mq2qdaq2wxjmmb.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,5rLtRfNWO0qT7X-0sJkUXg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Lime)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1859, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:07.527Z", + "ThumbnailImage": "c4c0hhlbwpkuvdbt67tg68guo.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Gold)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 287, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "16b0f84wdbvxcp649og13dk8v.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,7d8e55fe-3c34-4b4b-9753-0021f6cc6454,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Cream)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 292, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "el05p2p32cqdh78wlg2aq7vhl.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 683, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:52.017Z", + "ThumbnailImage": "cbxl5wtnmplfz5vth23g97xve.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Ai85jH88H06ze74VdWolfw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Pure Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1863, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:16.72Z", + "ThumbnailImage": "4zk2f1zx0df30rx3r2rafuhsi.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Pink)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 687, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:57.437Z", + "ThumbnailImage": "8ymxu6vs24zw45qrtx7r3wiir.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 686, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-08T05:14:56.233Z", + "ThumbnailImage": "6pf2ftyxdwcm1n73wbvsvqgww.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Dg3DxHr8GU2e190TGveXqw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Baby Pink)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1858, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:05.307Z", + "ThumbnailImage": "2b2f6frv89cqaeuswhoqzwvfg.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,DiJGFIO-5Ue8rkEhvF5-Mg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Sienna)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1860, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:09.723Z", + "ThumbnailImage": "bl1czxrbjmc23vhg7hy87v385.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,f8b0cfe8-e129-4578-8bb5-f60af5d38599,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 294, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "1eoaif6mmgo9dolltq50ob9o6.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,fWxn_AarpESryNA9UN8wvA,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Teal)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1857, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:02.943Z", + "ThumbnailImage": "6utyv84yov0n8z090tcquifk4.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,gOP1m4pVHkmlR2k8RrcdmQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Rocks Wristbands (Ethan Bortnick)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2788, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-03T19:14:03.567Z", + "ThumbnailImage": "0AD75TjNekWbBVUQv0B09A.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,j367nSYyg06rOMZ1GmfmFA,FS7kgc4DpkKuar24J9dW8g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Plaid)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1866, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:25.41Z", + "ThumbnailImage": "43wffwjx8jpzi7e26q188u0mg.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,JV60jZGerUWuzQ2rRnwquQ,gSb8iLTEZ0mi3g5-jZXifQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Polka Dot)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1868, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:31.637Z", + "ThumbnailImage": "c2ypxn1ve868vb7jw2i5vn060.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,M0nOQl44DkG_GjTXzAEQCQ,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Yellow)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1862, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:14.54Z", + "ThumbnailImage": "8w15137vxkyf85ljd9clb74kk.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,NRjJuinZ4ki8qaEPvP84tw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Mint)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1864, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:19.59Z", + "ThumbnailImage": "0saykzdj1mlrn24gfq57ps3yu.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,sEKIlMfbJ0eED6VtcXcQrw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Army Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1856, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:00.87Z", + "ThumbnailImage": "a2n00ipkx8cd6po7pkjti1rsw.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Sg5yKkqJEEulQeUvRhFgJg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Prussian Blue)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1861, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:12.26Z", + "ThumbnailImage": "5s7gwmw9faljog1rm2hdo358p.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,x3kGXCD0UEWkjfXqu_kuxg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Purple)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1855, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:46:58.163Z", + "ThumbnailImage": "4510ib9vx62wtdf62c22d4ll2.png" + }, + { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Z2L6AqDdcUqxiN1mVw-X9g,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wristbands (Light Purple)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1865, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-07-28T15:47:22.28Z", + "ThumbnailImage": "8k3ikhmifw4vcf0qeayqmlzby.png" + }, + { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Cuffs (Black)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 602, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-13T00:04:28.3Z", + "ThumbnailImage": "cwpa2fe7uhjhy2fg8z2bjoqqf.png" + }, + { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,556141f7-6fbc-4065-9faa-8d8240a93d7f,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Cuffs (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 615, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:52.297Z", + "ThumbnailImage": "1ouywwp83tgc11yi3x9wro2bd.png" + }, + { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,d81d0b62-e052-46c2-9252-4bc5fb219f53,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Cuffs (Gold)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 616, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-02-24T02:34:53.48Z", + "ThumbnailImage": "5384s8w1fosxnurfe756wgd0n.png" + }, + { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,xGmnUGF-Ck-jP43r8tVVjg,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pirate Captain Cuffs (Green)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1105, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:48.787Z", + "ThumbnailImage": "cijsojywwytastkrfmnur8m2l.png" + }, + { + "AvatarItemDesc": "ed4439c6-edad-4239-934f-79f9cc816c0e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Banjo", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2365, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T21:47:05.85Z", + "ThumbnailImage": "mrQZPItuWEiqGyXjajov1Q.png" + }, + { + "AvatarItemDesc": "ed4439c6-edad-4239-934f-79f9cc816c0e,7ykIpgU8Tkmmq_zzpjTVrg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Banjo (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2366, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T21:47:08.293Z", + "ThumbnailImage": "6Y0DhxPd1UaxX3rZPdXFYQ.png" + }, + { + "AvatarItemDesc": "ed4439c6-edad-4239-934f-79f9cc816c0e,iqYc9qtbZEig8jl_ZqKe6w", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Banjo (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": "music", + "AvatarItemId": 2367, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T21:47:10.257Z", + "ThumbnailImage": "I6hIZL0Kp0CyPWnLkxSSMg.png" + }, + { + "AvatarItemDesc": "ed695ac2-ff70-4ebe-b1db-18d71a4efdd1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowgirl Vest", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2255, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-07-06T16:31:46.277Z", + "ThumbnailImage": "USrRub60Gk6zTcni3MGCjQ.png" + }, + { + "AvatarItemDesc": "eda29bce-5a07-4439-a2a7-cafa11e2ed62,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Paintball Belt", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1351, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:51:06.837Z", + "ThumbnailImage": "729s6a9tw6yv1xyun76b5zwkz.png" + }, + { + "AvatarItemDesc": "edc7888c-dc42-48ab-8815-884d227760af,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Short Locs Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1984, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-04T17:04:28.523Z", + "ThumbnailImage": "79dqcbiedmmieho50ebbbddj9.png" + }, + { + "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Robo Logo Cap (Blue)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1712, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:33:08.433Z", + "ThumbnailImage": "0jjswupors8a1sy83fp1oeipi.png" + }, + { + "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,W-xMu8n2CUuHSXfHvEL4yw,-apO3Y7om0GKhC4V_hVYdQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Robo Logo Cap (Pink)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1713, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-04T22:33:11.423Z", + "ThumbnailImage": "26f4i1hdx3pb8xotdo0vkhqr9.png" + }, + { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bear Hug Hat (White)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1281, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-06T22:36:23.523Z", + "ThumbnailImage": "e8i3fa3rlphdsfofxs7sewwio.png" + }, + { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,9nPWmpM4mUmEpHfthqYeng", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Honeybear Hug Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2102, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:13.077Z", + "ThumbnailImage": "CneUY-gB-U2whOHJXkONBw.png" + }, + { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,OnZujqqU_UqwxmznvBBMfg,_zrnGn1ErEWR8WqrZmKZsA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bear Hug Hat (Holiday Panda)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1556, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:41:31.55Z", + "ThumbnailImage": "6rqv598elyp668kqusa9g2dxe.png" + }, + { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,XKoxnTXYGkSUu52nVS9dnA,TFOAk7kwh0uUgtsyDNxMuQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bear Hug Hat (Brown)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1557, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:41:33.377Z", + "ThumbnailImage": "0ujfxsx62pzx2i549y1zix2uy.png" + }, + { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beret (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 40, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "8zfbgqf2y36bwmt9v0iq15tuj.png" + }, + { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,_psc7WCgOk2JzRQwuFAqNw,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beret (White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1604, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:30.04Z", + "ThumbnailImage": "16amrlrlhliiat2ld7vswaurs.png" + }, + { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,7_n11PF4-0KqTZ9az23hqg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beret (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1601, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:21.193Z", + "ThumbnailImage": "cpgewpuv8enuu5r81mj51rdpb.png" + }, + { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,8xqL--ghKUunlS0r4ugCgg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mushroom Cap", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2519, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-21T16:39:29.453Z", + "ThumbnailImage": "r4KMHNh_x0-32HKgY1U3sQ.png" + }, + { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,JShcoWWPz0297HeEUJbDCQ,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beret (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1603, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:27.853Z", + "ThumbnailImage": "61ormf3tp9m7rfze5jen89ywn.png" + }, + { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,TKbjEeTWfUyA1u4laoULMg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beret (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1602, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:23.867Z", + "ThumbnailImage": "5sln9xpcozzr4gxw3l8dxk5cs.png" + }, + { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,WeP_tPjUNUuGojXrVBOAIA,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Beret (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1605, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:32.64Z", + "ThumbnailImage": "4b809ml4l1gchsyq9ftgm08bj.png" + }, + { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Vest (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2043, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:07.77Z", + "ThumbnailImage": "1h3kstogj0skzqb4uky1jpnsn.png" + }, + { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,3bqY_T4_HEy406HcXrfLuA,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Vest (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2045, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:12.25Z", + "ThumbnailImage": "07vec7ppqlcv6a60pn9voj1va.png" + }, + { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,aaaG7Fg8fky2dkrwVsA30g,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Vest (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2048, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:18.403Z", + "ThumbnailImage": "25yoikgkjnlbo9c84x1r7rvuf.png" + }, + { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,d0D2htQZvEKajd0oAesNow", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Vest (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2082, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:24.043Z", + "ThumbnailImage": "14cf5es3wgsam3e771iwjkzbm.png" + }, + { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,I4lNZy7lR0uyUN5Vk3fabA,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Vest (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2046, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:14.303Z", + "ThumbnailImage": "3v252zqwrqkn4wxjcllebsnwx.png" + }, + { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,SMeMLRUF-UWrOcXYJzgScw,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Vest (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2047, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:16.33Z", + "ThumbnailImage": "afspou17ntsll0egoozdkp3md.png" + }, + { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,W7E9KfRTLEK-1EZTNKM3Yw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Vest (Space)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2401, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:02:39.463Z", + "ThumbnailImage": "3b5ur52zpzgwpmifcd9wxjdhq.png" + }, + { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,WkI_v-Sua0WlhmMf8R4aGA,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Vest (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2044, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:10.3Z", + "ThumbnailImage": "b94th4lvtw4iu7e3pxussoiwk.png" + }, + { + "AvatarItemDesc": "efac28ae-ff44-4322-9bc0-61eaaef95399,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Dragon)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1825, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:13:42.613Z", + "ThumbnailImage": "bdeaw4skm15u253skgs4rtpe9.png" + }, + { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Blue Sweater Scarf", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2888, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:13:10.873Z", + "ThumbnailImage": "IMgfGlThV0q8ilEF8MG5ew.png" + }, + { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,0JVWqxXYoUqgI-5ORIr0bA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Purple Sweater Scarf", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2891, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:13:24.203Z", + "ThumbnailImage": "MsgTxG94f0-timzwekDXSg.png" + }, + { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,LVuUiGBtn0mp4Wfs-2F5EQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweater Scarf (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2890, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:13:20.827Z", + "ThumbnailImage": "d6Ry5ZkLGke8F2jv7aYoxw.png" + }, + { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,R8VYB2EGPkmQX4dbmGLuRA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweater Scarf (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2892, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:13:27.517Z", + "ThumbnailImage": "XrXf6JrQaU6tG5MV94TFSQ.png" + }, + { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,wCCq14_wc06hkmjg6TTFxw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Sweater Scarf (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2889, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-20T19:13:17.437Z", + "ThumbnailImage": "HGZ5flmXY0Ow5pQH-q3L-A.png" + }, + { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Flamingo)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1073, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:26:04.96Z", + "ThumbnailImage": "aasr0sd35kmv6vhgbs9znxafg.png" + }, + { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,9WpjdWJbhkCoEgDljqZkdw,Uyn3QOl1zkGR2_OUOhNWjQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Rubber Ducky)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1824, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:13:36.107Z", + "ThumbnailImage": "bs25xo0gnja1akbu4eg7q8dor.png" + }, + { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,hM0OmxjWLESbsJ-M0Z3QvQ,qZzkrGXpPkGq_nnGLZorwA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Parrot)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1451, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-05-13T21:05:42.217Z", + "ThumbnailImage": "8t2f1nmayxxozgvqs90t59neh.png" + }, + { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,k3dbqP5z30KU37MVPpsEPQ,GtoHkTpyA0iGIHsxphwivg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Dino)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1074, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:26:07.377Z", + "ThumbnailImage": "bxj3pn647bzr2jpxm9myh6ret.png" + }, + { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Glove (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 781, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:08:06.297Z", + "ThumbnailImage": "by0enw83tqi7qq14gmpytpavy.png" + }, + { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,1FcyrVGyGEC9dmOq_51nFQ,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Glove (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 942, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:20.04Z", + "ThumbnailImage": "6tq3bm6g7idt1uv2itnhf5qb9.png" + }, + { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,LDjFJtM-WkeYhtwA7cyDOg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Glove (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1821, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-04T16:12:43.27Z", + "ThumbnailImage": "9y4m58z1b4kasw620juo4nihy.png" + }, + { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,N9CBuYaMtUOrCks5UcOycg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Glove (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 944, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:22.023Z", + "ThumbnailImage": "2dr1z7istjp1d0bnqdoebk8ne.png" + }, + { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,xpkEQ6yjhU-WfFPSjvPdHg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Glove (Orange)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 943, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:21.04Z", + "ThumbnailImage": "6qwl1qaaam1kkaku033yyeppd.png" + }, + { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,zaSTWOUy_k6cnoVVYzypWg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Glove (Teal)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 941, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:14:18.76Z", + "ThumbnailImage": "1qj8ezhvwgdu6g4waborypyet.png" + }, + { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Plastic Sunglasses (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 756, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T19:04:21.037Z", + "ThumbnailImage": "7hwrwj6lty2rur9opjp05fgej.png" + }, + { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,0svDrGn2NkmhUjC1VJUgRg,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Plastic Sunglasses (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1643, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:47:03.33Z", + "ThumbnailImage": "egy0vqy333fqme7jsrxachsgt.png" + }, + { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,Aq4fjEW5gEyzetXMoG2tdQ,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Plastic Sunglasses (White)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1644, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:47:05.4Z", + "ThumbnailImage": "0hvhuyqd3i33hptb6ljvlazeo.png" + }, + { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,SmRcrycMZ0qYNsHuQQOORA,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Plastic Sunglasses (Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1642, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:47:01.31Z", + "ThumbnailImage": "ec4tf5t9oqy8loqqvqfrw3rl5.png" + }, + { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,z-yaXP9ImkysLOGuCQiblw,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Plastic Sunglasses (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1641, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:46:59.473Z", + "ThumbnailImage": "8oaudlg81glmnhd3cqy8t650s.png" + }, + { + "AvatarItemDesc": "f09be0ec-19eb-4443-843c-b387b6731e48,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "He-Man Hair", + "Tooltip": "", + "Rarity": 20, + "TagList": "", + "AvatarItemId": 2576, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:32.35Z", + "ThumbnailImage": "d7RSXQeGNE2FITMNS4x9lA.png" + }, + { + "AvatarItemDesc": "f0abcb90-d8e7-414a-b81b-a2aafacd4dac,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousCatNoirGlove_Wrist) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1995, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:10.02Z", + "ThumbnailImage": "2dpq3dcn5tt6gohq1e92zn647.png" + }, + { + "AvatarItemDesc": "f159e878-7563-46db-b59d-c838612a0a78,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teela Tiara", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2584, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:50:49.79Z", + "ThumbnailImage": "yCbSGCAoBUyP8osA23LjDw.png" + }, + { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fae Horns (Fall)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1436, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:49:49.59Z", + "ThumbnailImage": "65ofog1r81v83c1zkimz5dc7n.png" + }, + { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,M16XTvLPKUWRpiAspgsatQ,tmaPvkx3BUOZ3nsl2E0oRw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fae Horns (Summer)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1437, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:49:57.36Z", + "ThumbnailImage": "aom69vkzej29cjh1jcqgxddom.png" + }, + { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,OxO9ivoKB0e-fNIEk33Erw,tmaPvkx3BUOZ3nsl2E0oRw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fae Horns (Spring)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1752, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T01:39:49.937Z", + "ThumbnailImage": "bq7qytcrpeczoqxkplbewz1uf.png" + }, + { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,rXhNZtcZCU21dwEHOCgWOA,tmaPvkx3BUOZ3nsl2E0oRw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fae Horns (Winter)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1438, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:49:59.327Z", + "ThumbnailImage": "8s3arpmce6wx552qttsj9og6n.png" + }, + { + "AvatarItemDesc": "f17a2f9e-1eab-44e8-b10a-1f53c5d0778c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scientist Hair", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 94, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2t2ujgsm8dnv8j9ax7bmlsnsd.png" + }, + { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Astronaut Helmet (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 38, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3xwp4xtloierefgfubh97k778.png" + }, + { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,JFalLDUvm0aMm3wh1UVfVg,iQjkS1xYP0S63ltvKpkz5g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Astronaut Helmet (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 785, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:22:47.873Z", + "ThumbnailImage": "2ovfqg649aj942uo3a5rqkbni.png" + }, + { + "AvatarItemDesc": "f23e86eb-8b59-4b32-a72a-5d382568e399,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bard's Vest", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1887, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-12T17:06:20.927Z", + "ThumbnailImage": "25kjk74xrqchihponvtrfcese.png" + }, + { + "AvatarItemDesc": "f23e86eb-8b59-4b32-a72a-5d382568e399,wuCrGxBRQUa5BLwx1nASPw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bard's Vest (Solstice Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 2503, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:50.04Z", + "ThumbnailImage": "VHA9zLkhZ0uAaJkYQaimwQ.png" + }, + { + "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ranger Hat (Tan)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 688, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-31T00:52:08.59Z", + "ThumbnailImage": "eabi5cm8xoboqpioo9h705aih.png" + }, + { + "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,d0bb468c-b78f-4e80-916d-65fec3ec0010,0272eb19-fc0e-4ad6-8db9-cc0cda2528b0,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ranger Hat (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 697, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T19:45:47.8Z", + "ThumbnailImage": "58ktghs1gt48t0xa8cgyrvrhr.png" + }, + { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tutu (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2084, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:29Z", + "ThumbnailImage": "rZx9UCnz6kWaUo6z050exQ.png" + }, + { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,6fp7nDdMvU6Ig-EmvjMpIA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Tutu (Mint)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2840, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:59.603Z", + "ThumbnailImage": "kafLNepzrUqLnxh9kG5Nxg.png" + }, + { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,lBkOSQNDZUOvoknntnEMew", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Tutu (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2839, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:57.557Z", + "ThumbnailImage": "0ItXnzo230qoec69LEGbBg.png" + }, + { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,sq5Qv4nVAUqzhMdB7U2MVQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Purple Butterfly Tutu", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2841, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:31:01.587Z", + "ThumbnailImage": "NpnrKR1oZke3h0i8odmHGg.png" + }, + { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,UjSxxUK7z0GGdjvI_NsJ3Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Tutu (Monarch)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2842, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:31:03.587Z", + "ThumbnailImage": "Ts-p4lQTo0qU3LNY7YIW3g.png" + }, + { + "AvatarItemDesc": "f2c1c5e3-b201-4d34-9ce6-3082ff7e5d42,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bounty Hunter Belt", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1549, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-20T23:40:00.433Z", + "ThumbnailImage": "0rwlmd8pei5yizua0rge6be77.png" + }, + { + "AvatarItemDesc": "f2c1c5e3-b201-4d34-9ce6-3082ff7e5d42,szDKGCS30UCwXJJcVocFDQ,3v_zUVDTUku_iEf-olDk1w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bounty Hunter Belt (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1932, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-01T21:38:20.543Z", + "ThumbnailImage": "7hb7tjten2kt2wn72jc6b3djj.png" + }, + { + "AvatarItemDesc": "f2db0ec1-e536-4218-8385-dc6913941880,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cosmic Hero Gauntlet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1921, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-10-05T22:17:06.003Z", + "ThumbnailImage": "b8r15kxxhpkjnd8grlinjcsqd.png" + }, + { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Swimsuit (Yellow)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 181, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "5bmu6mglbinvcbqu05awxhls9.png" + }, + { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,27680277-aec1-41be-a476-9f51cf775580,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Swimsuit (Purple)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 435, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:03.657Z", + "ThumbnailImage": "3bd0st7c55qfn1i4j4cuevmu6.png" + }, + { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,5a96ac4d-03c3-4214-9dcb-c2044ff28f2e,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Swimsuit (Grey)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 436, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:04.953Z", + "ThumbnailImage": "7kp3fr2rwvgorhc9uaqpahhmb.png" + }, + { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,cf515c87-3c0a-4443-9f63-5ea1bdbaa61a,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Flower Swimsuit (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 434, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:02.42Z", + "ThumbnailImage": "3oz7p1t6fe7pqfgq0hoilmiey.png" + }, + { + "AvatarItemDesc": "f47f81e7-fcdd-4687-9b99-013147bef30f,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Safari Belt Sash", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 370, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-06-29T22:50:10.177Z", + "ThumbnailImage": "28rrsgo2cs68zome98ef6on9s.png" + }, + { + "AvatarItemDesc": "f4f372b8-33a1-462e-a9f7-8a0e85b2c0d7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mystic Mantle", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2160, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-04-05T20:23:37.857Z", + "ThumbnailImage": "CCrSa0uGc0u9LuDrRzUoeQ.png" + }, + { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belted Dress (Red)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 203, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3q137204ani35lep2nt9a2rx9.png" + }, + { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,5b58d879-2bc4-47ed-a996-1af2ace16425,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belted Dress (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 204, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "cm21tbv0v6i0hf0k70bpbha7b.png" + }, + { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d320ad9b-ba5c-45ea-b2b8-0d3e409a9db1,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belted Dress (Black)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 205, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "74y7j6vz7569lkpcqb2fje2p0.png" + }, + { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d61711fd-589a-4669-b991-9408a58fffd9,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belted Dress (Cream)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 206, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "2ikovokydhafpprj55cpdyk5m.png" + }, + { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,MIfCkcrFOEasJqfDmxThdw,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belted Dress (Purple)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1608, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:43.47Z", + "ThumbnailImage": "8ur3yl22591shtrv2px510hqi.png" + }, + { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,oJFfs62tR0WVRry2Smt8yA,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belted Dress (Light Blue)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 1607, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-12-16T01:18:39.843Z", + "ThumbnailImage": "5l9wcvzyx9vvzrqe84ohl0s72.png" + }, + { + "AvatarItemDesc": "f51abeae-7c5d-4065-aa2a-b2e7025b3fcd,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fae Tunic (Hidden Worlds Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1764, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-19T20:29:33.157Z", + "ThumbnailImage": "ehfh8lkiq0cqwio8dxk9kdg0y.png" + }, + { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Square Glasses (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 103, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "4t9vou7x5a8b92tyr0k4wzzza.png" + }, + { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Square Glasses (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 646, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:30.333Z", + "ThumbnailImage": "2p1yfnex9n9efclfrdg5v75cm.png" + }, + { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,c5884778-a87f-4612-9717-86fbb65d440f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Square Glasses (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 647, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-04-30T23:07:31.443Z", + "ThumbnailImage": "9rp7mz69wmhupgeve23u4kbt6.png" + }, + { + "AvatarItemDesc": "f5b01307-e495-469c-afac-c10f375cffb0,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yoga Mat", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2118, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-23T23:49:32.75Z", + "ThumbnailImage": "f5pXQnYPQUK8GU0CzpeWig.png" + }, + { + "AvatarItemDesc": "f5b01307-e495-469c-afac-c10f375cffb0,lIURXMnmn0GcYFUVSXHzWA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Yoga Mat (Boogie)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 2420, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-09-13T17:03:36.54Z", + "ThumbnailImage": "xFNT1OMmg0O3cQ3aagkA8Q.png" + }, + { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Hat (White, Blue, Gold)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 66, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "ajleo52n1fi9sfdklgfwqj0fo.png" + }, + { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,2738ab5f-8c94-46b3-bac6-4a8111c41c21,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Hat (Pink, Black, Pink)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 554, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-09-26T21:31:46.72Z", + "ThumbnailImage": "6hqhj2g8w7mvm85ibz82mgre5.png" + }, + { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,36e63797-5a42-4779-a5cc-ef5c2e7d17d4,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Hat (White, Black, Silver)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 68, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "3ifixksiv9byqkl1zzr14g6m8.png" + }, + { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,70112887-dc8d-49d5-96ed-0845204e0b58,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Hat (Black, Black, Gold)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 69, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "8v6gk9097bsjdumvvi0xe4uk5.png" + }, + { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,f5403c89-9769-479b-8a05-c71607f9b189,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Hat (White, Black, Gold)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 67, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "abjufv7nbd5ja0vwk6hsiu952.png" + }, + { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,hhs9GY3XZkWb-8TXODvo6A,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Captain Hat (High Seas Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1222, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-11-19T19:34:17.873Z", + "ThumbnailImage": "af4dh1nguqj29w27x7rk4ev5y.png" + }, + { + "AvatarItemDesc": "f60e093f-33be-4527-b827-060adc77b1f4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Cap (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 690, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-31T00:52:13.777Z", + "ThumbnailImage": "1x9c7tsi208t2ykfb3m4oc9je.png" + }, + { + "AvatarItemDesc": "f60e093f-33be-4527-b827-060adc77b1f4,0d2830e7-8eb0-4fa3-99bc-7c80f01dd991,464fcf20-361f-4dc9-b074-150c3bc27523,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scout Cap (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 698, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T19:45:49.567Z", + "ThumbnailImage": "29hnpj9lbliny7rio545fdave.png" + }, + { + "AvatarItemDesc": "f61eb9cc-c0d3-4b45-a7b7-b6c69e5e6db4,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Red Panda Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1790, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-05T17:42:31.167Z", + "ThumbnailImage": "4i7ompfsh19q8naq86uvyacc4.png" + }, + { + "AvatarItemDesc": "f641d4f4-e197-4cf4-b477-89069797967d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Edgy Earrings (Gauge)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2718, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:13:56.887Z", + "ThumbnailImage": "9ter0n7sprtghgk2o4clgjugr.png" + }, + { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headband (Frosty)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2505, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:56.097Z", + "ThumbnailImage": "pSMu4GZwPkaYjHeVvrdP0Q.png" + }, + { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,6JihVI8pm0eJ-wDWuXm0sg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headband (Hawk)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2506, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:58.43Z", + "ThumbnailImage": "yMQVOtm_EEeDJjnd-mgvQQ.png" + }, + { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,g14i4cTzkUu6RCOELBZEZA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raven Winged Headband", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2509, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:29:20.47Z", + "ThumbnailImage": "9quIlEDlukSdbauAxP4n8g.png" + }, + { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,JUOrYcAd7U-ChkFZRiBeKA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headband (Fire)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2510, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:29:22.853Z", + "ThumbnailImage": "CHZHjVfzp0mycor85z3G_Q.png" + }, + { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,wwT8NdC-bk-aAWLoJvef5A", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headband (Ice)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2507, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:29:13.117Z", + "ThumbnailImage": "F5yTEJXfq0GxW0BX6wKrmA.png" + }, + { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,yxBqgXjlVEeRUOC_6iv77g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Headband (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2508, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:29:18.087Z", + "ThumbnailImage": "7cUt9iO5Y06r9k3KfGPwGA.png" + }, + { + "AvatarItemDesc": "f684d86f-4a75-4a9a-bc0a-cf58f36c91c5,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Stunt Shades (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1140, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:31.913Z", + "ThumbnailImage": "6k0yaoht3qdepv964z904hrm7.png" + }, + { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Server Dress (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1343, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:23.187Z", + "ThumbnailImage": "6840rnvh9m72ksb1xw4y69cp3.png" + }, + { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,GQSpXmD0B02_gwzpq6StFA,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Server Dress (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1344, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:28.02Z", + "ThumbnailImage": "9cewy2sbl6u8ip4456pu20bad.png" + }, + { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,YvPeCbQS2UOcLjPfoIML_g,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Server Dress (Yellow)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1345, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:32.26Z", + "ThumbnailImage": "2vipnhbzbw003kcmye8831wbk.png" + }, + { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,zGOD45zNAk2i6P_zPsNPfg,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Server Dress (Green)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1346, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:50:38.177Z", + "ThumbnailImage": "8657c4mdn19tdzvke8uu9mztu.png" + }, + { + "AvatarItemDesc": "f6eee46c-084b-473e-954b-a0c8aa99a02d,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Amulet of Elseware* (Cursed)", + "Tooltip": "A mysterious and powerful object from an unknown place. No one knows what it does yet but it seems to respond when worn... (Catalyst)", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2301, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:51:43.373Z", + "ThumbnailImage": "7YFPA4lmf0iQcexgqXhxaA.png" + }, + { + "AvatarItemDesc": "f6eee46c-084b-473e-954b-a0c8aa99a02d,qbEYPChG5EmnFDUfzwAakg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Amulet of Elseware (Cleansed)*", + "Tooltip": "", + "Rarity": 50, + "TagList": "elseware", + "AvatarItemId": 2563, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-15T19:05:57.39Z", + "ThumbnailImage": "egJ0Guweb06skCFq1ExhQw.png" + }, + { + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Shirt (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 506, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:33.037Z", + "ThumbnailImage": "67p6qo2ys9s1k0dg867wt3hlo.png" + }, + { + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,4c845dbb-26c3-48a1-b562-e28a7416b154,6ce21c65-f4e9-41ac-be94-8eb1a08d5c76,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Shirt (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 507, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:34.17Z", + "ThumbnailImage": "arl9g7pg2z44m7uqebdjk9ool.png" + }, + { + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,96e2b29e-e553-40f1-9eb6-8a9f7e64da39,6ce21c65-f4e9-41ac-be94-8eb1a08d5c76,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Golfer Shirt (Grey)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 508, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-14T23:02:34.97Z", + "ThumbnailImage": "01ylknc03jnajh84tyy03knwg.png" + }, + { + "AvatarItemDesc": "f7764314-c02c-4b46-9c56-8c60351d9b14,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Gentlelady Gloves", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2374, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-30T17:42:33.813Z", + "ThumbnailImage": "67o7qPb1O0q7OC60gJfjew.png" + }, + { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Helmet (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2037, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:09:54.737Z", + "ThumbnailImage": "X2KqX8rMj0WzdutVcCYmhQ.png" + }, + { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,3bqY_T4_HEy406HcXrfLuA,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Helmet (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2039, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:09:59.173Z", + "ThumbnailImage": "nmOyhPcHDkG33U0RQ55jZg.png" + }, + { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,aaaG7Fg8fky2dkrwVsA30g,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Helmet (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2042, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:05.497Z", + "ThumbnailImage": "I1pEVWdT3E-DLY2hkN88qQ.png" + }, + { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,GSO7t0cNs0SIbU-jQjnX5g", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Helmet (White)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2081, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-02T19:44:22.753Z", + "ThumbnailImage": "5lE9WIsg6U67neLntaKrvQ.png" + }, + { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,I4lNZy7lR0uyUN5Vk3fabA,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Helmet (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2040, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:01.27Z", + "ThumbnailImage": "rVOFYXLD1UOM6Gx-rJT_-g.png" + }, + { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,SMeMLRUF-UWrOcXYJzgScw,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Helmet (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2041, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:10:03.413Z", + "ThumbnailImage": "1825duyZL0qQprGQokp2Lg.png" + }, + { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,WkI_v-Sua0WlhmMf8R4aGA,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Trooper Helmet (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2038, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:09:56.89Z", + "ThumbnailImage": "4iczDP9r4EqWpK0IGEcJ8g.png" + }, + { + "AvatarItemDesc": "f8514fc6-93f3-4063-bafc-378ddf454836,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Edgy Earrings (Dangle)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2717, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:13:54.73Z", + "ThumbnailImage": "4jhq0ihf9i0h357l82r1f4ugm.png" + }, + { + "AvatarItemDesc": "f90773c6-d0f0-417a-9af5-183d1e5a657f,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Glowstick Necklace", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2831, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-03-03T19:30:37.933Z", + "ThumbnailImage": "GenNVM5HVEKt_DZK0VQsQw.png" + }, + { + "AvatarItemDesc": "f9dd08f8-16d3-4c39-af4f-89f7bb6e80d3,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Undercut Short Hair", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1003, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:16:26.22Z", + "ThumbnailImage": "4wmgnksu1wj9yabh6v9uxjmtp.png" + }, + { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Bracer ", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1469, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-24T21:34:15.137Z", + "ThumbnailImage": "d6wng88epebl3fbw0v5p6llyl.png" + }, + { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,nNJ8Tkg57k6pTS_0HSLkUQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Guy Bracers (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2112, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:28.88Z", + "ThumbnailImage": "dfP4cWSPL0qZYIPW3aBHmA.png" + }, + { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,oCeStQfVkE2ZwCcQjtV1bg,r94RX2106E2TRK2wQ-u8-w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Bracer (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2010, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-20T01:07:17.867Z", + "ThumbnailImage": "duphs7n0pfrpd3ttpnqv1dzot.png" + }, + { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,VmHQJIt7HkO4INJEXCBbNA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Bracer (Pink)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 2113, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:30.25Z", + "ThumbnailImage": "xukCmMKpjUaYrqcBdb18OA.png" + }, + { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Secret Mask (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2543, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-26T15:37:08.29Z", + "ThumbnailImage": "yCllwTBTl0yS2I5e-uCk5A.png" + }, + { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,2U3ZEvBzoESCb7kk4zSokQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Secret Mask (Black)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2544, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-26T15:37:10.367Z", + "ThumbnailImage": "udVHYjEfKUWkjL-2WA5Etg.png" + }, + { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,8kAqQHAgnUypHdxnwVSQwQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Secret Mask (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2551, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-26T15:37:27.05Z", + "ThumbnailImage": "wAPE0uRkEkivSTVbtq2xDQ.png" + }, + { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,kfZalp0wCkypX-QDhF0YoA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Secret Mask (Red)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2549, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-26T15:37:23.48Z", + "ThumbnailImage": "G-NyjtfwGk6tNxEwpb3r1w.png" + }, + { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,l1cBXE49rkKTDEl1NvmWog", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Secret Mask (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2548, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-26T15:37:21.747Z", + "ThumbnailImage": "5cJBLmj_M020xDeOBjTGfg.png" + }, + { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,MYCVPJDuz0Od_aZJekuWGA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Secret Mask (White)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2550, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-26T15:37:25.22Z", + "ThumbnailImage": "dbd2B8AH_ESr4B382zo8zg.png" + }, + { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,oDkSnfL7Vk64ZdxkuenEmA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Secret Mask (Pink)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2547, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-26T15:37:20.16Z", + "ThumbnailImage": "zAnC5sdLVE27dsVXv-pKug.png" + }, + { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,pUHlnnttXUmqP-9Rab8YaA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Secret Mask (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2546, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-26T15:37:13.753Z", + "ThumbnailImage": "WGlj0EddtEuIpKKzqJ0XVA.png" + }, + { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,S5IPVluRPkWzapjf7Bdtxg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Secret Mask (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2545, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-26T15:37:11.993Z", + "ThumbnailImage": "1oQmhaLu1USd36z3vIXSkw.png" + }, + { + "AvatarItemDesc": "fb2a0e86-3363-4579-9f18-f41138dc85ba,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wolf Amulet", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1873, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-08-03T19:17:31.083Z", + "ThumbnailImage": "dachlbubxeuputz2ewly8je7l.png" + }, + { + "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ranger Uniform (Tan)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 693, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-05-31T00:52:18.967Z", + "ThumbnailImage": "e2oxz7ylbhkwldqs5mqnxnqzb.png" + }, + { + "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,b415fe60-3e9d-4f4d-a53a-ca15eac6af7d,d21e1b6f-9c9e-42b4-bad5-201ec43161e9,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ranger Uniform (Green)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 700, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-06-05T19:45:51.707Z", + "ThumbnailImage": "6r3jp2iifvxn0dpu7pmhfzw0a.png" + }, + { + "AvatarItemDesc": "fbdca48d-4ae6-41ad-8c33-b70a9e33fd77,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Action Hair", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1282, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-06T22:36:40.18Z", + "ThumbnailImage": "7e934oy5eg0xzkuoeyk090u8w.png" + }, + { + "AvatarItemDesc": "fbf74c15-4b42-4cd4-94dd-d0e86f11541b,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Heart Antennae", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2720, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-10T00:14:00.61Z", + "ThumbnailImage": "r0K8LjSj0U2lRyRwptpOoQ.png" + }, + { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chicken Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1751, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-04-02T01:39:41.583Z", + "ThumbnailImage": "az5ok7syap6nxgjegr2yu68bu.png" + }, + { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,4v1-TIIgnU-sg5ROppnEPQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chicken Hat (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2499, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:42.277Z", + "ThumbnailImage": "PO9FzkR9AkerfmOa9FPB6w.png" + }, + { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,AvIuVibXj0u7UzWFh90_LA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Pink Chicken Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2501, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:46.187Z", + "ThumbnailImage": "Gh8G1oJ4Zkmt6qsBqaj_XA.png" + }, + { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,fF9qwnew3Eao2gF0xcOqrw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chicken Hat (Yellow)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2502, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:48.1Z", + "ThumbnailImage": "aRh-bOy1702NIh5iAUUksg.png" + }, + { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,wl3nqp4FsU2wqEkYFqv3_Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chicken Hat (Brown)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2500, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-10-17T20:27:44.243Z", + "ThumbnailImage": "_inbDi877kyEOl5VH0d_AQ.png" + }, + { + "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Butterfly Wings (Cool Mint)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1362, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-17T19:30:10.133Z", + "ThumbnailImage": "7l8qp4zd4ankofzt9s3j5k8c6.png" + }, + { + "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,opDwtb3OdESsA2Zpfx7luQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Moth Wings (Pepper)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2105, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:17.16Z", + "ThumbnailImage": "4ypuue6OM0Si-gMkXnm_LA.png" + }, + { + "AvatarItemDesc": "fcfcaf63-deb4-45f7-b711-c051c9ea45cb,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Top Bun Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 390, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-05T21:28:28.203Z", + "ThumbnailImage": "5n8kq96onh4dhg7u9k46jmucw.png" + }, + { + "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mermaid Dress", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1464, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-17T20:43:35.27Z", + "ThumbnailImage": "5rcywgkgsd6v3ov5jeez13xtz.png" + }, + { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Hat - Pride (Rainbow Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1459, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-03T01:07:42.343Z", + "ThumbnailImage": "0c78877wqm87gczt3yy70z08e.png" + }, + { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,6547pqf6vUm2L89AG6D91A,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Hat (Raven)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1558, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-24T01:55:55.84Z", + "ThumbnailImage": "dym59p1zihb18nmd4gfuzr226.png" + }, + { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,knXPidb-Rkayfc3kSHfZeQ,1yMyo6oTjU-VAygoeWaohQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Hat - Pride (Trans Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1460, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-03T01:07:45.22Z", + "ThumbnailImage": "7ulpsllq59oaufnjyuw78wn2q.png" + }, + { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,nn86ATWxekWdIGlPePPgGQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Hat (Vintage)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1545, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-14T18:27:51.293Z", + "ThumbnailImage": "bwisaai6w6aje9vyxb5oi2qbp.png" + }, + { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,oxi26T5a4U6L73pF-Pgrhg,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Hat (Grackle)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1559, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-24T01:55:59.53Z", + "ThumbnailImage": "8czrpcicgmpn30oiwunhjkdov.png" + }, + { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,Rf7CDh2bg0-HdG5n7phGaw,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Hat (Thornbill)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1546, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-14T18:27:55.187Z", + "ThumbnailImage": "22evbpym92jss1q2zzd8hgkb7.png" + }, + { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,tXhgU1o_wkaNQ-7P3KXidQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Winged Hat (Kingfisher)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1544, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-14T18:27:47.607Z", + "ThumbnailImage": "16g4r2mkpxrh4o9sywb6mqjwm.png" + }, + { + "AvatarItemDesc": "fe16e054-9cae-4a97-a0c0-256b51cdb0e5,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Microphone Glove", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2742, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-01-23T22:38:52.18Z", + "ThumbnailImage": "i6sQmmZpgEWvZNkWaYpaWg.png" + }, + { + "AvatarItemDesc": "fe2721b5-16c8-4d9d-bca5-0233ab008fbb,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "NBA Wristband", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2120, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-29T18:36:40.037Z", + "ThumbnailImage": "gq5kauTaAU2sDicXqi98Qg.png" + }, + { + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scientist Coat (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 247, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "17egpclh4qfjwpauvfot65edy.png" + }, + { + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,KTidYfH0ckWxJGs5qzUBTQ,w07bkcUoQEiNJTVDeSywzQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Scientist Coat (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 795, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:23.52Z", + "ThumbnailImage": "0xvbjj5mp2xmnu3w4g7m7c9px.png" + }, + { + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,X0nzvhAtgEKqzjQPb9d3qQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Science PPE Coat (Restoration)", + "Tooltip": "", + "Rarity": 50, + "TagList": "invasion", + "AvatarItemId": 2929, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-07T18:16:05.03Z", + "ThumbnailImage": "oDUFSXJI5E6fmcsxJqMskg.png" + }, + { + "AvatarItemDesc": "fe85784d-070d-4b33-82a2-e0875da053d6,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "(MiraculousCatNoirMask_Eye) ", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1993, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-06T00:44:03.603Z", + "ThumbnailImage": "2qk8k1ry8kme3fai13fs7y5na.png" + }, + { + "AvatarItemDesc": "feb8b50b-d3da-4e45-b4d0-69aeeb5cfeb3,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headdress (White)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2334, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:00.877Z", + "ThumbnailImage": "3PQQmjlqZE2pSQnjsADLfw.png" + }, + { + "AvatarItemDesc": "feb8b50b-d3da-4e45-b4d0-69aeeb5cfeb3,1WBsT99QM0anps6ZoWE59Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headdress (Red)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 2336, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:05.773Z", + "ThumbnailImage": "ad1rqlw7oUiEHiwbXRJHuQ.png" + }, + { + "AvatarItemDesc": "feb8b50b-d3da-4e45-b4d0-69aeeb5cfeb3,gLCis5TFxEyRvvZ0PZq_Jw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headdress (Black)", + "Tooltip": "", + "Rarity": -1, + "TagList": null, + "AvatarItemId": 2335, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-22T20:33:02.983Z", + "ThumbnailImage": "hgq25v2vbk6EY3TPtz8O8A.png" + }, + { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boxing Shirt (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 222, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-04-05T23:43:35.977Z", + "ThumbnailImage": "0mfqwinkpsyr6llxo7yocofz3.png" + }, + { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boxing Shirt (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 437, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-07-06T20:40:05.883Z", + "ThumbnailImage": "1dwa5wuhnhdrvml7z2kour4vi.png" + }, + { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,rzUd1IMTKUmW0HeMPSIOBQ,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Boxing Shirt (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 881, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:03.033Z", + "ThumbnailImage": "a9oypi8hweb517wrupg36vi1w.png" + }, + { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chef Coat (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1141, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:01:35.303Z", + "ThumbnailImage": "5bz83i3j02o47w4zlz433lomz.png" + }, + { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,PR5dh2jf2kqGLO0lXgA69A,VDn1hO6ahky0GDJt5dRmyg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Chef Coat (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1574, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-28T00:37:55.277Z", + "ThumbnailImage": "9lxxqrqcchmxcnzz3uf7de4kv.png" + }, + { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Uniform (Green)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 349, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T23:01:07.113Z", + "ThumbnailImage": "1wcxmgwhypyd2evqqigqmes19.png" + }, + { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,8c74ee27-3d56-401b-8a8c-7868a80770e8,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Uniform (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 343, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T18:21:29.12Z", + "ThumbnailImage": "8ko7qcft9b1b9aubbimm8cjfb.png" + }, + { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,cea53c7f-24a9-4e3b-80b9-fbf95738f973,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Uniform (Orange)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 341, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T18:21:25.143Z", + "ThumbnailImage": "1d9tx3eid2kmtnq3wejxoceub.png" + }, + { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Fighter Pilot Uniform (Blue)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 342, + "IsBaseAvatarItem": false, + "CreatedAt": "2017-05-16T18:21:27.42Z", + "ThumbnailImage": "bfv2kddhqvn7dw1f648zhjf63.png" + }, + { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Guy Armor", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1467, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-06-24T21:34:06.567Z", + "ThumbnailImage": "6lr4h9o5e2b37vr6d9nn7tkw9.png" + }, + { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,JY4zXsTbX0W1sU6g1o4kuw,Y-XQzHOjIkC_-it1j9m9jA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Guy Armor (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2009, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-01-20T01:07:11.173Z", + "ThumbnailImage": "56tgu6gfzoy6bro091y5liea7.png" + }, + { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,trFPTiehdUm2Q3bdvBQr7Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Guy Armor (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2108, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:22.763Z", + "ThumbnailImage": "bGfb7o8B7U2W6pcvZdElGw.png" + }, + { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,W_AVltwf7kSzmftSsGdijw", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Hero Guy Armor (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2107, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-03-15T22:20:20.747Z", + "ThumbnailImage": "iVc5S7VHGE6_DP6V_NdRXg.png" + }, + { + "AvatarItemDesc": "ffea7a65-613f-4835-921e-6dd15f357b7e,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Long Bangs Hair", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 621, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-03-22T19:07:26.873Z", + "ThumbnailImage": "91fafagogc6ouzeyn500okchs.png" + }, + { + "AvatarItemDesc": "FHKZvPFMLkO8iAIPPQzu1A,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Swing Dress (Hearts)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 967, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-01T22:13:02.683Z", + "ThumbnailImage": "0mvz1timijk659hshhzec8jtt.png" + }, + { + "AvatarItemDesc": "FHKZvPFMLkO8iAIPPQzu1A,K17dIz_TRUq5D50NBfLjyw,3drRcfyKkku0qGwCy16m9Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Swing Dress (Shamrock)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1353, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-03T01:43:35.08Z", + "ThumbnailImage": "6zl0lixajd47uo5t8r26lce00.png" + }, + { + "AvatarItemDesc": "FHKZvPFMLkO8iAIPPQzu1A,PEGqjoxP6E2yRx_A-HphrQ,I_OF1c0YWESMwxJr9sXYOA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Swing Dress (Candy Cane)", + "Tooltip": "", + "Rarity": 30, + "TagList": "holidays", + "AvatarItemId": 1255, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:48.803Z", + "ThumbnailImage": "3rls67cl0dxudh9kj7rqgqzlp.png" + }, + { + "AvatarItemDesc": "GAWURQSqrEW4G5slrPMgZA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dude Sweater", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 825, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-15T22:53:20.877Z", + "ThumbnailImage": "2rglb359vpaaizusjkmzxzqiu.png" + }, + { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Topper", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 784, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:22:45.167Z", + "ThumbnailImage": "bts86kl55yir0z5wcudycjvob.png" + }, + { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,AAbGHOOitUu9enweOXbrkw,fXnd_COSzUeznwe7P4ZYRg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Topper (Time Travel Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1079, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-07T00:12:53.467Z", + "ThumbnailImage": "eb13jqd3eks4b9bwsooqjxlp4.png" + }, + { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,Jy2TN1KBTEeoVehy_x32Ng,fXnd_COSzUeznwe7P4ZYRg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Topper (Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1827, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:17:50.037Z", + "ThumbnailImage": "3gjby0eo4e1tmv2wuecnz6rnf.png" + }, + { + "AvatarItemDesc": "h_To9WQYdEusYQxlbMmMmQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dracula Cape", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 851, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-13T00:46:53.92Z", + "ThumbnailImage": "8nnw6vhiwxlys6lvncv55q2xd.png" + }, + { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Tiara (Fuchsia)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 768, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:07:49.563Z", + "ThumbnailImage": "301onvpom3avfdh6fxup3q7fv.png" + }, + { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,EDLxuGjEVEGdOPXDqyN-xA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Tiara (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 919, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:53.6Z", + "ThumbnailImage": "79soc27032oiz7ezyzb7bj6w3.png" + }, + { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,f0pjsV0XMUWoE_z2kqOlSA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Tiara (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 920, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:54.523Z", + "ThumbnailImage": "2oen9cny4wzp5qnb6rdx5nchw.png" + }, + { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,kLv_wsbbGUmlfIUO1QLYLw,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Tiara (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 921, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:55.46Z", + "ThumbnailImage": "dzietotul0k7x0rgoxmeqn53w.png" + }, + { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,lhfOKGDAgEKWucerCmH7Fg,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Tiara (Teal)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 922, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:56.43Z", + "ThumbnailImage": "2oaezhhf77m3tlzy73ehvtapu.png" + }, + { + "AvatarItemDesc": "hTHM3Kjqy0ykqBD8UCRQJw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Thrilling Jacket (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 818, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-09T20:28:46.337Z", + "ThumbnailImage": "4g834pzncxe2djcfe8ri5ow6t.png" + }, + { + "AvatarItemDesc": "hTHM3Kjqy0ykqBD8UCRQJw,7-lAnMa7M0u0n0nmeIINgw,6GfSjqIb4ECCvIPC8vO8_A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Thrilling Jacket (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1529, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-10-06T01:20:25.703Z", + "ThumbnailImage": "6iumwjj0hu0bnlky89lc0xdjd.png" + }, + { + "AvatarItemDesc": "hTHM3Kjqy0ykqBD8UCRQJw,8HR0DwDl2ECtHf5aEkqSHQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Thriller Suit (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2318, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-17T15:52:33.513Z", + "ThumbnailImage": "inGiSDO8JESERdMjtdk9-g.png" + }, + { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soda Clerk Uniform (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1069, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:54.947Z", + "ThumbnailImage": "7x52aisqe0e84v27jn0madibj.png" + }, + { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,MxnAq_XOw0uTzQ8IIxqb_Q,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soda Clerk Uniform (Yellow)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1331, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:16.767Z", + "ThumbnailImage": "di4jb7lfnmlgt0x975ppcx8h0.png" + }, + { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,oKxmH-1s2EyIDkZoOQSQQw,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soda Clerk Uniform (Green)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1330, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:12.283Z", + "ThumbnailImage": "447rhi816e4hfny2r4ktjynv5.png" + }, + { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,XFCpIdeDXUqeYCIgh4fGtg,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soda Clerk Uniform (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1329, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:49:07.87Z", + "ThumbnailImage": "2cvsw2qbbncs9zl5vsv7mxqkk.png" + }, + { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Satchel", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 804, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:52.707Z", + "ThumbnailImage": "bq9tt6z6r54gl79e7oun3l7dw.png" + }, + { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,bH3dgwnwt0KEw8oCDVIcEQ,erPtGSgq_kmqfeSlZWw4VA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Satchel (Silver)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1836, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:18:40.247Z", + "ThumbnailImage": "f1t23z0rwzoefrj56j19gnhgr.png" + }, + { + "AvatarItemDesc": "ilDgmey2ZUWlFiuEAN7YoQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Queen Gloves", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 954, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-11T23:14:50.003Z", + "ThumbnailImage": "da9hnrgqj5nbv2mz69que9ixy.png" + }, + { + "AvatarItemDesc": "ilDgmey2ZUWlFiuEAN7YoQ,K9wPZ9LHo02GPMtf02rANQ,U7jMLMX4_kKIy1K9IcHOXA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Queen Gloves (Lilac)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1941, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-09T18:26:55.433Z", + "ThumbnailImage": "4n3khnydgbrm5og1sy02ak2rp.png" + }, + { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Belt (Brown)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 774, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:07:57.797Z", + "ThumbnailImage": "5vu32ph9qbrum8aq8hkvaa7d1.png" + }, + { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,lAjUeUtTLU2-3bG2OXBukg,LFB_YqTym0-tQmUIj-YcYA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Belt (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1706, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-02T23:52:30.783Z", + "ThumbnailImage": "7p5hywqgv256aipqmufecvfc4.png" + }, + { + "AvatarItemDesc": "J6IQt4G1zUeN8v9Wn50BUw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tied Headband (YouTuber, SoulFox)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1095, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:57:43.937Z", + "ThumbnailImage": "3cc5bj2gxpsblgaruo3t9egwm.png" + }, + { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Necklace (Turquoise)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 831, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T17:51:46.067Z", + "ThumbnailImage": "6dn83vim1zahdfgjcl98s0u6d.png" + }, + { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,0S7Nqm2kv0qMDTh-5Wy0MQ,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Necklace (Ruby)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 837, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:41.777Z", + "ThumbnailImage": "0e9k0ehhqbwmok3pfnwg4a9k3.png" + }, + { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,F7luQ18ZXEaITFiCqqwkpg,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Necklace (Topaz)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 839, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:44.293Z", + "ThumbnailImage": "dhvs55ab5etr8whu54dyu63mq.png" + }, + { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,lvDIOeSI10SNxnCO_M_9zA,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Necklace (Diamond)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 836, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:40.313Z", + "ThumbnailImage": "7pryvhofcoe894jd6lj9k3fpt.png" + }, + { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,OfenZaa1-UGdQ8YVOrXjzw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Necklace (Emerald)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 852, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-13T00:46:56.303Z", + "ThumbnailImage": "2qjoypuya1mw4gd0o6jhz9c0k.png" + }, + { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,okpg4ftsak-wc8Zu83uytw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Necklace (Opal)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 840, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:45.467Z", + "ThumbnailImage": "bmf0h0l2wd8hhxzq331rdtd2n.png" + }, + { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,poqpmOloPUKotHH9p0YAyw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Necklace (Amethyst)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 838, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:43.123Z", + "ThumbnailImage": "8dp37nmbznt4ddn3fpjb7i882.png" + }, + { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,WOxMXWKGrUWhnNInttZ-Zw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Necklace (Amber)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 855, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-13T21:38:59.543Z", + "ThumbnailImage": "czzdjcyf31hpujiah45yuse4n.png" + }, + { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Big Head Bow (Orange)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1088, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:57:16.793Z", + "ThumbnailImage": "6t7adsd6rb8v7w110axmy2fpk.png" + }, + { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,8iZO162KNUiMC8l_z3OC_A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Big Head Bow (Purple)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1089, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:57:21.85Z", + "ThumbnailImage": "e6lw7lptzoy6kedqecx8jk0ob.png" + }, + { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,D-SngK7hhkOpoZ2aMWv9EA,mkDVc0Mz4kmuLZ7powBHpQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Big Head Bow (Hearts)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1294, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-01-22T20:21:35.137Z", + "ThumbnailImage": "9y2nffs1iso5dhjr38gstlhpq.png" + }, + { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,f_c50saStkaGJuhLjJ9lfA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Big Head Bow (Black)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1090, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:57:25.313Z", + "ThumbnailImage": "bzilh25e7rcim8kgspfpj95ba.png" + }, + { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,FUP4iRnoc0ikNmjrFD06lg,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Big Head Bow (Pink)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1091, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:57:28.613Z", + "ThumbnailImage": "18wsz87rejkgdxqq1wc65icjt.png" + }, + { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,GmS0wKwzVEqdf3NoTMHG5A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Big Head Bow (Teal, Polka Dot)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1092, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:57:32.247Z", + "ThumbnailImage": "d40z3ipsfgbe9hux480cvd5a2.png" + }, + { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,-Iqmonry4EKoqAULCKzRPA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Big Head Bow (White, Polka Dot)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1094, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:57:38.64Z", + "ThumbnailImage": "bo0hnyxq2ym7xxw3uicmaydgj.png" + }, + { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,ZNKGkou_gU-1cxBFy7pDKw,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Big Head Bow (Red, Polka Dot)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1093, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:57:35Z", + "ThumbnailImage": "3bok5be6yuo76i8jwnvzr1kf2.png" + }, + { + "AvatarItemDesc": "jUpFzO5MPEGTbS-E0a99Nw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dracula Jacket", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 858, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-14T01:26:26.407Z", + "ThumbnailImage": "b1blz138qua11xtiprlgui282.png" + }, + { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Hat", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 764, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-04T20:13:39.623Z", + "ThumbnailImage": "ajxapi81nzit5fp49tbhidav5.png" + }, + { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,vuSwk04zykCe3ANKN838OA,Uhw5NBQy-EOIiCWiZFiL7g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Hat (Time Travel Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1080, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-07T00:12:55.45Z", + "ThumbnailImage": "d4e35e3ndy0mrxjrfnrs3kay0.png" + }, + { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,ZUMIXcyOpEGiHgslbHQbwA,Uhw5NBQy-EOIiCWiZFiL7g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Hat (Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1828, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:17:53.08Z", + "ThumbnailImage": "3k0gmjgtjhawlaqbc76p3n7c4.png" + }, + { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Jacket (Blue)", + "Tooltip": null, + "Rarity": 10, + "TagList": null, + "AvatarItemId": 833, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T17:51:48.78Z", + "ThumbnailImage": "84ln91je4llsa10o7904ovuwq.png" + }, + { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,9QG6qp5FBU-u0-JK-yMMqA,x10FeRBsQU2DIIpG8XIlwg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Jacket (Red)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 844, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:50.123Z", + "ThumbnailImage": "csm6i7gnanlmwjohok0nf865k.png" + }, + { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,CavRDqIlmUeTZBtCLn1hZQ,x10FeRBsQU2DIIpG8XIlwg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Jacket (Midnight)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 856, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-13T21:39:01.34Z", + "ThumbnailImage": "b80np2tvmtp3siyl63qj51enc.png" + }, + { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,Z8Bfk0MTb0evZehvvgzuBA,x10FeRBsQU2DIIpG8XIlwg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Vampire Hunter Jacket (Leather)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 843, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:48.903Z", + "ThumbnailImage": "b6rtey8gih1qt69aci1qc2op4.png" + }, + { + "AvatarItemDesc": "kghEf_iMKUSxPO-h5iRhSQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Classic Glasses", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 750, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T18:47:21.173Z", + "ThumbnailImage": "ccjied0pmdne9fu4abyc5giwn.png" + }, + { + "AvatarItemDesc": "KNZ1DvCLC0WHyH4opYAXtw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Visor (Creators Contest 2)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 783, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:22:25.447Z", + "ThumbnailImage": "9cfmiay0o7q5lwqa8wx2pm6ug.png" + }, + { + "AvatarItemDesc": "KNZ1DvCLC0WHyH4opYAXtw,FwiizGjYnUaM1VJ53R1cCQ,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Space Visor (Eclipse)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 914, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:48.54Z", + "ThumbnailImage": "80gor8nb4uaucnbfr9tmpumkr.png" + }, + { + "AvatarItemDesc": "KPmC_wyX_ECe7fdKwoLMGg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graduation Cap", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1085, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T17:19:58.353Z", + "ThumbnailImage": "02907rdlfgdak15kydocegpp7.png" + }, + { + "AvatarItemDesc": "KPmC_wyX_ECe7fdKwoLMGg,FaWMLkJJgEKFIO493fzGxg,yzL0M_N5Q0eAa8IxACHPAQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graduation Cap (Maker Pen Class)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1163, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:05:53.153Z", + "ThumbnailImage": "5ll333kyucn9aqhff96o0txse.png" + }, + { + "AvatarItemDesc": "KPmC_wyX_ECe7fdKwoLMGg,nCPVMrWXGkeeIN-969xzuQ,yzL0M_N5Q0eAa8IxACHPAQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graduation Cap (Video Creation Class)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1803, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:11:53.313Z", + "ThumbnailImage": "2lx5rfp2pcfj2z8z1wr7f1uuu.png" + }, + { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Corset", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 766, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-04T20:13:48.203Z", + "ThumbnailImage": "9a1u3xocxzaogyzpudo3nopsn.png" + }, + { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,A6VnGtpY9Ey0atf3zaLo3g,GJRG8sCM7kSGfUd9gLwpgQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Corset (Time Travel Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1082, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-07T00:12:58.553Z", + "ThumbnailImage": "bcv3r4hoktif6vyvq5xi14rez.png" + }, + { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,rsUfUnTwbU6zrjrHWps1yA,GJRG8sCM7kSGfUd9gLwpgQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Corset (Silver)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1834, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:18:23.203Z", + "ThumbnailImage": "d34cbgen23yzb0kmri6koo0j4.png" + }, + { + "AvatarItemDesc": "Lli8-aqt1EmCmyXwBRQaYA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mummy Head Wrap", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 815, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-09T20:28:39.667Z", + "ThumbnailImage": "056efjnqghgyjgzcgyuz5vbq6.png" + }, + { + "AvatarItemDesc": "m5Plrduzr0yj_9mTn1x3Vw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "1988 Jacket (Promo Room Drop)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 961, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-12T22:07:36.85Z", + "ThumbnailImage": "2i4t0ybjtnnq1pyn2a2zmo32b.png" + }, + { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tutorial Cap (Bachelor)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1087, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T17:20:17.373Z", + "ThumbnailImage": "7swwjtbh6ko8afp6d0nmwspsn.png" + }, + { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,gDH1WmW5rk2RdY4wJYYZow,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tutorial Cap (Master)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1127, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T20:00:58.513Z", + "ThumbnailImage": "b0ck22y2gp6w3ppasjughn453.png" + }, + { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,GK3yolCNlEm3B_5DtHkE8w,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teacher's Cap (Level 3)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1247, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:15.263Z", + "ThumbnailImage": "b9enslfg9k5mul9t9zukxjibd.png" + }, + { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,L333w3dfIEWDbtt1Yn1gBg,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teacher's Cap (Level 2)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1249, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:20.6Z", + "ThumbnailImage": "1c3y650gb6irf7rhmbs9cf457.png" + }, + { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,U2ZbHn8WJEySUXVpzAY6ig,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teacher's Cap (Level 1)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1248, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:17.82Z", + "ThumbnailImage": "amll8glk5rg14851jcmr390x4.png" + }, + { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,wHJnbDOo8ESmUbQDr0k31w,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tutorial Cap (Doctor)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1126, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T20:00:46.927Z", + "ThumbnailImage": "5y6bqiyhj3hhqy92tqzvjxo6l.png" + }, + { + "AvatarItemDesc": "mfFLpKQRE0anhrmeUvW0bA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Laurel Crown (Promo Room Drop)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 958, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-12T02:22:24.703Z", + "ThumbnailImage": "dl9x5bl0fz2s03jn0xnqwzao0.png" + }, + { + "AvatarItemDesc": "mfFLpKQRE0anhrmeUvW0bA,p5TStfnDXk-EY7k6UdHxnA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Midnight Gala Crown", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2608, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-11-29T17:48:04.37Z", + "ThumbnailImage": "KgPqo5yaDkibaNuclBpcJA.png" + }, + { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Skirt (Blue)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 777, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:08:01.44Z", + "ThumbnailImage": "1ouv3swjffh6u9o5pks8yim6q.png" + }, + { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,dYPaOkwy3EGAfvl8RyN4pw,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Skirt (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1820, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-04T16:12:39.897Z", + "ThumbnailImage": "c52ga28yxp7v5z0t8ow8e4rtw.png" + }, + { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,FE7_gQNBt0CXzMN6di5HWA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Skirt (Red)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 867, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:22.95Z", + "ThumbnailImage": "3unj20ah5pwz86qh67lqz9qvh.png" + }, + { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,hYu9itGe1Ee5Neanhj9VtQ,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Skirt (Orange)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 868, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:24.403Z", + "ThumbnailImage": "b79pggvoulv5z0dkn70z5syru.png" + }, + { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,kTP3xKhzBkuQF3SqvmYFKA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Skirt (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 869, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:25.733Z", + "ThumbnailImage": "1b7zb62caqbw5yuafz8hg7nxn.png" + }, + { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,VQjkyb5aoEKHKo_eZsq9ug,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Skirt (Teal)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 870, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:12:27.607Z", + "ThumbnailImage": "8pxavigoe6em3oy4686ym8ue2.png" + }, + { + "AvatarItemDesc": "MJQiQ3LATEOymxCC8wfSjw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tutorial Gown (Master)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1098, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:58:23.857Z", + "ThumbnailImage": "7x241yml5e8ojjul82gsjcu8c.png" + }, + { + "AvatarItemDesc": "MJQiQ3LATEOymxCC8wfSjw,L333w3dfIEWDbtt1Yn1gBg,lSDrKR69rkSFULy9GA__1w,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teacher's Gown (Level 2)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1257, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:58.537Z", + "ThumbnailImage": "ac5q83c1bed0a7fr6fqc9zz7e.png" + }, + { + "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Biker Jacket", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 751, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T18:47:22.503Z", + "ThumbnailImage": "3m8jywcsatm5rq2um5dbimatv.png" + }, + { + "AvatarItemDesc": "O8VqC11xNkSKpDh6Omp_0w,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tutorial Sash (Doctor)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1117, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:40.547Z", + "ThumbnailImage": "f20t6rhmbvzsu0byj0ag8itk7.png" + }, + { + "AvatarItemDesc": "O8VqC11xNkSKpDh6Omp_0w,mvj5RDTuh0qoql0OyBFI9g,YQQamy-tQkCkpZPXKepUrQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teacher's Sash (Level 3)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1253, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:37.863Z", + "ThumbnailImage": "9y51i5ld8baokfpueqd67oc07.png" + }, + { + "AvatarItemDesc": "oRUh266ohkWQil14uxcEdQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mummy Shroud", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 816, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-09T20:28:42.133Z", + "ThumbnailImage": "549e5xz7cvnjwkcrv8qnxssm6.png" + }, + { + "AvatarItemDesc": "OTnfT-4NQU6Gd_iVPDx8eg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frankenstein Head", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 808, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-20T18:25:33.447Z", + "ThumbnailImage": "9w8alcxm82aptgu5w3qz5fmq0.png" + }, + { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belt Bag", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 973, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-06T01:55:48.587Z", + "ThumbnailImage": "2so63kdd99rxf93sphtoxpre7.png" + }, + { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,eaRDMCA4fE6KJHi639QFvQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Con Belt Bag (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": "reccon", + "AvatarItemId": 2282, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:27.93Z", + "ThumbnailImage": "w2agGc4e5E2zgiHvAsFu7Q.png" + }, + { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,ncERd5bELk23jSRxA7NV9g,N-cAmfOgv0eJZMTo18zJHQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belt Bag (Premium)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2028, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-02-09T19:08:32.373Z", + "ThumbnailImage": "7iYxky7EC0WBmVm1yt7YDQ.png" + }, + { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,whs9olNz9Uani7Gou31mvw,y6aASPUwDkas0W5Yl27ydQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Belt Bag (Rainbow Pride)", + "Tooltip": "", + "Rarity": 0, + "TagList": null, + "AvatarItemId": 1450, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T23:29:03.97Z", + "ThumbnailImage": "1n94yhtw4pxw2vp1k9nf43brr.png" + }, + { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,zIIQkllHFEyjEvAGYC0cPQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Rec Con Belt Bag (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": "reccon", + "AvatarItemId": 2281, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-08-03T16:30:22.72Z", + "ThumbnailImage": "UnP3rBcwpEmBR6ED8vVH0A.png" + }, + { + "AvatarItemDesc": "pNOfTDOgJUGQvGAlTjBoCg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Wide Neck Tie (Promo Room Drop)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 959, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-12T02:22:47.08Z", + "ThumbnailImage": "d4dej37re0qtqjy0r8z93pdoo.png" + }, + { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Poindexter Shirt (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 730, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-11T22:30:21.907Z", + "ThumbnailImage": "cg6s53psdqilkxbzgkx72gri3.png" + }, + { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,lq59KZwElEStrviDEQLLcA,olyS074RHU-ojE0GzBBYJw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Poindexter Shirt (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1647, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-01-06T00:55:24.63Z", + "ThumbnailImage": "8c3gd19ccfwts3cqzv6pojvyj.png" + }, + { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,PSpysyn5gEKXCEi7f6gDoQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Suspender Shirt (Pink)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2214, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:35.497Z", + "ThumbnailImage": "gYtC-UGMRkC9gKrg3689Fw.png" + }, + { + "AvatarItemDesc": "PryEX4MEvkGKwST6dqJHjA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cupid Toga", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 970, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-04T21:17:10.447Z", + "ThumbnailImage": "78t1ffywj0qqumsmn2pc9yr9b.png" + }, + { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grillmaster Mitt (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1076, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:26:09.97Z", + "ThumbnailImage": "5gw83joytwxpoarjjrzas61ip.png" + }, + { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,90qQe0AR3kOou0MsuoTmPA,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grillmaster Mitt (Blue)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1077, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:26:11.293Z", + "ThumbnailImage": "10xu47yb16kjm62v7fasn937i.png" + }, + { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,hZKPr4sg10SRj9DLuEgOrw,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grillmaster Mitt (Black)", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1078, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:26:12.827Z", + "ThumbnailImage": "1uhjnjl997sivm0uih15zk8ug.png" + }, + { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,x3Q0vVeG_E6juqGM1o0SOQ,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grillmaster Mitt (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1782, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:01:38.93Z", + "ThumbnailImage": "4oo9dvqgiu2yehkvk6dey3jdc.png" + }, + { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Jacket (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 832, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T17:51:47.66Z", + "ThumbnailImage": "clebbebesxjzf8wnllqxmejvg.png" + }, + { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,i5RKLo-RbEqisnGII1wpaQ,xnxDimLvVUCI9tEJqWDDcA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Jacket (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 841, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:46.543Z", + "ThumbnailImage": "80vyoqh3t9fmtu13lcn8r3h87.png" + }, + { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,IzkFARlv6EenmrfcNkcOuw,xnxDimLvVUCI9tEJqWDDcA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Jacket (Midnight)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 842, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:47.717Z", + "ThumbnailImage": "40s4vjnqn68azxmiparci9gtm.png" + }, + { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,LyVf9lnzdku1F4iPBGqk-g,xnxDimLvVUCI9tEJqWDDcA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Jacket (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 853, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-13T00:46:58.367Z", + "ThumbnailImage": "3ky2r4usf4c9jpd0da9kxr9az.png" + }, + { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Shirt (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 779, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:08:04.077Z", + "ThumbnailImage": "5jvdbqiv7unk1h9fed6w0xzm1.png" + }, + { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,H0sqS2_VPEieVrHSyMNo7g,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Shirt (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1698, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-02T23:50:47.41Z", + "ThumbnailImage": "4mi4ucsloz64q4qidq36cfyf8.png" + }, + { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,TjeZwaUp10uhM72q8j4R0A,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Shirt (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1699, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-02T23:50:49.393Z", + "ThumbnailImage": "05ockzuu7hohv73owaltasco3.png" + }, + { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,ZlO_DqkSKUStV4-gGPvQOg,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Shirt (Blue)", + "Tooltip": null, + "Rarity": -1, + "TagList": null, + "AvatarItemId": 1700, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-02T23:50:51.073Z", + "ThumbnailImage": "6gg5wzc84qgzuedb40n52oe0i.png" + }, + { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Cuff", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 806, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:55.91Z", + "ThumbnailImage": "7p4x9oq3c0f415llgnjzustxv.png" + }, + { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,64Hvmzrb3Uu9X_dCA3M3Jw,rPpYm5fIzky4vqVB26guAw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Cuff (Silver)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1833, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:18:20.923Z", + "ThumbnailImage": "en36simwv139x0vu9nj5hit04.png" + }, + { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Hat (Pickup)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 982, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-26T18:15:18.147Z", + "ThumbnailImage": "bfcff0ql8rwt35vnexuh55sc1.png" + }, + { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,lDXambcP60CeY2C8qeGDFw,uiAwVt3HK0mRVtWp9B-gTg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Trucker Hat (Flatbed)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1365, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-03-17T19:31:41.163Z", + "ThumbnailImage": "4dquic4wqv5qwn7664v0i7fpi.png" + }, + { + "AvatarItemDesc": "rJ9zPPGdlk2i24sxLfkqng,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Lifeguard Uniform", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1068, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:51.85Z", + "ThumbnailImage": "d8r0drrwrxs7ot1bgzz145sm6.png" + }, + { + "AvatarItemDesc": "s6mUIqiPCk6e57UYCx3SZA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hat (Grim)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 826, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-15T22:53:24.13Z", + "ThumbnailImage": "36zngdpuj89crp4vmobfqwgk9.png" + }, + { + "AvatarItemDesc": "s6mUIqiPCk6e57UYCx3SZA,0cP9EcZRFEuMOvmZ_Kx9dA,smmfK-N2R0uoDiuIHrhImg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hat (Emerald)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1516, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-30T18:20:19.667Z", + "ThumbnailImage": "dam6qhnya0lx1zj3twhobzuo1.png" + }, + { + "AvatarItemDesc": "s6mUIqiPCk6e57UYCx3SZA,PcUZrdKXhk2XHa5Gy0YnnA,dpBx3DxB7kKJphxCvfmKKw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Hat (Creators Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1171, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:50:36.377Z", + "ThumbnailImage": "byiqri4xizdtch72sub8lx40z.png" + }, + { + "AvatarItemDesc": "sL7iHCnjyEuQKzrTvciEzQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Bride of Frank Hat", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 823, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-15T22:52:39.32Z", + "ThumbnailImage": "9fef5u01k6k4fcki20zg26pey.png" + }, + { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Pauldron", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 803, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-07T22:26:48.95Z", + "ThumbnailImage": "b1x1g3wbr7kr9cld4mtw2wn1t.png" + }, + { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,rSzG7s1ocUmx9_VrJLOcHQ,ISycihytUUyoypVb-kXN_Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Steampunk Pauldron (Silver)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1837, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-11T16:18:43.033Z", + "ThumbnailImage": "9a9ta5xg1e227zgwpmygwy1cz.png" + }, + { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Hat (Brown)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 763, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-23T00:08:02.037Z", + "ThumbnailImage": "1265j9ozr0rlgadvfmpq5yyzv.png" + }, + { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,CoSVCyrI-0qg-EkqB2R0hg,JO9lJOQSREWbPyDBZH_cyg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Hat (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1704, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-02T23:52:20.237Z", + "ThumbnailImage": "e4nzqsmjss5f6hoabn1ihimj3.png" + }, + { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Bandolier (Brown)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 773, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:07:56.623Z", + "ThumbnailImage": "5h0gufhuvlgih1xqqy2oje03x.png" + }, + { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,YTlnBuEjhUG1hSfAs8qwuw,IcR9Z_MxKkS9uh4uFYuFzQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Bandolier (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1705, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-02T23:52:26.027Z", + "ThumbnailImage": "0s4l4l3cvdmfvz1eza6ts5dia.png" + }, + { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Cuff (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 834, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T17:51:49.717Z", + "ThumbnailImage": "axv14g3ocxvf01h82ybehl3rg.png" + }, + { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,i5RKLo-RbEqisnGII1wpaQ,8kdJkmwNM0WQmMVrb8fK8A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Cuff (Black)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 845, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:51.32Z", + "ThumbnailImage": "9zr3klyo948zva87e3ynyoij8.png" + }, + { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,jwEB6LyEaEekqtPNRc6TVA,8kdJkmwNM0WQmMVrb8fK8A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Cuff (Midnight)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 846, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-01T21:35:52.54Z", + "ThumbnailImage": "01xxmh8nnuu5xc4oom2f1r1qj.png" + }, + { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,Wj7I2YiVoE6zp8J_HYs8tw,8kdJkmwNM0WQmMVrb8fK8A,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Aristocrat Cuff (Green)", + "Tooltip": "", + "Rarity": 10, + "TagList": null, + "AvatarItemId": 854, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-13T00:46:59.617Z", + "ThumbnailImage": "due9stf9zpfkmdoblb2wlfcuk.png" + }, + { + "AvatarItemDesc": "TcgHS_0aPkehrBg7ytMOMQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Clubmaster Glasses", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 729, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-11T22:30:20.017Z", + "ThumbnailImage": "bjg8u844kgyz1lqasebmtopqf.png" + }, + { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Tank Top (Tan)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 780, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:08:05.17Z", + "ThumbnailImage": "d6no5z0xu0alfa3sfd7tchss3.png" + }, + { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,3qu7mxSNpkKRrYMhsWHVGg,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Tank Top (Black)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1701, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-02T23:50:52.473Z", + "ThumbnailImage": "2squicogn0nbezwccj6ahi6we.png" + }, + { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,Ij8MXrl1Okip4M7y-gF23Q,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Tank Top (Red)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1702, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-02T23:50:54.847Z", + "ThumbnailImage": "5fzlk5daghmydxowkt8y6x3ba.png" + }, + { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,qEojxjSXm06CX52hRDJAew,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Treasure Hunter Tank Top (White)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1703, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-02T23:50:56.617Z", + "ThumbnailImage": "ets8ha47bzly0bvux6s0lw1t7.png" + }, + { + "AvatarItemDesc": "tkbHKZ9wu0W00VGeUbIaaw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frankenstein Wrists", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 810, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-20T18:25:37.887Z", + "ThumbnailImage": "8rb3glamh1kq36xnt8gupn6np.png" + }, + { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grillmaster Apron (Tan)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1065, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:36.55Z", + "ThumbnailImage": "98c5cktigvhw45kiu5db444wj.png" + }, + { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,eV3Nv6SWS0yl3f-fgjPb-w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grillmaster Apron (Denim)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1066, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:45.663Z", + "ThumbnailImage": "4z1alsikbw52tg9t7o4b0tmf8.png" + }, + { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,Lxx3q6JRnUW_cPG_kGG4ag,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grillmaster Apron (White)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1067, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:48.83Z", + "ThumbnailImage": "f08vx9xbl5n8d0cdwaqunjhs5.png" + }, + { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,vek37vRROUKnSJKVP0CH6w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Grillmaster Apron (Charcoal)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1768, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-03T21:00:22.647Z", + "ThumbnailImage": "d4ulmpmgcp45eu79inqrlhz2d.png" + }, + { + "AvatarItemDesc": "-twtjyBdQ02EAdOfBGTiEw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Van Dyke Beard", + "Tooltip": null, + "Rarity": 0, + "TagList": null, + "AvatarItemId": 728, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-07-10T22:56:15.19Z", + "ThumbnailImage": "bvkq9o8mojgbtpcokr90wuxiv.png" + }, + { + "AvatarItemDesc": "U_H976qYRUmg9e2clsAflg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graduation Gown", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1114, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:20.3Z", + "ThumbnailImage": "bm925en2c6cq90rczyqx8jtek.png" + }, + { + "AvatarItemDesc": "U_H976qYRUmg9e2clsAflg,4D4ge1PYokaj_g96k4oasA,ica0LZyM_kOox8gxW7CaMw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graduation Gown (Video Creation Class)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1810, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-05-28T16:12:36.27Z", + "ThumbnailImage": "91oh3z6dug9f7buh2555h4ggn.png" + }, + { + "AvatarItemDesc": "U_H976qYRUmg9e2clsAflg,iZy7RmfAz0603oMO-jD-WA,ica0LZyM_kOox8gxW7CaMw,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Graduation Gown (Maker Pen Class)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1162, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-08-15T18:05:43.237Z", + "ThumbnailImage": "44739pgupptu8ki1u1i0efr2i.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Black)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1044, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:43.897Z", + "ThumbnailImage": "dn3d4707ue1k2osfrlcvavlzo.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,2sf-FU4WckGBDWUkVz4z1g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Neon Sky)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1055, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:58.657Z", + "ThumbnailImage": "2jwdp3bzhm7xcqru8enpkveu7.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,3PfP661Fg0CruzRxis9EiA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Neon Dreams)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1056, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:59.89Z", + "ThumbnailImage": "7yuwkss6may3hvmhg1sepbsvw.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,4scG_UBlzE-5DWRhSrtm6g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Chillout)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1050, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:52.987Z", + "ThumbnailImage": "bhaum9si19ovo5u6f0ik7fcyv.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,8ANbOhNnO0yLQOCIBsDwfg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Blue)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1046, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:48.427Z", + "ThumbnailImage": "0ftwtrq2ong4idyrsil0vdmek.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,a5nUvJZgTEGBUvdHx0Y6Ng,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Purple)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1047, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:49.587Z", + "ThumbnailImage": "cph7oedpx7hgjd38qq4qtgoal.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,d9mwowRelE2lDKEA0UQMZQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Neon Dawn)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1057, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:01.013Z", + "ThumbnailImage": "19ts2iqffk8o10duwieerytd8.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,hf0gkFVS8ESvceRsC3LAXQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Psy)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1049, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:51.8Z", + "ThumbnailImage": "6k8vpwyhep8o2yv8j2grqd8h5.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,I1J-xY4YNU2dB_od4P_7Dg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Neon Heat)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1054, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:57.527Z", + "ThumbnailImage": "48dwhvntvbcgfw5d6yly1wr9y.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,JWBK5v78Y0uRVEXlD-Qk6Q,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1048, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:50.713Z", + "ThumbnailImage": "60mqpyf61x722pn9if4oa70qi.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,k_ZYy0SjtU2TB7IFdq2vDA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Synth)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1501, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:42:40.627Z", + "ThumbnailImage": "1czj45wblivuiu4m5plehpt8f.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,ns5tIRishUOp-nYqLedcwA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Techno)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1053, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:56.397Z", + "ThumbnailImage": "75w0v1yh3q3o0dfoelib0un32.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,nX7krD8e2km_ZlOLWcoxdQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Lounge)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1052, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:55.237Z", + "ThumbnailImage": "0qoenhowtvhtxia42kmo22j5v.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,oNtLjorrZ06t4yIdWqKCcQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Headphones (Wooden)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2209, + "IsBaseAvatarItem": false, + "CreatedAt": "2022-05-11T19:02:26.243Z", + "ThumbnailImage": "8thOMYf1lUybc3FN_bY8WQ.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,OqsbZ8Xls0i8uA6ha7H3qQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Trance)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1051, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:54.107Z", + "ThumbnailImage": "f012aaez937gwxfcp6amwbh1a.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,pAlEt5sqD0mKgFd_0b7RgA", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floral Headphones (Blossom)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2795, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:16.603Z", + "ThumbnailImage": "SbQkirL3sUidVCVTEkiS0A.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,PNH0VNS1qk6nWVecYmVDDQ", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floral Headphones (Orange)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2796, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:22.68Z", + "ThumbnailImage": "OjJJcLC_l0SxYuXsaT4blg.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,PQTvQiYu-ESRUldnxgm5BQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Neon Jungle)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1500, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:42:35.72Z", + "ThumbnailImage": "4dh2u6nja9oh06bc83r9s4pqb.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,sXF1BZr8X06AYnWUrWxy1Q", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floral Headphones (Lavender)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2797, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-02-13T19:05:25.08Z", + "ThumbnailImage": "snOakm9_R0upwnPGZDeEuw.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,thG3Dc1PFEqAvT9xCVshuw,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1502, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-08-11T00:42:44.987Z", + "ThumbnailImage": "ecbfwjrpe9e79d5vrdubmh2c4.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Neon Void)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1058, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:02.31Z", + "ThumbnailImage": "3lnjdd8bye13tx2sv12v4bisy.png" + }, + { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,viL4CPch2ECwG-RNaWcyZw,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Notes Headphones (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1045, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:24:47.043Z", + "ThumbnailImage": "6gdfkv6dgyb7aup991rfx4ns8.png" + }, + { + "AvatarItemDesc": "UGkQa4atNUe1cE5TN79s4Q,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Floatie (Unicorn)", + "Tooltip": "", + "Rarity": 50, + "TagList": "", + "AvatarItemId": 1075, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:26:08.783Z", + "ThumbnailImage": "64nsdc03lld08y8ouiugpbt3a.png" + }, + { + "AvatarItemDesc": "uubY_Cn9A0-Ww4lsIRCF6w,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Dracula Medal", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 857, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-14T01:26:24Z", + "ThumbnailImage": "2l8ozzohqd9a0k2deuxxucq9c.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Traveler Shirt", + "Tooltip": null, + "Rarity": 20, + "TagList": null, + "AvatarItemId": 974, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-02-06T01:55:53.21Z", + "ThumbnailImage": "eati57vuo2tgumb24q5t0je5y.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,4ijeE3LqUUuSplKrMto6Kg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Shirt (Begonia)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1427, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:47:52.38Z", + "ThumbnailImage": "56zylqig2v1wahn347cxlipyg.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,6taO0KRM_kuKoaTnOIsHRg", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Raindrop Tourist Shirt", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 2937, + "IsBaseAvatarItem": false, + "CreatedAt": "2023-04-18T16:22:53.623Z", + "ThumbnailImage": "_a0Yxn41bUmWYogStG-J6w.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,adJVA26PyUSVvmZgxkCAmQ,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Shirt (Poppy)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1426, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:47:50.153Z", + "ThumbnailImage": "chd2q6f8set0nr8jh2vr2m7qd.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,d27e5m1BLUWI42Pxnj6F4A,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Shirt (Dahlia)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1428, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:47:54.127Z", + "ThumbnailImage": "9896kxku8xyotg3kpo30sep01.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,gwdtq3NiEEmMKYtn1VPoiw,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Traveler Shirt (Yellow)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1723, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:12:57.68Z", + "ThumbnailImage": "87fumlw57etytmbtflbzgbrxm.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,iEvS6I9LjkSaGAmjcxz8uQ,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tourist Shirt (Red)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1724, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:13:02.643Z", + "ThumbnailImage": "a744qz6lz4fslmbrp602yan1l.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,NKf5-r2S_0iP0SaO9bjvaw,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Shirt (Paradise)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1425, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:47:48.09Z", + "ThumbnailImage": "bp1h0205pg13g8p8aj2j9vhdi.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,otQaNOsODUSTfHlCX0IVOA,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Shirt (Lily)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1424, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:47:46.287Z", + "ThumbnailImage": "0x7hflju5oo8crqrrj3r0b5so.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,RZFWcTzxPkOfUuTIQ1mzkg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Luau Shirt (Primrose)", + "Tooltip": "", + "Rarity": 20, + "TagList": null, + "AvatarItemId": 1429, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-04-28T22:47:56.323Z", + "ThumbnailImage": "5a104x4ogdqr0eqzaqirydl55.png" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,XT_txjZfIUOT400UPHLaRA,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tourist Shirt (Green)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1725, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-03-15T18:13:05.88Z", + "ThumbnailImage": "3gp6gte16x8khurqqu7nzhfhd.png" + }, + { + "AvatarItemDesc": "vP9EKTMXP0yni8U7uCz2-g,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Tutorial Sash (Master)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1118, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-26T19:59:43.497Z", + "ThumbnailImage": "5frgjfs2olhxlc6p6k1xzi1gc.png" + }, + { + "AvatarItemDesc": "vP9EKTMXP0yni8U7uCz2-g,FsATqzRVekO9hQ3u_q7keg,Q7hqvEo7DUyD9AqIOunWWA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Teacher's Sash (Level 2)", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1252, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-12-03T01:14:31.98Z", + "ThumbnailImage": "3sux0cg60z82am4w6irvfph44.png" + }, + { + "AvatarItemDesc": "vpP2ZvnL0Uy3n-I_Jv3eeQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Cowboy Hat (Hairy - Promo Room Drop)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 957, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-12T02:22:09.147Z", + "ThumbnailImage": "6ck4di8cgqlprwg40uowlar1a.png" + }, + { + "AvatarItemDesc": "VQnoLstCyEGDPy1c38-GvA,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Biker Helmet", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 746, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-08-14T18:47:07.673Z", + "ThumbnailImage": "1shya0fxztg1hrivkr6kz5t5s.png" + }, + { + "AvatarItemDesc": "W7AJ4UYlVkWF5nLbmpmRBg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Queen Crown", + "Tooltip": null, + "Rarity": 50, + "TagList": null, + "AvatarItemId": 952, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-12-11T23:14:39.377Z", + "ThumbnailImage": "9zxq5okpcuze5r8vwhknknnfd.png" + }, + { + "AvatarItemDesc": "W7AJ4UYlVkWF5nLbmpmRBg,5Hk7UR60rkquUNxpQ8O0Gw,zMXDVNsKn0GhVd2Tjho0-g,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Ice Queen Crown (Lilac)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1939, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-11-09T18:26:31.227Z", + "ThumbnailImage": "8tqs6ckiohne11n3sui6d7dvq.png" + }, + { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soda Clerk Hat (Red)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1059, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-06-06T19:25:04.123Z", + "ThumbnailImage": "bij80e36orzdtzehef7fmjeru.png" + }, + { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,MxnAq_XOw0uTzQ8IIxqb_Q,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soda Clerk Hat (Yellow)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1328, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:48:56.813Z", + "ThumbnailImage": "5tdjwtkcesfgqls3gzy24y3hf.png" + }, + { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,oKxmH-1s2EyIDkZoOQSQQw,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soda Clerk Hat (Green)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1327, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:48:52.33Z", + "ThumbnailImage": "8etl00yx6u11l07jed4sl7xnc.png" + }, + { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,XFCpIdeDXUqeYCIgh4fGtg,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Soda Clerk Hat (Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1326, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-02-20T21:48:47.39Z", + "ThumbnailImage": "crm789xheizu2cbu14b3wavpq.png" + }, + { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Bow (Fuchsia)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 771, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-05T23:07:54.187Z", + "ThumbnailImage": "d9jbl9u6drfoj1reb16xtye8f.png" + }, + { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,_uh3kj6hKUyBKOSR3R8dog,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Bow (Purple)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 900, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:30.567Z", + "ThumbnailImage": "31o9bg37u28wwxm2fpf5h095x.png" + }, + { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,i3rD_hnQG0a-5f6Ve4AfWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Bow (Pink)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 902, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:33.287Z", + "ThumbnailImage": "54xi44ymvq9amsim1078bvqlt.png" + }, + { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,kaRBW1u3dkODGjPMePW6Uw,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Bow (Rose)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1822, + "IsBaseAvatarItem": false, + "CreatedAt": "2021-06-04T16:12:49.34Z", + "ThumbnailImage": "dc2oyr445lq5s6rcxguz7tjdd.png" + }, + { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,Ot9EG-FfKEauT0u6pSZuWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Bow (Teal)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 903, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:34.567Z", + "ThumbnailImage": "13c35i4i2yh37p6u3kwbblvup.png" + }, + { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,S9uymuvraUCOM8gmB7bnEA,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Anime Bow (Dark Blue)", + "Tooltip": null, + "Rarity": 30, + "TagList": null, + "AvatarItemId": 901, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-11-26T19:13:32.003Z", + "ThumbnailImage": "35wve61we8efcghfumwpogrnp.png" + }, + { + "AvatarItemDesc": "wy2cfgb8mUqjMrIOwHH2ew,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Cuffs (Grim)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 828, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-15T22:53:29.123Z", + "ThumbnailImage": "4zz4132pzz51bxxjxf570c1d3.png" + }, + { + "AvatarItemDesc": "wy2cfgb8mUqjMrIOwHH2ew,0ZKR_qxrWkiWkjpot8s6Cg,5aX524Lfok-0dC3UFv-OkQ,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Cuff (Emerald)", + "Tooltip": "", + "Rarity": 30, + "TagList": null, + "AvatarItemId": 1518, + "IsBaseAvatarItem": false, + "CreatedAt": "2020-09-30T18:20:47.07Z", + "ThumbnailImage": "0p6vqm6iz2rilzafurlc4bbfd.png" + }, + { + "AvatarItemDesc": "wy2cfgb8mUqjMrIOwHH2ew,Hk6svQ5Sr0GDKLxOyktk9w,IQvHmZ8ei02hVuXZiXb6TA,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Witch Cuffs (Creators Contest)", + "Tooltip": "", + "Rarity": 50, + "TagList": null, + "AvatarItemId": 1172, + "IsBaseAvatarItem": false, + "CreatedAt": "2019-09-26T17:51:00.093Z", + "ThumbnailImage": "dab6kmwjuwqeqhmjfdhdx043o.png" + }, + { + "AvatarItemDesc": "zpjkkb1HtUORoPaODFuuxg,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Mummy Hand Wrap", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 820, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-10-09T20:28:52.78Z", + "ThumbnailImage": "32o1jvjp0zv2e13meoz6ly7pc.png" + }, + { + "AvatarItemDesc": "ZsggwOJ8XUOGfaJltM418g,,,", + "AvatarItemType": 0, + "PlatformMask": -1, + "FriendlyName": "Frankenstein Shirt", + "Tooltip": "", + "Rarity": 30, + "TagList": "halloween", + "AvatarItemId": 809, + "IsBaseAvatarItem": false, + "CreatedAt": "2018-09-20T18:25:35.743Z", + "ThumbnailImage": "3yzcedaeybzym9rpwv7nr1pkg.png" + }, + { + "AvatarItemDesc": "05a20650-6ffe-41ea-b1c0-dcfb5e85ab7a", + "AvatarItemId": 6841, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:38.807Z", + "FriendlyName": "Destiny Hunter Boots", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "Ff0KIPvEFE-pIXgXULKq8g.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,zhLs4Hgw1UCrcNekAWd4RQ", + "AvatarItemId": 2990, + "AvatarItemType": 0, + "CreatedAt": "2023-06-12T18:20:33.8Z", + "FriendlyName": "Poodle Skirt (Shark)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "CZ8_vVo0BEuPZD-Q2PH6ug.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "08409254-9916-4212-a5bf-7c747a1e9b9d", + "AvatarItemId": 8164, + "AvatarItemType": 0, + "CreatedAt": "2024-07-27T00:13:47.517Z", + "FriendlyName": "Barista Apron", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "443c9q60ac4rsjd45octopfdd.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "098518f6-30b1-4537-9bd5-08e2336a326d", + "AvatarItemId": 8193, + "AvatarItemType": 0, + "CreatedAt": "2024-08-03T00:30:55.337Z", + "FriendlyName": "Denim Cuffed Jeans", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "9fst5fk3ryzwk1kzumwbew6ll.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "0c98212e-4835-4e11-8852-4a78acbadd76", + "AvatarItemId": 8166, + "AvatarItemType": 0, + "CreatedAt": "2024-07-27T00:13:55.22Z", + "FriendlyName": "Barista Button-up Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "26ngxvp8vgw3on30qssdyfcpi.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "112fd41c-4240-435c-ae9d-761a94ed2eec", + "AvatarItemId": 8123, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:19.507Z", + "FriendlyName": "Destiny Titan Plate", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "clzyiyrjhivm8vn191tud5wg3.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "14e59af3-bc85-49b8-a16b-024c9bf3419f", + "AvatarItemId": 5884, + "AvatarItemType": 0, + "CreatedAt": "2023-10-16T19:59:24.33Z", + "FriendlyName": "Goth Choker", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 20, + "TagList": null, + "ThumbnailImage": "z7L4u5sZ00ypDg0GQ72bmA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,1ab156c9-4ffd-40ed-887b-e72280d82ccc", + "AvatarItemId": 8109, + "AvatarItemType": 0, + "CreatedAt": "2024-07-09T18:31:27.343Z", + "FriendlyName": "Destiny Warlock Ballcap", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "3i2jm5sxayi6ghestljgl2f4u.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,447d7147-f9d5-4f7e-9503-220fe3257763", + "AvatarItemId": 8107, + "AvatarItemType": 0, + "CreatedAt": "2024-07-09T18:31:23.003Z", + "FriendlyName": "Destiny Titan Ballcap", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "7swf7u57gdy3chp9d8dp5gr23.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,531cbbea-e963-4f7c-a0cb-da880084fa3a", + "AvatarItemId": 8105, + "AvatarItemType": 0, + "CreatedAt": "2024-07-09T18:31:19.02Z", + "FriendlyName": "Destiny Hunter Ballcap", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "8c3kqksk3yke034p1t3ztby21.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,952866cd-c899-4547-b16d-94193646d804", + "AvatarItemId": 6829, + "AvatarItemType": 0, + "CreatedAt": "2024-05-21T17:05:45.693Z", + "FriendlyName": "Sasquatch Cryptid Trainer Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "ystOAXWpg0SXFTYysq-ojA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,ca8ddc6f-3c69-44b0-b5da-969b419239d0", + "AvatarItemId": 6827, + "AvatarItemType": 0, + "CreatedAt": "2024-05-21T17:05:42.003Z", + "FriendlyName": "Chupacabra Cryptid Trainer Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "KY5EVNGduUidRadBHIAvRA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,dde4711c-f489-42da-89fe-774918802249", + "AvatarItemId": 6828, + "AvatarItemType": 0, + "CreatedAt": "2024-05-21T17:05:43.763Z", + "FriendlyName": "Mothman Cryptid Trainer Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "DvjhocwfwUyzpvd7uWkimQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "157d609c-3827-45e3-ace1-be7cc250d132,", + "AvatarItemId": 2968, + "AvatarItemType": 0, + "CreatedAt": "2023-05-23T21:03:30.147Z", + "FriendlyName": "Shark Bitten Boogie Board (Cerulean)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "SR0zE9RgdkW3Txe3r49zRA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "157d609c-3827-45e3-ace1-be7cc250d132,ppkByMiIi0inxbXKX4fu4A", + "AvatarItemId": 2971, + "AvatarItemType": 0, + "CreatedAt": "2023-05-23T21:03:36.317Z", + "FriendlyName": "Shark Bitten Boogie Board (Cardinal)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "ZQSzUYH9x06dJk0G2jdibA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,5a0d7b1d-deba-40b6-881f-af5b499f033d", + "AvatarItemId": 7014, + "AvatarItemType": 0, + "CreatedAt": "2024-06-03T17:50:20.607Z", + "FriendlyName": "90's Skateboard on Back", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "NMvhKygV-0G7nkVKl0DXJg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,655a48e6-ab7c-4c77-9c52-262f5bb8cbc2", + "AvatarItemId": 3074, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:42.173Z", + "FriendlyName": "Skateboard on Back (Stickered)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "t_By_2z4ckmvT7-pbJ835A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,3ya4VDfxLU-krfBh_H0VAA", + "AvatarItemId": 3004, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:14:53.67Z", + "FriendlyName": "Fiery Mermaid Crown", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "COqo4LSzrU2iaYXn4Rs6Lw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "17640fe1-2051-4159-93e0-7e037b9340a6", + "AvatarItemId": 8096, + "AvatarItemType": 0, + "CreatedAt": "2024-07-08T18:06:47.437Z", + "FriendlyName": "Carnival Clown Shoes", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "01vx3ccgemqrdf3fabpjmsgg5.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "17f321cb-b970-4159-87b2-0aec6adc9291", + "AvatarItemId": 3129, + "AvatarItemType": 0, + "CreatedAt": "2023-08-25T19:31:47.08Z", + "FriendlyName": "Gray Bike Shorts [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "6DostQ3IyEyalCM0N9GM9Q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "17f321cb-b970-4159-87b2-0aec6adc9291,04fa6c7e-87f5-4a96-ada0-106b5465b48e", + "AvatarItemId": 6038, + "AvatarItemType": 0, + "CreatedAt": "2024-02-08T19:28:06.527Z", + "FriendlyName": "White Bike Shorts [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "cXycsaHv60-PdjrjqVWrUg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "18852aae-9bf8-4a41-a126-f3e7f777f436", + "AvatarItemId": 8091, + "AvatarItemType": 0, + "CreatedAt": "2024-07-08T18:06:35.587Z", + "FriendlyName": "Carnival Clown Suit", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "cfql4gvkhhilsv40i2q8hngco.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "18bfbf96-f14b-4019-b915-dabd08ca1709", + "AvatarItemId": 6788, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:53.157Z", + "FriendlyName": "Oceanic Skirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "mUa7QHri0EKp4LRejxBx1A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,b11GS6Jd4E-UhO8wxhfQXw", + "AvatarItemId": 2991, + "AvatarItemType": 0, + "CreatedAt": "2023-06-12T18:20:37.443Z", + "FriendlyName": "Camp Hamhawk T-Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "6UBDCIlK_0G8fbzZXkEmcg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,cd9d37fb-51a9-45dd-8e87-2756eb62f48b", + "AvatarItemId": 3044, + "AvatarItemType": 0, + "CreatedAt": "2023-07-03T17:49:35.607Z", + "FriendlyName": "Howling Wolf T-Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "-76Anr2iO0qxUKRit_VHeQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,MvC6bRHxmkaXvWS6Q0cIFg", + "AvatarItemId": 3014, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:15:22.393Z", + "FriendlyName": "Stunt Runner Wrists", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "c4ygIGCcQkO_TqD-0df2Ng.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "1d5e951c-e970-470b-81b1-af669e832111", + "AvatarItemId": 8217, + "AvatarItemType": 0, + "CreatedAt": "2024-08-17T00:30:42.797Z", + "FriendlyName": "Knitted Fox Scarf", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 30, + "TagList": null, + "ThumbnailImage": "b87sb0m6q7xi8ui6gbq2zhmf8.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "1dbc517c-432b-4c85-8c5e-dfcf22b269cb,034d78cf-9dbd-46f3-b204-0d358e6891df", + "AvatarItemId": 5826, + "AvatarItemType": 0, + "CreatedAt": "2023-09-07T15:34:09.177Z", + "FriendlyName": "Back Scythe (Venom)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": "halloween", + "ThumbnailImage": "_aVk1s5iwUeKuNtwxAn6hQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,e687fd8e-fcff-4a6e-a6fb-81baf4910675", + "AvatarItemId": 8103, + "AvatarItemType": 0, + "CreatedAt": "2024-07-08T18:07:00.847Z", + "FriendlyName": "Kitten and Puppy Sweater", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "cv92j5mhdctzcw5gt7ymhd717.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "22afabc7-86b6-4a37-829b-40520de4b9c5", + "AvatarItemId": 8117, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:07.31Z", + "FriendlyName": "Destiny Titan Mark", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "0dysgc7hbezuqdsucmqbj2fr5.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "264fd0c2-88f9-4780-ad72-52351e31b13f", + "AvatarItemId": 3066, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:13.09Z", + "FriendlyName": "Burgundy Casual Cardigan", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 20, + "TagList": null, + "ThumbnailImage": "WnafKtAEb0-KykqPQ_7wOQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "264fd0c2-88f9-4780-ad72-52351e31b13f,2d035c24-8437-4403-a024-4c3bfd0d80a9", + "AvatarItemId": 3067, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:16.34Z", + "FriendlyName": "Casual Cardigan (Blue)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 20, + "TagList": null, + "ThumbnailImage": "Iqpmxi6rNUSnKJAwtpcV0Q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "264fd0c2-88f9-4780-ad72-52351e31b13f,7d025ccf-f3b9-4601-9dba-9f25b135d11e", + "AvatarItemId": 3068, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:19.59Z", + "FriendlyName": "Green Casual Cardigan", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 20, + "TagList": null, + "ThumbnailImage": "4bKXe1ZTS0udLPiD6ZKppA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac", + "AvatarItemId": 3102, + "AvatarItemType": 0, + "CreatedAt": "2023-08-25T19:29:32.867Z", + "FriendlyName": "Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "emi1FC2DcEaiUpvQx8DI7Q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,1Ea8XwIf6kCD2Eb9oq7ReQ", + "AvatarItemId": 4339, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:49.657Z", + "FriendlyName": "Green Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "5NrtVfC0o0iVVALIF-hVPA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,6X97IqtVwUCHZGPUNvf2Yw", + "AvatarItemId": 4337, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:42.257Z", + "FriendlyName": "Blue Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "hQRPgGWuBk-lXkLrVWOt5Q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,AWHOOW5WBU2heQY-VJX86g", + "AvatarItemId": 4344, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:08.36Z", + "FriendlyName": "White Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "WQ6-Fk0fnES4wIU0VyiMGw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,BXqs_IS3rk65N_7LTr7vPw", + "AvatarItemId": 4338, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:45.837Z", + "FriendlyName": "Brown Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "1XL8Vno5mEabIFl3vDCz7A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,Gc5BjgqJbkSSoakH54F2gg", + "AvatarItemId": 4345, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:11.53Z", + "FriendlyName": "Yellow Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "h9DFr3c0jkGCEc8IyQHlZg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,GTur2Qczg0aK-BFm8OCYFQ", + "AvatarItemId": 4340, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:52.66Z", + "FriendlyName": "Orange Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "x7vKE0e3Y0m-N6HWEWEFgw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,KnjyXIUSCUG0T836zd8uFA", + "AvatarItemId": 4341, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:56.373Z", + "FriendlyName": "Pink Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "1o71BOYViE2mQvJSjay7Cg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,NOLj-kovfE6rezWYBQz7OA", + "AvatarItemId": 4342, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:00.337Z", + "FriendlyName": "Purple Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "hLqSYkeP3kODTGJktujEXg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,qFfT1pN9IkW3Nb4SQdEJdQ", + "AvatarItemId": 4343, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:04.227Z", + "FriendlyName": "Red Flats [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "PKNNT5E7Wkiew8TXcazVBg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "27fa9f11-5368-4f6c-a114-18501478a9fa", + "AvatarItemId": 3050, + "AvatarItemType": 0, + "CreatedAt": "2023-07-24T19:55:04.14Z", + "FriendlyName": "Atlantian Crown", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "Pq8mfD_nDU--VdGzanBMow.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,adETWZLIA0O0feRzUjxKQw", + "AvatarItemId": 2974, + "AvatarItemType": 0, + "CreatedAt": "2023-05-23T21:03:44.927Z", + "FriendlyName": "Coral Reef Cape (Teal)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "1GeNFxVxc0SaUaXkiDPSTg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,f48124bc-8937-46fd-a2f9-3e55a46a495e", + "AvatarItemId": 6539, + "AvatarItemType": 0, + "CreatedAt": "2024-03-04T17:51:49.407Z", + "FriendlyName": "Sticky Note Beach Towel Cape", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "fHjOO3rByU6n1jpcylXhJQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "296eea1f-0e61-41d3-8acd-02b7ce637ad3", + "AvatarItemId": 5923, + "AvatarItemType": 0, + "CreatedAt": "2023-11-28T17:02:10.167Z", + "FriendlyName": "Snowflake Fairy Wrists", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "xQbdyQ7XiEGr9AynOXEdww.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "309f3ab1-d2a4-4d63-b248-93d9795a8a23", + "AvatarItemId": 3060, + "AvatarItemType": 0, + "CreatedAt": "2023-07-24T19:57:25.677Z", + "FriendlyName": "Fruit Salad Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "UpgrU5E6fk6cqHf0DQazwQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,02306559-159e-413d-ad33-8cb87cb354ff", + "AvatarItemId": 6758, + "AvatarItemType": 0, + "CreatedAt": "2024-05-06T19:21:22.69Z", + "FriendlyName": "Chupacabra Cryptid Trainer Hiker Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "nZA30se6_EWXcmk2uQ0GIQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,2405ae19-5918-4c95-a408-40015f28c6d2", + "AvatarItemId": 6759, + "AvatarItemType": 0, + "CreatedAt": "2024-05-06T19:21:25.46Z", + "FriendlyName": "Mothman Cryptid Trainer Hiker Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "GlcvOr8rDEOignGWUM6ftQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,88a08c66-6a75-4dcb-bf38-2395403b1535", + "AvatarItemId": 6760, + "AvatarItemType": 0, + "CreatedAt": "2024-05-06T19:21:28.127Z", + "FriendlyName": "Sasquatch Cryptid Trainer Hiker Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "IaIc1rud_EmSU8-BS9DBJQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,qRIbIelHBUOU71eoK2XQeg", + "AvatarItemId": 3008, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:15:04.157Z", + "FriendlyName": "Hiker Shirt (Violet)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "cJYDvFsdzk2ivqeuGI_AEA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,VfSI4zfHbECwcrQmcbelTg", + "AvatarItemId": 3007, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:15:00.36Z", + "FriendlyName": "Lime Hiker Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "V48fMEbjmUSGgPgDwQeZ-Q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "371ac113-5a7d-4cb7-bb4d-eccbed272422", + "AvatarItemId": 5876, + "AvatarItemType": 0, + "CreatedAt": "2023-10-10T17:14:52.207Z", + "FriendlyName": "Fall Outfit (Pumpkin Spice)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "S-5BtN_YTk2rAYwiPVpAWA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "371ac113-5a7d-4cb7-bb4d-eccbed272422,87694366-3401-43a0-aa32-03e816727d8b", + "AvatarItemId": 5877, + "AvatarItemType": 0, + "CreatedAt": "2023-10-10T17:14:55.857Z", + "FriendlyName": "Winter Outfit (Sweet Treat)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "PvCJW8ENQUyJ01b2DLAN0A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "37668d3d-c9f4-4bd6-81d4-a4f64ba2d61b,1d92cbd4-4101-4edb-a7ef-5f5d81b9d672", + "AvatarItemId": 6830, + "AvatarItemType": 0, + "CreatedAt": "2024-05-21T17:05:48.17Z", + "FriendlyName": "Mothman Wings", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "3zWFeOaPTkmOMyaegaR7bQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "3916a22b-ef4b-4ecc-9945-fd57867af597,IcgjR69rYUuNhsb3s9qjYA", + "AvatarItemId": 3009, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:15:08.077Z", + "FriendlyName": "Lime Hiker Backpack", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "FirECwx_HUKUK9PIeOiSRA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "3916a22b-ef4b-4ecc-9945-fd57867af597,yMkN0om7l0-_47gDrBWxiw", + "AvatarItemId": 3010, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:15:10.767Z", + "FriendlyName": "Hiker Backpack (Violet)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "-KCzSoR1VUO96HbpQOyIlw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "39dde11e-7aa1-4bd2-8532-62665e8d8dd3,a0797dd3-0124-46f3-b519-dbf1d480d6d3", + "AvatarItemId": 8248, + "AvatarItemType": 0, + "CreatedAt": "2024-08-23T23:54:23.217Z", + "FriendlyName": "Gothic Gentlelady Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "7yxozzwcnxsvlnyqyd10s83fo.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "3fd409ff-8b34-4ce9-bf27-2dd698ea38cb", + "AvatarItemId": 8174, + "AvatarItemType": 0, + "CreatedAt": "2024-07-27T00:14:20.107Z", + "FriendlyName": "Barista Pants", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "asi7mx6zpo6rgt7pbmln73wn7.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,4be19a56-37b6-48eb-9439-c4e525418f89", + "AvatarItemId": 8111, + "AvatarItemType": 0, + "CreatedAt": "2024-07-09T18:31:31.167Z", + "FriendlyName": "Destiny Beanie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "f5jb36vw6bpstjthi6v4fxiq2.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "428bba86-8932-4bde-a2dc-abfb69ed76e4", + "AvatarItemId": 8148, + "AvatarItemType": 0, + "CreatedAt": "2024-07-27T00:10:44.19Z", + "FriendlyName": "Race Car Driver Race Suit", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "e1tl42a8pa4uc3716bfmorio9.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4308b6d7-21ad-4417-a6fd-7116c6480689", + "AvatarItemId": 6816, + "AvatarItemType": 0, + "CreatedAt": "2024-05-21T17:05:20.663Z", + "FriendlyName": "Mothman Cryptid Trainer Bookbag", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "cFTU48jgK06Vd0MjcBTUHw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Iz6cWpY2B0uOQ9BnY3fSbA", + "AvatarItemId": 3003, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:14:51.873Z", + "FriendlyName": "Stunt Runner Helmet", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "qRDbnFa7mkKiiJyKHqbBmQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "469f353a-384a-4a4e-a03c-118a0b9c2f5f", + "AvatarItemId": 6831, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:18.82Z", + "FriendlyName": "Destiny Hunter Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "IyaVJTc7SkWOAtP-y7BogQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,8c4c95e7-f427-4f2f-b933-6aadb8b74f5e", + "AvatarItemId": 6847, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:49.29Z", + "FriendlyName": "Destiny Titan Hoodie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "2nVs83sWOkunpb19vIdBxw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,9fe0efad-641b-4aee-a097-f68603aa2c72", + "AvatarItemId": 8115, + "AvatarItemType": 0, + "CreatedAt": "2024-07-09T18:31:39.813Z", + "FriendlyName": "Destiny Hoodie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "anieelc9efs0khc0n2xw7r8e5.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,dc82b045-3c0b-47a8-bf01-88c6740ac169", + "AvatarItemId": 6846, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:47.66Z", + "FriendlyName": "Destiny Hunter Hoodie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "CLn8IQbq-kSpml0LUDeP4w.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,ddf02962-396f-45c8-a0ef-512725cf75ab", + "AvatarItemId": 6848, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:50.93Z", + "FriendlyName": "Destiny Warlock Hoodie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "g6dtW2hqcEamJbN2ByrLzA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4c091a48-90c9-4314-b0e9-96ac502f9b18", + "AvatarItemId": 6799, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:11:24.41Z", + "FriendlyName": "Tech Camper Cargo Shorts", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "aRPi77ng5kudQ8Ef3jrv3Q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4c52478a-b2c9-4520-8f88-52f2262cc6bf,0e3eb615-3290-4efa-ac11-aa10a658525b", + "AvatarItemId": 6643, + "AvatarItemType": 0, + "CreatedAt": "2024-04-02T17:21:03.34Z", + "FriendlyName": "Everything Hot Dog Suit", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "TMYq9RG0GkWjp5w1ZdSIqw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4c54eb96-4c84-4685-8cbc-e65ad792b777", + "AvatarItemId": 6815, + "AvatarItemType": 0, + "CreatedAt": "2024-05-21T17:05:18.08Z", + "FriendlyName": "Chupacabra Cryptid Trainer Bookbag", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "4AyVysZb4E60srDrHLoZ9w.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,15774b83-fb74-4475-a4e7-5f9b05bc7061", + "AvatarItemId": 7033, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:03:59.463Z", + "FriendlyName": "Pink Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "5MqoBZMKREmPnvEs1JCG2g.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,37b5f581-3064-4437-b6fa-ac66f6af4c28", + "AvatarItemId": 7034, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:04:01.173Z", + "FriendlyName": "Primary Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "YL5RDSdjY0SLGS0DoyzMBw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,4bab58d9-4f46-458f-9dc1-a24a9297d421", + "AvatarItemId": 7038, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:04:08.95Z", + "FriendlyName": "White Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "7sdDNwPFn0m09kAWyWvx8g.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,4ea78d70-9599-4068-a787-5965249eb430", + "AvatarItemId": 7032, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:03:57.297Z", + "FriendlyName": "Navy Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "nw6kTB0SEUm2wXalSfYHpA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,5bdf060f-f0ad-442c-b999-6bd43ee86d56", + "AvatarItemId": 7026, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:03:45.117Z", + "FriendlyName": "Beige Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "EFsK8dXKLkah7Qh6cM4tMg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,61df955b-b54d-47e5-856e-1a151273bfd5", + "AvatarItemId": 7031, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:03:55.503Z", + "FriendlyName": "Light Green Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "xESrlHIskE2cSw9Jbgvyjw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,87250729-42e0-4bde-9a7f-fdb3100acc25", + "AvatarItemId": 7036, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:04:05.27Z", + "FriendlyName": "Red Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "pDYG8i2V6kCvxf8FmBBHKw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,aff071d3-fddc-401f-bf84-7b2263bad287", + "AvatarItemId": 7039, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:04:10.487Z", + "FriendlyName": "Yellow Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "GVZ05n-0H0GCBXCTI68mcw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,d538bdc7-2740-44bd-8c69-7acc0c40bfff", + "AvatarItemId": 7027, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:03:47.043Z", + "FriendlyName": "Black Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "gsji1NYTWEag5cp9FuDN6A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,d7943f3a-e06f-4a39-98e5-d93e7df889cd", + "AvatarItemId": 7035, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:04:03.233Z", + "FriendlyName": "Purple Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "UxH7Wls3E0-tzAnmkLTcqA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,d8f62d4a-dc62-492d-a207-508086b55963", + "AvatarItemId": 7028, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:03:49.277Z", + "FriendlyName": "Light Blue Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "kSskV2atQUyXaxARauYivQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,eeefaa2f-32ab-46d4-9a69-909f224c926a", + "AvatarItemId": 7037, + "AvatarItemType": 0, + "CreatedAt": "2024-06-10T18:04:07.117Z", + "FriendlyName": "Teal Pop Idol Sneakers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "dFTrbWUCpk-vtlodXxlqrA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "515ac648-44bf-4ea7-a3e8-7a6d9899d740", + "AvatarItemId": 6826, + "AvatarItemType": 0, + "CreatedAt": "2024-05-21T17:05:39.547Z", + "FriendlyName": "Sasquatch Stompers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "5aGh4zsGXUqD3M4cuiWkjA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "517cc4d9-ea66-4787-8ce2-b3bf6c465bc7", + "AvatarItemId": 8218, + "AvatarItemType": 0, + "CreatedAt": "2024-08-17T00:30:50.87Z", + "FriendlyName": "Knitted Sweater Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "0odn9znh37344xnhzu5n889m0.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "572e1635-d62d-483f-ad25-a292e416284d", + "AvatarItemId": 5885, + "AvatarItemType": 0, + "CreatedAt": "2023-10-16T19:59:26.143Z", + "FriendlyName": "Goth Outfit", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "3KuSi7CGlkaZvd0g8Yv7nQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "5779551d-d536-4f85-b4a5-00fd723c94f4", + "AvatarItemId": 6814, + "AvatarItemType": 0, + "CreatedAt": "2024-05-21T17:05:15.04Z", + "FriendlyName": "Chupacabra Mutton Chops", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "-Hn_YFXxMEuVCmNokgB2pw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "57e05822-ca63-4726-b3a0-260b6ece7bd7,", + "AvatarItemId": 3033, + "AvatarItemType": 0, + "CreatedAt": "2023-07-03T17:49:03.887Z", + "FriendlyName": "Snake Balloon Hat (Green)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "hF7MkgmvG0mRh92Y9BC6BA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "57e05822-ca63-4726-b3a0-260b6ece7bd7,c2e62c10-3120-4991-9aa7-3f3e2cd29054", + "AvatarItemId": 3034, + "AvatarItemType": 0, + "CreatedAt": "2023-07-03T17:49:06.06Z", + "FriendlyName": "Snake Balloon Hat (Blue)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "tinQ_P6beUKRRlgeU4wTAg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "58d3f945-510f-4f92-87e3-a57e29611e4f", + "AvatarItemId": 3061, + "AvatarItemType": 0, + "CreatedAt": "2023-07-24T19:57:27.77Z", + "FriendlyName": "Fruit Salad Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "GwTh2PZ3ZUyuBatA3rVa1g.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "5929bc1e-7ead-4818-a9ef-8e6d3bc885b3", + "AvatarItemId": 3072, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:34.577Z", + "FriendlyName": "Powerlifter Necklace", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "jZim87YJuESJrUknRMPCPA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "616ff7fa-8776-44ae-9d98-e0b545e48907", + "AvatarItemId": 8133, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:39.177Z", + "FriendlyName": "Destiny Titan Greaves", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "4zamk356cg5kg7t0roj01isr0.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "620934cd-aa73-42ec-97cd-65dd9eed1226,", + "AvatarItemId": 2978, + "AvatarItemType": 0, + "CreatedAt": "2023-05-30T16:17:13.113Z", + "FriendlyName": "Camera on Neck", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "RzefAuPPJkWXsAqPzUKsjQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,b42fa4f0-3b11-4b08-9a0a-7ed54795890d", + "AvatarItemId": 5952, + "AvatarItemType": 0, + "CreatedAt": "2024-01-09T21:45:41.993Z", + "FriendlyName": "Iron Chef Cape", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "0NDbavCH9EGFIhx2REGLSQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "67f082ac-4a7d-4ee3-b05e-872d9ec515f4", + "AvatarItemId": 8071, + "AvatarItemType": 0, + "CreatedAt": "2024-07-01T16:49:07.413Z", + "FriendlyName": "80's Arcade Retro Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "630q9axrqit05rskr5ulprpok.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "6f57d0e7-ef7c-4bb7-9121-50dc752565c2", + "AvatarItemId": 6293, + "AvatarItemType": 0, + "CreatedAt": "2024-02-08T20:27:39.75Z", + "FriendlyName": "Pumpkin Spiced Boots", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "zqV-et48mEWCzdus68KN_w.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "6f966a7f-29c2-45c7-952a-16f147e2f108", + "AvatarItemId": 6628, + "AvatarItemType": 0, + "CreatedAt": "2024-04-01T17:24:57.103Z", + "FriendlyName": "White, Blue Baseball Cleats", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "1JIQmEQls0qbAtfx3_wx0A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "6f966a7f-29c2-45c7-952a-16f147e2f108,dd5095d7-b361-4a57-9101-5fd299e3cd51", + "AvatarItemId": 6630, + "AvatarItemType": 0, + "CreatedAt": "2024-04-01T17:25:02.767Z", + "FriendlyName": "White, Red Baseball Cleats", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "qUnUZU02CkqD_Q55Bc-eBg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7476f124-c7d5-4f38-882e-c1d8a3fd9f0c", + "AvatarItemId": 6835, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:27.187Z", + "FriendlyName": "Destiny Hunter Grips", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "X4LRelAVTkqUxytvyzEMJg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7493664f-c575-4f59-84c6-87101875ae46", + "AvatarItemId": 6565, + "AvatarItemType": 0, + "CreatedAt": "2024-03-11T23:48:35.887Z", + "FriendlyName": "Moon & Stars Slippers", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "f1I8BQBUy0Cuy8WfNj41yw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,96556f7f-a6e8-48f4-a4e4-3fad9be5df4b", + "AvatarItemId": 3053, + "AvatarItemType": 0, + "CreatedAt": "2023-07-24T19:55:10.3Z", + "FriendlyName": "Black Wedding Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "UvVOl6PPYEyedjYSeuQJyg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7768ea0f-23e1-4e00-a685-5e655a231bca", + "AvatarItemId": 6839, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:34.827Z", + "FriendlyName": "Destiny Hunter Strides", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "sEZJ72yP-0mrT84VaIEajw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7a7889e2-4247-46e5-8fa6-b1ceb65f359b", + "AvatarItemId": 6621, + "AvatarItemType": 0, + "CreatedAt": "2024-04-01T17:24:40.59Z", + "FriendlyName": "Baseball Mitt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "UPa-RuHynUyg72kbkcr5VA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7baec8d2-2edc-4257-bf36-b4c73ff75548,e110e218-8667-4b81-9bb5-8cf00f82aeef", + "AvatarItemId": 4322, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:56:06.523Z", + "FriendlyName": "White Basic Pants [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "AOXRcOws_E29Wg44OPKYOg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7baec8d2-2edc-4257-bf36-b4c73ff75548,ead47c94-95b2-4eb1-9b5a-75cf106e61f0", + "AvatarItemId": 4321, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:55:58.93Z", + "FriendlyName": "Black Basic Pants [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "pYPr8PuqGUqc1wbOQ-gv3g.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7baec8d2-2edc-4257-bf36-b4c73ff75548,f3074404-02b6-4f5a-a9f0-8dfab07b6e1f", + "AvatarItemId": 4320, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:55:51.677Z", + "FriendlyName": "Orange Basic Pants [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "dybJDhKDhEy_vbC6sqiefQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7baec8d2-2edc-4257-bf36-b4c73ff75548,fbcbc56c-4bb1-4e55-ab04-7abdffcf0cd4", + "AvatarItemId": 4323, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:56:11.743Z", + "FriendlyName": "Navy Blue Basic Pants [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "Zy3zLilma02IayUVLtuGjA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef", + "AvatarItemId": 3125, + "AvatarItemType": 0, + "CreatedAt": "2023-08-25T19:31:29.73Z", + "FriendlyName": "Leggings [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "odT4-F4N70Cun7KWkjk9JQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,22c70f8f-7dc7-4dbb-960e-0d43b43dd27f", + "AvatarItemId": 4319, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:55:45.853Z", + "FriendlyName": "Red Leggings [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "A0qHkpMDEkKkjeKON1h0kQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,4523816c-4195-44c7-b5cc-5a535f63d80f", + "AvatarItemId": 4317, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:55:36.32Z", + "FriendlyName": "Green Leggings [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "D2BNUqDhi06PVWJ9LgUBOg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,77064661-67f5-4e72-b37f-1c2b6b4b75f2", + "AvatarItemId": 4318, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:55:40.257Z", + "FriendlyName": "Yellow Leggings [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "CnTWJmVBPk-yrOKEGzsy4Q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,a37cf889-f2a9-42f8-937b-5371d1f31af3", + "AvatarItemId": 4315, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:55:28.113Z", + "FriendlyName": "Teal Leggings [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "gngGB-JLZ06SK7wCCmLsxg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,b5779ba5-ff69-435f-84ac-a4fa1ecee782", + "AvatarItemId": 4313, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:55:20.673Z", + "FriendlyName": "Black Leggings - Free", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "FskImrnBjUelbd9CjARSow.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,b72a746f-c67a-45da-8359-a7b9404df6d7", + "AvatarItemId": 4314, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:55:24.2Z", + "FriendlyName": "Orange Leggings [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "gQ9u0eW--0CO9n_Rcmg8tA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,db1ff0d7-3dc2-4961-bf84-d4edbb51e0cb", + "AvatarItemId": 4316, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:55:32.39Z", + "FriendlyName": "Purple Leggings [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "I9ng0DbNxU2H3e0MU2K7IQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7cbb780b-dee0-415e-b948-e71b01c75fc8", + "AvatarItemId": 6832, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:20.817Z", + "FriendlyName": "Destiny Hunter Cloak", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "c_tiB0ulNESn1xqvmXCS5Q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7df7c0b3-b713-4264-9563-19012422872f", + "AvatarItemId": 6770, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:13.75Z", + "FriendlyName": "Pearly White Shell Necklace", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "0axEqcThu0Sw399StjZRAg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "7f39c694-8b84-4f99-ae86-7776ca8ae089", + "AvatarItemId": 6833, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:22.503Z", + "FriendlyName": "Destiny Hunter Cowl", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "YBixB90eREiI_OcLOD2KwA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70", + "AvatarItemId": 3130, + "AvatarItemType": 0, + "CreatedAt": "2023-08-25T19:31:51.74Z", + "FriendlyName": "Boots [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "GQV7FZvZPUCBLt1X8zgbng.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,02Qi33Ru4UKQ0RR1v5ONMw", + "AvatarItemId": 4330, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:03.417Z", + "FriendlyName": "Blue Boots [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "y9mAahZ_AkyV9R38q_st-A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,2WKCwYySwUSjksyyries9g", + "AvatarItemId": 4333, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:27.26Z", + "FriendlyName": "Purple Boots [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "19CcC1wFc0ycpJRk_r4fDw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,Fs3GuxlV_EKk3XhgTT-4bg", + "AvatarItemId": 4334, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:30.633Z", + "FriendlyName": "Red Boots [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "FksPiBbelEyR0mN5vIr5lg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,m0mC330TNkWkhle9TqUYYw", + "AvatarItemId": 4331, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:08.44Z", + "FriendlyName": "Brown Boots [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "pRwMaafA5Eu7RRCQPlx0ZA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,NB9iqdySpkG8agUCirr1AQ", + "AvatarItemId": 4335, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:34.317Z", + "FriendlyName": "Tan Boots [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "imSRQLcLjU26Qb6FnCbB1A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,VKz48bIeTU2ibOdFQ-afJw", + "AvatarItemId": 4336, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:38.393Z", + "FriendlyName": "White Boots [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "9FUio4QygEW32qGHSyDwGA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,Vld4uLqj20yYyut0hk_2sw", + "AvatarItemId": 4332, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:01:15.033Z", + "FriendlyName": "Green Boots [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "iXByM9ecNU6nk81f5NGdjw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "86694be4-17da-40bc-945b-044d0e735bd8", + "AvatarItemId": 3069, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:22.997Z", + "FriendlyName": "Red Casual Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "aSxAlMMYyku0ZP-tPwth_g.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "86694be4-17da-40bc-945b-044d0e735bd8,bab8193c-f67b-4022-834a-597cbf5dc7dc", + "AvatarItemId": 3070, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:26.623Z", + "FriendlyName": "Blue Casual Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "sZQbQ2soBEKZZ9B1KWpjFg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "86694be4-17da-40bc-945b-044d0e735bd8,e5172c0a-3099-4e61-a181-f6b114b0a608", + "AvatarItemId": 3071, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:30.607Z", + "FriendlyName": "Green Casual Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "9wckg5aaofgrumbk9vfgpwg2m.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "8705d28f-49f4-48d9-9946-13f18aabfe4b,", + "AvatarItemId": 2987, + "AvatarItemType": 0, + "CreatedAt": "2023-06-12T18:20:26.347Z", + "FriendlyName": "Shark Hat (Hammerhead)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "dC8C6Ahcq0GyutK0veb2ng.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "8ae154ba-8e69-48da-a314-507b419d4338", + "AvatarItemId": 3059, + "AvatarItemType": 0, + "CreatedAt": "2023-07-24T19:57:23.6Z", + "FriendlyName": "Atlantian Cape", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "M3K4pU2h-0KfDgZP-HsZtQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "8b5bf159-bb05-4bdb-acc6-c793610cf26c", + "AvatarItemId": 8095, + "AvatarItemType": 0, + "CreatedAt": "2024-07-08T18:06:46.043Z", + "FriendlyName": "Carnival Clown Pants", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "c8zrmy6ny7vbayfnf75x9iggy.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "8bf20da1-c086-44f0-afda-ed48beb4746f", + "AvatarItemId": 8135, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:43.427Z", + "FriendlyName": "Destiny Warlock Boots", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "4mfuyuhuegov2ljcx4s6ncq8l.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "8c0a1dfc-b49d-474a-bf26-ccdc6690d396", + "AvatarItemId": 6787, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:51.813Z", + "FriendlyName": "Flower Sandals", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "J_JoDMkETkKgQi_A4rfxxA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,19b90abb-5a34-4b6f-93c8-67c9cf6b063a", + "AvatarItemId": 8175, + "AvatarItemType": 0, + "CreatedAt": "2024-07-27T00:14:21.983Z", + "FriendlyName": "Barista Visor", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "d7u5o84jtzmkrsnhmnrd7nx5q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "94220ee5-e70e-4643-b794-9ed555eb3d21,6d6b3904-10e2-430e-b26e-454e8ceb2984", + "AvatarItemId": 6542, + "AvatarItemType": 0, + "CreatedAt": "2024-03-04T17:51:57.17Z", + "FriendlyName": "Workout Techwear", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": "", + "ThumbnailImage": "Dpr-Bo9Sv0OqFepanU_CDQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "94220ee5-e70e-4643-b794-9ed555eb3d21,6fcffb20-d67b-458a-875b-221a69890aba", + "AvatarItemId": 6540, + "AvatarItemType": 0, + "CreatedAt": "2024-03-04T17:51:52.337Z", + "FriendlyName": "Duckegg Techwear", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": "", + "ThumbnailImage": "kzh8uNab5kK0kknDN8x5Tg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "96ca8d50-0721-47a3-a988-018a1c157677,1df59921-92d1-4bec-9355-b4d0bd942c47", + "AvatarItemId": 8099, + "AvatarItemType": 0, + "CreatedAt": "2024-07-08T18:06:53.503Z", + "FriendlyName": "Carnival Back Drumset Backpack", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": "music", + "ThumbnailImage": "4fk3d1dzaywy8s1cai49ejqwd.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "971f8378-fc9d-4c8d-b288-5b1527b1bfa0", + "AvatarItemId": 5874, + "AvatarItemType": 0, + "CreatedAt": "2023-10-10T17:14:45.033Z", + "FriendlyName": "Neck Warmer (Pumpkin Spice)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "lK0vReeelkCJRBi9CL7UhA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "971f8378-fc9d-4c8d-b288-5b1527b1bfa0,baf3039b-1dd4-4766-a06c-bb74c2d286f6", + "AvatarItemId": 5875, + "AvatarItemType": 0, + "CreatedAt": "2023-10-10T17:14:48.683Z", + "FriendlyName": "Neck Warmer", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "dYKu0IDmC069hZ9rk_4mng.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "9880a782-734d-4621-b3ae-39ca7ffec93a", + "AvatarItemId": 6781, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:38.71Z", + "FriendlyName": "Tech Camper Hiking Vest", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "-t-zXJdTREOjFlLkUEfQCw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "98e4c868-df73-4755-84b6-c4d12723b811,058a0e3f-0940-41e0-aca6-880a99102902", + "AvatarItemId": 6763, + "AvatarItemType": 0, + "CreatedAt": "2024-05-06T19:21:33.623Z", + "FriendlyName": "Neon Green Pop Rock Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "kwpbk7q1W0Sq5FrZHZDByQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "98e4c868-df73-4755-84b6-c4d12723b811,8e3513de-5b7a-43e3-b1d9-5c2022d7333a", + "AvatarItemId": 6764, + "AvatarItemType": 0, + "CreatedAt": "2024-05-06T19:21:36.463Z", + "FriendlyName": "Teal Pop Rock Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "6NUPQxwxJk6F7Nt7RiR7Ow.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "9918720d-198c-4cca-a72b-268ab1ac1437", + "AvatarItemId": 8150, + "AvatarItemType": 0, + "CreatedAt": "2024-07-27T00:10:48.657Z", + "FriendlyName": "Race Car Driver Gloves", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "9q25zostzsbyxobcb5eh58ijz.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "9b62cbca-694f-4a32-b910-14da66bee9bb,85a04148-7326-4ad7-b073-e94291cc4fba", + "AvatarItemId": 5882, + "AvatarItemType": 0, + "CreatedAt": "2023-10-10T17:15:09.603Z", + "FriendlyName": "Cottagecore Outfit", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "hHrEcBOqu0OswXa9i89IyA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "9b636782-47f0-4218-9a1d-be65e550dc44,f0b2eb05-690f-4ec1-a573-927fba5b0a58", + "AvatarItemId": 8097, + "AvatarItemType": 0, + "CreatedAt": "2024-07-08T18:06:49.317Z", + "FriendlyName": "Carnival Bongo Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": "music", + "ThumbnailImage": "1avb5vi0wc0ymcvqcmjdia9si.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "9cb48301-5e90-4e7c-8058-2f7a865ff869", + "AvatarItemId": 6625, + "AvatarItemType": 0, + "CreatedAt": "2024-04-01T17:24:47.397Z", + "FriendlyName": "White, Blue Baseball Pants", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "YXcFW6B0602qB9u9V7E5uw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "9cb48301-5e90-4e7c-8058-2f7a865ff869,4b010884-60a6-4646-bf4a-c3659c4ad2d0", + "AvatarItemId": 6627, + "AvatarItemType": 0, + "CreatedAt": "2024-04-01T17:24:53.72Z", + "FriendlyName": "White, Red Baseball Pants", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "OoU1OfQREkmoW3WdV-VqYw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "9cc22975-768c-4b1c-8356-d3b6644d74eb", + "AvatarItemId": 6618, + "AvatarItemType": 0, + "CreatedAt": "2024-04-01T17:24:28.143Z", + "FriendlyName": "White, Blue Catchers Mask", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "EFuo8iAAV0ayzp9Vyr6nHw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "9cc22975-768c-4b1c-8356-d3b6644d74eb,ca5fa878-bf9c-4386-bc7d-caea0dd2bf68", + "AvatarItemId": 6620, + "AvatarItemType": 0, + "CreatedAt": "2024-04-01T17:24:39.073Z", + "FriendlyName": "White, Red Catchers Helmet", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "ThUplvXoVUajIpvprPnQTQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a03e28a4-b70a-44fa-b027-a112ea01ddb0", + "AvatarItemId": 6779, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:35.273Z", + "FriendlyName": "Tech Camper Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "6-zQfRNReUauDQy6zgTR1w.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a112b8b5-ea0e-4d23-a7eb-2daa4683a87c", + "AvatarItemId": 3065, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:10.557Z", + "FriendlyName": "Atlantian Warrior Pauldrons", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "xnG-JC3vJ0K6jQX6Nry7yA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,67232090-4ad1-4782-804b-532698f49d36", + "AvatarItemId": 5947, + "AvatarItemType": 0, + "CreatedAt": "2023-12-21T00:29:25.627Z", + "FriendlyName": "Parrot Onesie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "oqTU8-4DJkKpobQZYzzMAQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,kTyKeivEskaxQNLhfPWo1A", + "AvatarItemId": 2986, + "AvatarItemType": 0, + "CreatedAt": "2023-06-12T18:20:22.377Z", + "FriendlyName": "Shark Onesie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "WCXG6xigy0micMYlrO76uQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a5ec4c56-3c0b-43c9-aa0f-dbf5295ff6c8,8375e19b-3420-448f-bc7f-5f14452698d7", + "AvatarItemId": 4324, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:56:18.803Z", + "FriendlyName": "Red Basic Shorts [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "JJOCLdAvU0iYdsN17P81CQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a5ec4c56-3c0b-43c9-aa0f-dbf5295ff6c8,83db910c-e496-4ed0-a772-1e00992b4cfe", + "AvatarItemId": 4326, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:56:34.887Z", + "FriendlyName": "Blue Basic Shorts [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "zQs6guKk0Uq0axhuSMFTCQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a5ec4c56-3c0b-43c9-aa0f-dbf5295ff6c8,d200cb87-1079-4f5a-98e7-cdbff6df6871", + "AvatarItemId": 4325, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T22:56:28.543Z", + "FriendlyName": "Purple Basic Shorts [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "Hr3Yv7K3P0qkI2KJp0ZPpQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a9404818-d7d0-4061-8eb8-90f23e82115c,", + "AvatarItemId": 3046, + "AvatarItemType": 0, + "CreatedAt": "2023-07-10T16:19:50.75Z", + "FriendlyName": "Overflowing Book Bag (Red)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "zOQhg8zkN06DAaLaAILpmw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a9404818-d7d0-4061-8eb8-90f23e82115c,08593d9f-aaed-4662-973d-0f30e77f1955", + "AvatarItemId": 3048, + "AvatarItemType": 0, + "CreatedAt": "2023-07-10T16:19:55.843Z", + "FriendlyName": "Overflowing Book Bag (Green)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "UOJYfuvR_kSgrizG2rqJJg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a94cb187-1910-4fee-86a9-979b52b27db5", + "AvatarItemId": 6769, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:11.923Z", + "FriendlyName": "Beach Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "KrBBIFqy3Eq6toMcUCiD3A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a9578182-493f-4e12-94c1-746dcb9aef3f", + "AvatarItemId": 5944, + "AvatarItemType": 0, + "CreatedAt": "2023-12-21T00:29:11.56Z", + "FriendlyName": "Parrot Beanie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "L50zkUCMQ0W2ifUKL5d42A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "a95a1b36-7849-4791-89be-c1a56868bfc5", + "AvatarItemId": 3058, + "AvatarItemType": 0, + "CreatedAt": "2023-07-24T19:57:19.283Z", + "FriendlyName": "Artist's Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "TrxXMUz1QEGwzYpvdVHneg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ab8282d8-f612-482f-b3bd-421176bfe2ee", + "AvatarItemId": 8127, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:27.267Z", + "FriendlyName": "Destiny Warlock Robes", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "au7nvsdv637ljthv4ox6o97nl.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,5bBz1dY0WU-BNnDzMDtd8g", + "AvatarItemId": 4353, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:53.12Z", + "FriendlyName": "Yellow Sneakers [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "Dibgbc_bxUa3g86eIFD3Ng.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,Ac4_jZ729EqUT2ZNO0Do-A", + "AvatarItemId": 4348, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:30.103Z", + "FriendlyName": "Orange Sneakers [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "_PLdHIJfREqsJL37kxUAEw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,b2LZ3KJSo0CqXK5JO3-Ldw", + "AvatarItemId": 4350, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:37.06Z", + "FriendlyName": "Purple Sneakers [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "OIxtqn9_WkixxB1j4SrC-g.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,HmUsJvhU80e1cSVFhSyZVw", + "AvatarItemId": 4346, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:15.233Z", + "FriendlyName": "Blue Sneakers [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "VG33upcCUU-cdbX5eE_zeA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,ps8WE0ePF0OUR46ehAEUQg", + "AvatarItemId": 4352, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:47.147Z", + "FriendlyName": "White Sneakers [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "ms4-ruv4dE2mOIVeB3LCMQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,vGslG5iYVESGQe9rrqUK1g", + "AvatarItemId": 4347, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:26.323Z", + "FriendlyName": "Green Sneakers [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "sUjx2O0lhUODrwcTxyng8w.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,Z4G1DFsyA0CSBrbmYpkmIg", + "AvatarItemId": 4349, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:33.98Z", + "FriendlyName": "Pink Sneakers [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "nfg8JHqkfEWaaXkcKoI2Wg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,zZ6khdQPG0KlCp_zp9Qv5w", + "AvatarItemId": 4351, + "AvatarItemType": 0, + "CreatedAt": "2023-08-28T23:02:42.603Z", + "FriendlyName": "Red Sneakers [Full Body]", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 0, + "TagList": null, + "ThumbnailImage": "5p7vXj6c3UmQKwem50BSIg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "acdacd4e-5f15-4de9-84bf-95ce7d87d60f", + "AvatarItemId": 8146, + "AvatarItemType": 0, + "CreatedAt": "2024-07-27T00:10:39.117Z", + "FriendlyName": "Race Car Driver Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "5cfkikz077bpn3s4xsxywi7s6.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ad40bd95-d662-4993-8449-3df293a15e64", + "AvatarItemId": 8131, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:34.443Z", + "FriendlyName": "Destiny Warlock Hood", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "2rcki7fhfb77xjk6rtwzkxd1j.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "adbd2eaa-0dd0-4955-be4c-0d5a66d64ed2,", + "AvatarItemId": 2992, + "AvatarItemType": 0, + "CreatedAt": "2023-06-12T18:30:57.927Z", + "FriendlyName": "DJ Headphones", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "2GBWHkf2J0SGr5g8hRHsbg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,f0753d46-2ad0-4319-bf2d-f9f326c94120", + "AvatarItemId": 5951, + "AvatarItemType": 0, + "CreatedAt": "2024-01-09T21:45:39.78Z", + "FriendlyName": "Iron Chef Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "GqC41kKSDkOXS4ic776bOA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b226ba29-cd92-4baf-b4cc-3411c15c7070", + "AvatarItemId": 6780, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:37.493Z", + "FriendlyName": "Compass Necklace", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "GhUfEVWS002OmzuVzeOluw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b63c6d3b-fe17-44d9-ac99-cd9a89f2a5e4", + "AvatarItemId": 6492, + "AvatarItemType": 0, + "CreatedAt": "2024-02-28T23:43:53.77Z", + "FriendlyName": "Orange Lifting Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "eRE_6W3wdUmV4eYaGpWjsQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b63c6d3b-fe17-44d9-ac99-cd9a89f2a5e4,1a37f1e3-9b30-46fb-ab92-d238ee88815e", + "AvatarItemId": 6494, + "AvatarItemType": 0, + "CreatedAt": "2024-02-28T23:43:56.71Z", + "FriendlyName": "Teal Lifting Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "scw7nRdBFU2FxvYYq2SUjQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b63c6d3b-fe17-44d9-ac99-cd9a89f2a5e4,34a725cb-3c69-49d7-a8fd-ac855ae9efb8", + "AvatarItemId": 6493, + "AvatarItemType": 0, + "CreatedAt": "2024-02-28T23:43:55.293Z", + "FriendlyName": "Green Lifting Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "OqpDm_kSHkG1H3TihrA4uA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b65fce08-fc5d-4519-872a-8b0953665f65", + "AvatarItemId": 8129, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:30.947Z", + "FriendlyName": "Destiny Warlock Gloves", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "dvwbu8b03aq5p1ksyx55gqs6h.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,4874a567-4497-4d2d-8a9f-875a9300f478", + "AvatarItemId": 5940, + "AvatarItemType": 0, + "CreatedAt": "2023-12-21T00:16:48.15Z", + "FriendlyName": "Paw Print Hoodie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "R5DfY2IQZ0iO6ZvbylcZ8A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,52323c4d-2c02-47e6-b5b2-db8d6e15caa4", + "AvatarItemId": 5942, + "AvatarItemType": 0, + "CreatedAt": "2023-12-21T00:16:53.02Z", + "FriendlyName": "Red Paw Print Hoodie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "ssaz6M3K906GsqtEF-AZuA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,de607042-f0d8-4a11-8d09-6e70d3cb661c", + "AvatarItemId": 5941, + "AvatarItemType": 0, + "CreatedAt": "2023-12-21T00:16:50.457Z", + "FriendlyName": "Green Paw Print Hoodie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "KtIAliRCm0-l-sEF9mEfZQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b734172c-e405-4fc7-88c3-c859309bb4ac,", + "AvatarItemId": 2955, + "AvatarItemType": 0, + "CreatedAt": "2023-05-09T18:07:07.36Z", + "FriendlyName": "Beanie (Flamingo)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "VM2FJVLeI0mpx-MnbQ3opQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "b97fc37e-8f10-48e1-b508-a6a346be896d,", + "AvatarItemId": 2964, + "AvatarItemType": 0, + "CreatedAt": "2023-05-23T21:03:19.677Z", + "FriendlyName": "Anglerfish Beanie", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "sbtwU_QPL0OBYO6YZYXUgg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "bb6ee7fa-7a31-4a16-a97e-be6eac42c595,e6b8cc9e-950c-4427-bb55-0d8121f6fc99", + "AvatarItemId": 5881, + "AvatarItemType": 0, + "CreatedAt": "2023-10-10T17:15:05.707Z", + "FriendlyName": "Cottagecore Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "9IaspJTEk0S91IHktsB_-w.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,1373f47c-72fb-4337-bc51-e1ed4d67447b", + "AvatarItemId": 8226, + "AvatarItemType": 0, + "CreatedAt": "2024-08-17T00:31:36.55Z", + "FriendlyName": "Teal & Yellow Quilted Vest", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "blwqy2k7c6snqcdpsyvcq7ng9.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,5c632525-50f0-428d-adcd-5317259f3884", + "AvatarItemId": 8224, + "AvatarItemType": 0, + "CreatedAt": "2024-08-17T00:31:24.37Z", + "FriendlyName": "Black & Green Quilted Vest", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "63xpx2jtffsn64brmlt4xwg6d.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,7b4969d1-bb3e-4ae0-aaee-c675313bda08", + "AvatarItemId": 8227, + "AvatarItemType": 0, + "CreatedAt": "2024-08-17T00:31:42.933Z", + "FriendlyName": "Pink & White Quilted Vest", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "11sjgbx9d0o6bsibj179t0dde.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,fd948890-5fb4-4bb2-9c19-043395c91fc9", + "AvatarItemId": 8225, + "AvatarItemType": 0, + "CreatedAt": "2024-08-17T00:31:30.58Z", + "FriendlyName": "Teal & White Quilted Vest", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "bax04mqauufeawln9seqy07s6.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "c0f5ba50-8a26-4aa3-9a26-c3981574192f", + "AvatarItemId": 8136, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:45.887Z", + "FriendlyName": "Destiny Warlock Legs", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "285n26jo260r2a39w09vhtkpr.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "c1d78817-7c33-4496-88c9-c28eeca92db1", + "AvatarItemId": 6817, + "AvatarItemType": 0, + "CreatedAt": "2024-05-21T17:05:22.66Z", + "FriendlyName": "Sasquatch Cryptid Trainer Bookbag", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "zbIRJ3b_g0G2oJcSasnlxg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,Qevoxmtsa0eNzGss_aG2gw", + "AvatarItemId": 3011, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:15:13.267Z", + "FriendlyName": "Fiery Mermaid Necklace", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "lTsnHs0n_U-rAblV9inZ3Q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "c8d2503e-5d43-4828-8d1d-40c64a577753,edb24c02-7bff-4150-ab44-eae04fe34c67", + "AvatarItemId": 8101, + "AvatarItemType": 0, + "CreatedAt": "2024-07-08T18:06:56.867Z", + "FriendlyName": "Carnival Harmonica Necklace", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": "music", + "ThumbnailImage": "7p2yycdm7fgfphk1twy4vklid.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "c9badd8f-3f81-4c05-8a31-24abd8839872", + "AvatarItemId": 3062, + "AvatarItemType": 0, + "CreatedAt": "2023-07-24T19:57:30.537Z", + "FriendlyName": "Fruit Salad Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "9IOGXadx4kalYQSGDkfCpQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,E7zTfb8zbUKuld0rxNt7fg", + "AvatarItemId": 3012, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:15:14.953Z", + "FriendlyName": "Stunt Runner Harness", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "XhmRQ1Doqkycv5YdtNZR7g.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "cab5bbc7-e407-40e4-953e-c6bb9862795e", + "AvatarItemId": 8206, + "AvatarItemType": 0, + "CreatedAt": "2024-08-08T21:59:45.957Z", + "FriendlyName": "Sweater Jacket", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "7fcdokx8znjaxdew95b3ygwfh.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "caf1e229-9660-4abf-8074-f706709f4097,6a73a2a8-174e-4f19-9024-1a21a631dd5f", + "AvatarItemId": 6704, + "AvatarItemType": 0, + "CreatedAt": "2024-04-16T16:10:45.053Z", + "FriendlyName": "Citrus Overall Shorts", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "2T0Pg4U0yEqLLTKcWAhTgw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "caf1e229-9660-4abf-8074-f706709f4097,a264d345-20ce-4655-a890-90eb92e6456f", + "AvatarItemId": 6703, + "AvatarItemType": 0, + "CreatedAt": "2024-04-16T16:10:42.917Z", + "FriendlyName": "Berry Overall Shorts", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "uROu-Okd-k22BWILzZDB-g.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "cb061cf3-05fb-4494-be5e-091ddb080271,7cccd32d-ce12-4ce2-8621-6300fec69960", + "AvatarItemId": 6766, + "AvatarItemType": 0, + "CreatedAt": "2024-05-06T19:21:41.34Z", + "FriendlyName": "Teal Pop Rock Gloves", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "EB96dRwy00GwFFXlTzlrDg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "cb061cf3-05fb-4494-be5e-091ddb080271,ca07f961-9ac7-418c-a865-5a4e88cadcea", + "AvatarItemId": 6765, + "AvatarItemType": 0, + "CreatedAt": "2024-05-06T19:21:39.713Z", + "FriendlyName": "Neon Green Pop Rock Gloves", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "HLFAuBFeRU2E-YjXC6qjuA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "cc05a236-c4f2-42b5-b6e5-2b217902a16f", + "AvatarItemId": 6834, + "AvatarItemType": 0, + "CreatedAt": "2024-05-22T16:27:25.047Z", + "FriendlyName": "Destiny Hunter Vest", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "Uo4Nqbhxd0yMjbw4xSCLmQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "cfce35b4-d182-4505-a631-5a8e5011f550,14b479d2-2f41-4274-a1bb-f3d8021267aa", + "AvatarItemId": 6761, + "AvatarItemType": 0, + "CreatedAt": "2024-05-06T19:21:30.74Z", + "FriendlyName": "Neon Green Pop Rock Earrings", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "6axtzdkjb1536c37m24lkbflq.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "cfce35b4-d182-4505-a631-5a8e5011f550,95d8fe6d-76c6-4522-b950-9038b2ec64b7", + "AvatarItemId": 6762, + "AvatarItemType": 0, + "CreatedAt": "2024-05-06T19:21:32.327Z", + "FriendlyName": "Teal Pop Rock Earrings", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "5i3t6p9jyu5h4x1tafcpgmg07.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "cfe276b9-1bdf-4c41-9e86-1a0215c6c5a1,ffUVovxlWUCgOxJyUJscIA", + "AvatarItemId": 6614, + "AvatarItemType": 0, + "CreatedAt": "2024-03-27T22:53:47.397Z", + "FriendlyName": "Blue Ascot", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 30, + "TagList": null, + "ThumbnailImage": "X-GsRMWiDUeLzlH8v6Oqsg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d3bf87c4-cbc0-49dd-985e-7fc329a3a700", + "AvatarItemId": 8121, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:15.607Z", + "FriendlyName": "Destiny Titan Helm", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "a24a3xqaccf6zhq4yg1mvyz7q.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d52ff2bb-d396-478d-8153-2aa845feb306,G4MuMrpiKEWN0uEBcGlX4w", + "AvatarItemId": 3006, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:14:58.297Z", + "FriendlyName": "Hiker Hat (Violet)", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "dgR7WYijDkuFNJP8WDoMXA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d52ff2bb-d396-478d-8153-2aa845feb306,N-C_xBTZeUq1YsdELln53Q", + "AvatarItemId": 3005, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:14:56.64Z", + "FriendlyName": "Lime Hiker Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "8sWVV49Fr0SijHip5hXUZA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1", + "AvatarItemId": 6771, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:15.11Z", + "FriendlyName": "Orange Cardigan Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "84dW02iNe0KAzUJdHNSo-w.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,0737114a-6aac-4186-94cf-c7d25188a853", + "AvatarItemId": 6774, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:23.037Z", + "FriendlyName": "Green Cardigan Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "NHVraPt1vUmZKE9WeGDd1A.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,0ab3f180-118a-4e6c-93b3-6b6882a5ef82", + "AvatarItemId": 6776, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:27.793Z", + "FriendlyName": "Purple Cardigan Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "KFvzXPmPCE-DGJwOiwMTag.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,24aaccc4-156a-4caa-8bb5-f153e093b8f0", + "AvatarItemId": 6777, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:30.207Z", + "FriendlyName": "White Cardigan Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "QWrBe2SEQ0es_adZqqAtEQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,6d2e1307-772a-47ed-afc1-bfdb1db1b071", + "AvatarItemId": 6773, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:19.79Z", + "FriendlyName": "Blue Cardigan Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "fA48MBrH20Ch1qmPjiWbrw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,7631aa03-9995-4e13-8dbe-87829a5ff57f", + "AvatarItemId": 6772, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:17.483Z", + "FriendlyName": "Black Cardigan Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "-TQZAW-r6UCDOqxZOaXJEw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,aa2599ad-dfd0-4f07-bbef-07f2b6567212", + "AvatarItemId": 6775, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:25.357Z", + "FriendlyName": "Pink Cardigan Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "VohwfKHm2Ee5R8Ljl1FdDA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,d9a488ba-931a-490b-919e-c722b7cc5b80", + "AvatarItemId": 6778, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:32.82Z", + "FriendlyName": "Yellow Cardigan Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "uZTBBSkMMEOPFT1u2z20ng.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "da55b1ff-c7f0-4411-aecb-692af8a80029", + "AvatarItemId": 8192, + "AvatarItemType": 0, + "CreatedAt": "2024-08-03T00:30:52.177Z", + "FriendlyName": "Lumberjack Boots", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "26iab0mu4pycvivdlfl8207tn.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "db50d9bc-4087-4743-89ae-dc40bf1ea166", + "AvatarItemId": 6768, + "AvatarItemType": 0, + "CreatedAt": "2024-05-13T23:10:08.547Z", + "FriendlyName": "Beach Accoutrements", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "R2b8nMK2DE67qWAGNWBwqg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "dfffe31f-9f82-4622-a920-ea5f5bd26042,", + "AvatarItemId": 2977, + "AvatarItemType": 0, + "CreatedAt": "2023-05-30T16:17:07.177Z", + "FriendlyName": "Binoculars", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "CBkyXK-FU0ad4rmVCyVxSQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "e633d56d-5121-4492-b606-40759108a00e,c7adc07a-e172-4265-8107-c3c731dde5f2", + "AvatarItemId": 7012, + "AvatarItemType": 0, + "CreatedAt": "2024-06-03T17:50:16.77Z", + "FriendlyName": "Chocolate Popsicle Earring", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 30, + "TagList": null, + "ThumbnailImage": "4f013ud8yjhoroqh7bdgatmz1.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "e8809b31-0c63-4d94-b201-154323212024", + "AvatarItemId": 8125, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:23.223Z", + "FriendlyName": "Destiny Warlock Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "c1vjo4gknu7xt7udar484polq.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "e97f05da-57d3-4927-aa22-c124a94d8432,", + "AvatarItemId": 3043, + "AvatarItemType": 0, + "CreatedAt": "2023-07-03T17:49:32.433Z", + "FriendlyName": "Lifejacket & Swim Trunks", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "KMDdSkb_eEWqvdU_t9G4aQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "e97f05da-57d3-4927-aa22-c124a94d8432,6668a675-5be4-4238-843d-92f026a762b7", + "AvatarItemId": 8059, + "AvatarItemType": 0, + "CreatedAt": "2024-06-24T17:08:24.13Z", + "FriendlyName": "Yellow Life Vest", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "2WW56DKH6UGFJQe4KHNyqA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "e97f05da-57d3-4927-aa22-c124a94d8432,a32f0749-0800-4cb8-936d-8b4627ce3d37", + "AvatarItemId": 8058, + "AvatarItemType": 0, + "CreatedAt": "2024-06-24T17:08:20.677Z", + "FriendlyName": "Purple Life Vest", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "Ty229WguE0y0G-vW-DFxsA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ec4e3acc-f10e-4b7c-b74f-7cf1c95114e3", + "AvatarItemId": 6495, + "AvatarItemType": 0, + "CreatedAt": "2024-02-28T23:43:58.103Z", + "FriendlyName": "Red & Orange Workout Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "f5kQaBvPJUCkKkVPcEjuKw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ec4e3acc-f10e-4b7c-b74f-7cf1c95114e3,1f4c7d76-2f55-4cfb-9693-207c5326ec9f", + "AvatarItemId": 6497, + "AvatarItemType": 0, + "CreatedAt": "2024-02-28T23:44:02.697Z", + "FriendlyName": "Purple & Teal Workout Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "KIsIgTMDaU-obmTvgU44yQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ec4e3acc-f10e-4b7c-b74f-7cf1c95114e3,3711f5aa-1817-4e7a-8587-40db9ef2a20c", + "AvatarItemId": 6496, + "AvatarItemType": 0, + "CreatedAt": "2024-02-28T23:44:00.337Z", + "FriendlyName": "Green & Black Workout Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "NGSSctckQ0WGA9aEUaBEWQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ee835538-058e-43d9-8268-b7d079563799", + "AvatarItemId": 3063, + "AvatarItemType": 0, + "CreatedAt": "2023-08-01T16:37:04.663Z", + "FriendlyName": "Atlantian Warrior Helm", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "0y7sI1t4EUG7IlCRTrQjLw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "f0e16eb0-4d34-40e8-8885-5fc18f27c161", + "AvatarItemId": 8089, + "AvatarItemType": 0, + "CreatedAt": "2024-07-08T18:06:29.827Z", + "FriendlyName": "Carnival Clown Hat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "9qmawswvag1fxa5t59riovbp1.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "f20af2c6-724b-4772-a48e-1801d6002285", + "AvatarItemId": 8220, + "AvatarItemType": 0, + "CreatedAt": "2024-08-17T00:31:03.693Z", + "FriendlyName": "Fall Fashion Laced Boots", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "1os7vkkm9d9mra0te2j9227hy.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "f567f792-e5bf-41d9-a8a9-e3af7aaddaf7,", + "AvatarItemId": 2979, + "AvatarItemType": 0, + "CreatedAt": "2023-05-30T16:17:14.88Z", + "FriendlyName": "Flip-up Sunglasses", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "DtM2SmDp80ej1fCeKVUZmQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "f5cdba30-e08e-4e8d-a957-729c5c5aac68", + "AvatarItemId": 5837, + "AvatarItemType": 0, + "CreatedAt": "2023-09-19T22:25:13.287Z", + "FriendlyName": "Kindred Forest Guardian Gauntlets", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "4rwM4DbjEEmkUcQj6h73FQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "f5e14115-c408-40c8-9ee6-90b8948ccd6d", + "AvatarItemId": 8134, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:41.147Z", + "FriendlyName": "Destiny Titan Legs", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "5z907j8yju4hnpdr08zyykwm8.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "fb521ede-d7cb-4dea-8cf4-300fa25872b8", + "AvatarItemId": 5883, + "AvatarItemType": 0, + "CreatedAt": "2023-10-16T19:59:22.217Z", + "FriendlyName": "Goth Belt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 10, + "TagList": null, + "ThumbnailImage": "RGIB51fa60yJjTOpcNqilA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "fc2bbfa5-ade7-468a-bf39-83106f1fac0c", + "AvatarItemId": 8119, + "AvatarItemType": 0, + "CreatedAt": "2024-07-11T22:00:10.94Z", + "FriendlyName": "Destiny Titan Gauntlets", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "29jrtcfeufa6z45s9067s6rfw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,499irXZltkSvv9pWsdBSyw", + "AvatarItemId": 3002, + "AvatarItemType": 0, + "CreatedAt": "2023-06-20T15:14:49.077Z", + "FriendlyName": "Fiery Mermaid Dress", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "gOo758zwVUSuhMP51GFJyA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,16aebbd2-4e46-41b2-96d8-cc88fe502bc2", + "AvatarItemId": 5953, + "AvatarItemType": 0, + "CreatedAt": "2024-01-09T21:45:45.44Z", + "FriendlyName": "Iron Chef Coat", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "72dTYmWYB0mkoVuJ0U8rWQ.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,8622dfef-d56f-4044-b32b-fcc94c2980c9", + "AvatarItemId": 8162, + "AvatarItemType": 0, + "CreatedAt": "2024-07-27T00:11:19.417Z", + "FriendlyName": "Zipped Biker Jacket", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "40ckh5j6ci0o81z728r4owfcv.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,19c1f47c-0ebd-436b-94bb-0f51b1d952d2", + "AvatarItemId": 8113, + "AvatarItemType": 0, + "CreatedAt": "2024-07-09T18:31:34.993Z", + "FriendlyName": "Destiny Belt Bag", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "5454551iedxtek1en98jmm7o1.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,28764629-3dae-4e0c-9064-fadd9d3d7b7a", + "AvatarItemId": 8082, + "AvatarItemType": 0, + "CreatedAt": "2024-07-01T16:49:31.8Z", + "FriendlyName": "Carnival Suspender Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": "halloween", + "ThumbnailImage": "8fen29vpkoyy6ostgx1xjotqm.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,7WLoulmRgEKX3Eshtn_cxw", + "AvatarItemId": 2950, + "AvatarItemType": 0, + "CreatedAt": "2023-05-02T16:21:23.94Z", + "FriendlyName": "Pink Tourist Dino Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "-I-UzlNlVkaQk1cBmfcQSA.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,BzzPuw8i0km4VQLd77mXEg", + "AvatarItemId": 2952, + "AvatarItemType": 0, + "CreatedAt": "2023-05-02T16:21:33.957Z", + "FriendlyName": "Neon Tourist Dino Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "1eCdw6nrkkybFzj3lXZJPw.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,er8BswhSkUqh5TVV5fDAng", + "AvatarItemId": 2949, + "AvatarItemType": 0, + "CreatedAt": "2023-05-02T16:21:20.723Z", + "FriendlyName": "Tourist Dino Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "7B1NWtGKnU2EfJjfSd-0Yg.png", + "Tooltip": "" + }, + { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,zUZHddmmhE2rXfCVuz_GGg", + "AvatarItemId": 2951, + "AvatarItemType": 0, + "CreatedAt": "2023-05-02T16:21:27.27Z", + "FriendlyName": "Green Tourist Dino Shirt", + "IsBaseAvatarItem": false, + "PlatformMask": -1, + "Rarity": 50, + "TagList": null, + "ThumbnailImage": "fBkI8l1rzEuznFUM3YyJag.png", + "Tooltip": "" + } +] diff --git a/apps/econ/static/db/skins.json b/apps/econ/static/db/skins.json new file mode 100644 index 0000000..3b2ebcb --- /dev/null +++ b/apps/econ/static/db/skins.json @@ -0,0 +1,2994 @@ +[ + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "7ef5d1d9-24db-428c-85e0-107c1bfcc026", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Orange)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "4aff20ee-0b20-434b-a030-d3e1764fe4e7", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Purple)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Basketball]", + "ModificationGuid": "5dcf8a2e-6fa6-4007-ac1e-73dd53c4c247", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Basketball (Purple)", + "Tooltip": null, + "Rarity": 1, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Basketball]", + "ModificationGuid": "e6899422-ab2f-4bd9-8e98-aef950ec27b6", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Basketball (Blue)", + "Tooltip": null, + "Rarity": 1, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "93f5418e-a03d-4074-804c-daa0e374dd9f", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Purple)", + "Tooltip": null, + "Rarity": 1, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "affbab2d-3200-4512-a140-685fdc5570c6", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Yellow)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DiscGolfDisc]", + "ModificationGuid": "19ef59c7-f74b-4c63-935a-1d4b1abd8518", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Disc (Coop)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DiscGolfDisc]", + "ModificationGuid": "2b70a76e-6f48-402e-90ff-40b06aa23eb8", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Disc (Coach Select)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DiscGolfDisc]", + "ModificationGuid": "9d2a3618-12b3-4ca0-be59-ed15d7926d77", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Disc (Laser)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DiscGolfDisc]", + "ModificationGuid": "7877964e-3a2b-4818-8513-0e26a707bd7c", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Disc (Clear)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DiscGolfDisc]", + "ModificationGuid": "bd3f6aa5-c6e0-4e06-901d-1176accf1003", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Disc (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DiscGolfDisc]", + "ModificationGuid": "5d3c3b16-713e-43d8-88e0-7633063091da", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Disc (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "bc4254be-60e0-4cc5-a233-6a0bd4137118", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Gold)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "33c84c50-7c2e-4a80-ad06-79c4f20f829e", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "36751c4a-86a9-40e1-bef2-84f962ab678d", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Vitton)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "ec5ef0f3-c072-45ec-bb8f-3781fb16e067", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "b8d5612b-2c6f-46d6-9412-decddac7d4c1", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Pirate)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "Dg9PFcg-JUia72PnYJqkQg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "z0Xw8_BUZUODrGHSZcLHHQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Valentines)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "p70jO7t0OEyaCWGrpUQa0Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Watermelon)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShotgun]", + "ModificationGuid": "61e49c13-b414-425f-8e8b-bdcf3d12a5bf", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shotgun (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShotgun]", + "ModificationGuid": "f27af5d7-c741-4457-8c98-8e8791f1a41c", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shotgun (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShotgun]", + "ModificationGuid": "053c24a0-82a2-43f5-b0e7-e56db05a10ba", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shotgun (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShotgun]", + "ModificationGuid": "ZMAx_-B_7kWy6-TLXx8g6Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shotgun (Watermelon)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShotgun]", + "ModificationGuid": "CwIBKjm3G0-xUGt_9Gf7UQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shotgun (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShotgun]", + "ModificationGuid": "HSAwF_uBgkC0mBXyLSayWA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shotgun (Cactus)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Basketball]", + "ModificationGuid": "d6d22997-fe39-4ffa-b1b3-4955368c829a", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Basketball (Vitton)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Basketball]", + "ModificationGuid": "56582acf-c7a0-4aff-b3aa-2fdea4d254a3", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Basketball (Rainbow)", + "Tooltip": null, + "Rarity": 1, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Basketball]", + "ModificationGuid": "56c9a6db-0f54-482c-aba9-e265f899771d", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Basketball (Coach Select)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Basketball]", + "ModificationGuid": "WOWwmg7jg0mH2g4LJUp6fA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Basketball (Cozy)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Basketball]", + "ModificationGuid": "bNEcMJOzokeEVKDeXk_cDQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Basketball (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Basketball]", + "ModificationGuid": "G0b2rKv0iEyXCEUVRcxmTQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Basketball (NBA)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Basketball]", + "ModificationGuid": "Vit6nO2nHEqvoYLf_6jHQw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Basketball (NBA 75)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShield]", + "ModificationGuid": "174adb53-bc6e-4fcf-b03d-a00fc3deeb49", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shield (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShield]", + "ModificationGuid": "fd367329-b8b2-4d44-825a-da16092751e3", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shield (Purple)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShield]", + "ModificationGuid": "a6c869d9-8f30-4ce6-a7ea-cb7ea9f9d492", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shield (Pirate)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShield]", + "ModificationGuid": "jZ7wlwRxgUuWYuLasbnG8w", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shield (80s Sunset)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShield]", + "ModificationGuid": "QTyRLpDB3UuReHQqrKxb5A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shield (Gingerbread)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShield]", + "ModificationGuid": "gfGhbEMx_kCRdO-6vPOh3g", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shield (Paint Shield Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShield]", + "ModificationGuid": "ClJApV0LC0mxh0UiYhaXGQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shield (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShield]", + "ModificationGuid": "TleGVT9enUigvfBoWz6kvA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shield (Galaxy)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballShield]", + "ModificationGuid": "nb1BXq0jxE2nXihd0RBgLw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Shield (Halo)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "a9a3292c-8ccf-4564-aeb1-124c52057ef2", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Black Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "2389fce4-3ab2-4e05-918c-845eb8538bed", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Goblin)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "735b06c6-1b78-4f60-9291-a414a96cd228", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "a363ba1b-2f70-4c5f-943a-f45cfa59122b", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Rock)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "eb90210a-6d2d-4429-b1e0-3285333685fc", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Valentine)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "439be0eb-4d1e-4c80-97f8-b4636d0ce94b", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Pride)", + "Tooltip": "", + "Rarity": 1, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "k0BVix46IEmgVrqUmFU3-Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "RQCgWA3Pf0KTqznUR58-lw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "-rbKD_ztMUq69Nv4tLrrVA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Snowflake)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "L9usPszLFkiA6xs32es2Lw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Neon RR\u002B)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestShield]", + "ModificationGuid": "_uaO1FvF5Euw3tMPGfPo2A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Shield (Sunflower)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Pistol]", + "ModificationGuid": "33a7a3dc-5266-4075-b56f-5eaa2c400e9f", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Pistol (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Pistol]", + "ModificationGuid": "db91b61b-ab32-4895-8f5a-0212c1283cbb", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Pistol (Vitton)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Pistol]", + "ModificationGuid": "89b1fbbc-e7be-440b-8b22-8fd379c1a568", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Pistol (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Pistol]", + "ModificationGuid": "8a2a3219-fed0-4403-9061-451d162307c2", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Pistol (Candy Cane)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Pistol]", + "ModificationGuid": "5nQ2kF6h6kunbk5z18Lozg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Pistol (Frankenblaster)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Pistol]", + "ModificationGuid": "0cFcVYCLTU6CKhr9uADrbw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Pistol (Recasso)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Pistol]", + "ModificationGuid": "aByJShU520OzdOXBV8o0Dg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Pistol (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Pistol]", + "ModificationGuid": "dRvcMuM__02iMsRwKEPtXQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Pistol (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Pistol]", + "ModificationGuid": "fdqopuA1qUiK_jg-G5gr3w", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Pistol (Galaxy)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_AutomaticGun]", + "ModificationGuid": "546b3a57-13d4-4c35-ab3a-bbb7d466f0b8", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Burst Gun (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_AutomaticGun]", + "ModificationGuid": "bafacc36-02c6-408c-a3f5-8c2aa07a68db", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Burst Gun (Arbor)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_AutomaticGun]", + "ModificationGuid": "u60IW1Gt10eC-8SlZmQUNQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Burst Gun (Recasso)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_AutomaticGun]", + "ModificationGuid": "dEmh0tniCkeYBY1EdD09jA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Burst Gun (Zombie)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_AutomaticGun]", + "ModificationGuid": "jzgz_HrPAUqOeqx3uNXVUA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Burst Gun (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_AutomaticGun]", + "ModificationGuid": "TK9ybLf7xUSi6F1bVfyaRg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Burst Gun (Physics Construction)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Shotgun]", + "ModificationGuid": "55a9c1e8-07e2-4457-86f2-75fd5e67b1f3", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Shotgun (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Shotgun]", + "ModificationGuid": "83d7cca0-2c5d-41b2-a5b2-f79fd89f3037", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Shotgun (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Shotgun]", + "ModificationGuid": "bb36b722-16dc-4172-b61f-237dc1240040", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Shotgun (Jack-O-Lantern)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Shotgun]", + "ModificationGuid": "cd497ae2-6382-42f2-9f92-93d5141588c3", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Shotgun (Valentine)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Shotgun]", + "ModificationGuid": "pIRihZheSEW2Ld3VTLkB-g", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Shotgun (Laser Shotgun Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Shotgun]", + "ModificationGuid": "gjuFgDp-LUWPi1mPCKyqbA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Shotgun (Shamrock)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Shotgun]", + "ModificationGuid": "xHEZCBn5D0iUxIDp3swd9g", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Shotgun (Galaxy)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_Shotgun]", + "ModificationGuid": "5wzKTogcskSYvv1HaiU57Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Shotgun (Alien Blaster)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_RailGun]", + "ModificationGuid": "63a867d7-ccea-4905-b6e0-e6dcfba06f9e", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Railgun (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_RailGun]", + "ModificationGuid": "46977ca7-ee75-4e2a-b8aa-0763879f8a96", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Railgun (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_RailGun]", + "ModificationGuid": "X9gTAbp0Sk6nadpTBseRrg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Railgun (Lifeguard)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_RailGun]", + "ModificationGuid": "_flhynGnykyZL7F83B7rJQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Railgun (Laser Railgun Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_SciFi_RailGun]", + "ModificationGuid": "uvbozCned0igzscgeBlRpQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Railgun (Galaxy)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "c4d70545-cdf1-4fb1-924b-613de0327faf", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Vitton)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "6bba14be-f207-4933-b09f-f0fd3e28c10c", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Candy Cane)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "1d09c8e4-78c2-49f9-acb7-8f0b3ff6a5ed", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Recasso)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "MsFoMeUZ8Eq2qX9SrOtRPA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Waves)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "T6PzFfg41UaQ7EAqts6gsw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Bone)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "jHaoDSAtikyAI82lO53o9g", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Dryad)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "ESQ0qOlgrkCc8MbUXGnF8A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "QEwDZYj_OEi5l86LBnuYGw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Rock)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "VHFKZVhiRkylcxnxzCKUuw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "Ys9UQ5b7fEyKxnaek-ihfQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Dryad Fall)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "CZAIad-ME0O0iIy77MRxBw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Winter)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "ych0ntYcK0eiq67bCLlbew", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Spring)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "f5901f11-b315-4261-9474-2da207e4a229", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Vitton)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "52c6a138-10c5-4aab-9c3b-04b50c9a2dc5", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Ghost)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "e738d936-0f75-423b-88bb-f626ffba573a", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Rock)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "XpxqrY6RYkafs-sd3Z0ZLw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Rainbow)", + "Tooltip": null, + "Rarity": 1, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "JBp7CxPhrUC5hnn2EISUFA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Dryad)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "T8666vuehkObksBdVbla9g", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "YajcGvBcTEaf_MjCbxOciw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "XKFuhM3zikyxTYtTzuPb_A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Dryad Fall)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "uPwTBnfWwkWXuyAaAMqeQA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Winter)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Longbow]", + "ModificationGuid": "gl_tlo_t7U-H308Omy13lw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bow (Spring)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "79090a4b-e191-4788-9210-88a7bdf6d828", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Luxury)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "204f84a2-6ee2-45e1-9168-87f43e893e32", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "wultE5yRpkuJREeJw4prKg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Dragon)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "HyL83wPtf06DG6nsHofoeA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Steampunk)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "juFHwn9UjEiGaWyNnoxbtA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Pumpkin)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "Pw1XcUfAck2tNh0fIAu8LA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Waves)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "4HJ3wRmSZUuhMRUTA67dpA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Professor)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "i3NgZvTwkUSMsXRpqCgSZA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Wonderland)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "BGhlN3FKGEy6w-vwc28V4A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Beach)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "BwIscV_YnE6iG4brl389Hg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Mystery)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "JtMeQRvo00yVwAliICTP0w", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Movie Magic)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "h4xKGsHcTUy3iH7PVFjb2w", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Host1)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "cUBvDvybvEu5eZDPn57ExQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Host2)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "VYF9NGZBgU6TOo9ayjgBEQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Green)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "WwtFcRluQkmnCI_qH75L_Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Orange)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "iRtlLKI-X0S9oYUWLenAKQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Purple)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "tvjYGeRdwEqnr9mf84WgcQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Red)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "Q7Tr_0DXAkOdr61UXiocow", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Yellow)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "c1VRbmDGHUS7KiSgwj5prQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "MODdVYrjaEy-iy6quALNuA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (White)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "H91DVbHzR06oie8fLjdE1A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Hidden Worlds)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "RPWXRfZwfUeC9PFlvcbmxw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Carnival)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "j83FD3aSQ0OUcrp4QIIZsA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "L12C6OfxB0y53bLXZQ4rFg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Contest Stranded)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "xDSDJJX2w0ySwtiE6w6ghg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Maker Pen Contest Folklore)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "_rlnwZWJrk2eiQi4f_FhWQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Premium)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "ht4zv6ZFi0yrohyBm39o6A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Contest Summer Camp)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "TpaRhLqVc02Oyr769imtnQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Diamond Universe)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "Z_mBcmlIHUWE0ox9Dn_kHA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Solstice)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[MakerPen]", + "ModificationGuid": "OcixCg4jbUyLb6DFSTjrPg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Maker Pen (Rhythm And Rooms)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballRifleScoped]", + "ModificationGuid": "6a6b0ecf-286d-4361-92ff-7027c440dc3c", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Scope Rifle (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballRifleScoped]", + "ModificationGuid": "d906709c-e08e-4273-8ba1-e072e0d25957", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Scope Rifle (Candy Cane)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballRifleScoped]", + "ModificationGuid": "3rBevbIk1EusFnFaXAh3qA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Scope Rifle (Gingerbread)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballRifleScoped]", + "ModificationGuid": "OSrMlhVVSEqb-0AzVzOH9w", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Scope Rifle (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballRifleScoped]", + "ModificationGuid": "0dM2SfqGR0SmtO5ufTWfUQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Scope Rifle (Comic)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballRifleScoped]", + "ModificationGuid": "btB2z7ybskSYrn9Nzhfhxg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Scope Rifle (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballRifleScoped]", + "ModificationGuid": "b_iiMMYayU-an7hOlCzPIA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Scope Rifle (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow_Hunter]", + "ModificationGuid": "d217ee4c-22f3-4f33-bf7c-9d4ee9c30e29", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow Hunter (Rock)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow_Hunter]", + "ModificationGuid": "cFMh54GoHEeHZEERSRR8kQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow Hunter (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow_Hunter]", + "ModificationGuid": "RRCvths6eUmAAr9hzGFT0g", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow Hunter (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow_Hunter]", + "ModificationGuid": "-X_Hm6dIekqoHTY2VMMLeA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow Hunter (Shark)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow_Hunter]", + "ModificationGuid": "BSO9Ahi-2EiwYxE7lkHhlA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow Hunter (Valentines)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "0ee04d78-5a17-4a38-ae67-b576a41fc200", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Extra)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "431567d2-4df2-43eb-b632-3d79aa7c013c", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Classic)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "f03dee6a-79b8-4906-9abb-a821748d97a9", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Red)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "3e46fb2d-bb3f-42ed-83ef-f5716860725c", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Rock)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "eecdf81c-7ba2-40ba-9d6c-f461708cce16", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Comic)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "SbEIObEmhkKQniANHqNekg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Pumpkin)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "Kitcy2AVB0-OdljiEAI2Pw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Recasso)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "K9TzHZPDwU-ewzLYkr_1cg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Gingerbread)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "wioj1rR1lkCx7f-oiCHcOw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Corn Cob)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "m1JMjJYpSUiXj5897orm2Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "d97pbQMk9UWpEN0yoOE9Rg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "DRXoMS9phEG2fkasja7sEw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Lava)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "uLNdhrrAC0ybxC2XkBnnVQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "-ybFpUxTsUKWFSIS-8fOOw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Neon RR\u002B)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "X8B2M3hltEKyEnX0dcJi7Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Umbrella)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[QuestSword]", + "ModificationGuid": "SRl7xh9z8kGU2OO5viCykw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sword (Clarinet)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Grenade]", + "ModificationGuid": "993f8b81-cb2e-44e4-88a1-b841af1f0e69", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Grenade (Pirate)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Grenade]", + "ModificationGuid": "vlpFc1j820i5n7Y2sTW8Vw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Grenade (Grenade Chick)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Grenade]", + "ModificationGuid": "0tfDNC0I2kiEVrJttrE0bw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Grenade (Gum Drop)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Grenade]", + "ModificationGuid": "8Ex4aO2GpEqwvow6bEu_ag", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Grenade (Spring Egg)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_Goblin_Wand]", + "ModificationGuid": "e8e42ef6-9ab6-44f4-84d5-117154a4d13e", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Quest Goblin Wand (Ghost)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_Goblin_Wand]", + "ModificationGuid": "yG6xFxkoS0iIDt7wEj5Hqw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Quest Goblin Wand (Witch Star)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_Goblin_Wand]", + "ModificationGuid": "3pE7zA-DjkqP1Ch7__-31w", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Quest Goblin Wand (Ice)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_Goblin_Wand]", + "ModificationGuid": "m_otHTEKF0KQljsOc-JENg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Quest Goblin Wand (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_Goblin_Wand]", + "ModificationGuid": "CyrdBvIbXUq_TsXFliWk1A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Quest Goblin Wand (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_Goblin_Wand]", + "ModificationGuid": "vfzrRHn24E67BK8Bgy60xA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Quest Goblin Wand (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_Goblin_Wand]", + "ModificationGuid": "QnLM4Qw-L0ml_mgReFweIw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Quest Goblin Wand (Trident)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_Goblin_Wand]", + "ModificationGuid": "M6BHcdDZnU6UEDa3wLUUhg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Quest Goblin Wand (Butterfly)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Quest_Goblin_Wand]", + "ModificationGuid": "7Kdm8AYIkky-N1biw5ljPg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Quest Goblin Wand (Flowers)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGrenadeLauncher]", + "ModificationGuid": "502f40c3-1c00-4c3f-bfc7-c897df8af37e", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Launcher (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGrenadeLauncher]", + "ModificationGuid": "f34e6270-bcfa-42f2-80d5-69c1bbd34983", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Launcher (Comic)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGrenadeLauncher]", + "ModificationGuid": "8ZAwSDtXlkqlnBLOpfVTVg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Launcher (Gingerbread)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGrenadeLauncher]", + "ModificationGuid": "3UmIhvqmkU-aWxFDFd4QDg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Launcher (Honey)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGrenadeLauncher]", + "ModificationGuid": "pPpYY9j0Dku2gtbKoUOCCg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Launcher (Easter Egg)", + "Tooltip": null, + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGrenadeLauncher]", + "ModificationGuid": "9gBl778RvUeSC8837Gurog", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Launcher (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGrenadeLauncher]", + "ModificationGuid": "tcMMGKcmhkuM82ISCZ-3AQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Launcher (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGrenadeLauncher]", + "ModificationGuid": "L-_iZgicHUajydSvUWVJhw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Launcher (Jumbotron)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DodgeballBall]", + "ModificationGuid": "6261a846-e4f8-4e6e-8aa0-68f38cd788d4", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Dodgeball (Comic)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DodgeballBall]", + "ModificationGuid": "6ff63f8f-4bcc-4b69-8d89-8b886d19e239", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Dodgeball (Recasso)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DodgeballBall]", + "ModificationGuid": "f55dda45-c17e-4237-a638-9f326d306e7d", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Dodgeball (Goblin)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DodgeballBall]", + "ModificationGuid": "Jkg-OGXdIUyfEwaQIh6EGA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Dodgeball (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DodgeballBall]", + "ModificationGuid": "lIpyvEMWqUyv41gTp3YZ1A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Dodgeball (Pumpkin)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DodgeballBall]", + "ModificationGuid": "Ms8LD3TqBkiukhUlHxVBfw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Dodgeball (Billiards)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[DodgeballBall]", + "ModificationGuid": "dpTV4UmrJkCsz6WXD6YeKQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Dodgeball (Cactus)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[SoccerShield]", + "ModificationGuid": "fae1abe3-6bfd-4407-b34e-e2c1b3b03032", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Soccer Shield (Gingerbread)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[RecRoyale_Backpack]", + "ModificationGuid": "523e3615-4633-41a3-9b2d-17d3207a684b", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Backpack (Camo)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[RecRoyale_Backpack]", + "ModificationGuid": "6c3b26cd-b38e-492b-a124-759cbcec1396", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Backpack (Camping Pattern)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[RecRoyale_Backpack]", + "ModificationGuid": "12b54ad2-3847-41db-9ed4-88e8dad63024", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Backpack (Tiger)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[RecRoyale_Backpack]", + "ModificationGuid": "5c848a04-f528-423b-8be1-4b5cd43a75c2", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Backpack (Denim)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[RecRoyale_Backpack]", + "ModificationGuid": "e93f5ab7-e9bf-4652-8a7c-2ae120f25f87", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Backpack (Recasso)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[RecRoyale_Backpack]", + "ModificationGuid": "w2NNBTTCVEah2WlP0JHezQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Backpack (Valentine)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[RecRoyale_Backpack]", + "ModificationGuid": "70uy5UJhhEy1aynKM4MAsQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Backpack (Fall Leaves)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[RecRoyale_Backpack]", + "ModificationGuid": "ujZ4Hl0HO06OysqZcqHhmg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Backpack (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "d218ae45-8534-4f96-b2ed-1cf281bc3578", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "e2844f84-ab44-4141-9a0a-bd5da7caa4f6", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Disposable)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "1838fa61-de10-4e09-b24a-f5a1bc942600", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Green)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "fSbzGxsjKE-cwtFFX6dJQw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Carpet)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "ATGtNjai20miFwBUOVIMuw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Two Tone)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "znrJSCX_SkS-kIPqMERoDg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Camping)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "g5u0weNLmkCLeUXFUVn74Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Comic)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "QQALCzCF-0ClDWqmmciHAQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Heart)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "SkTa53OzM0u82YPuZAl9aw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "sE4_-ZVa2EC4MZfGGsExzQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "5dx423rtM0ygWqMBwJHBOQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Retro Gamer)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "T465YyOavEqTqH3s91uBHQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Video Partner)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "SFz15JbasU-gShl_GHnspw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Galaxy)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[ShareCamera]", + "ModificationGuid": "1B8utXzBWUSGJ4Va8Hm1xA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Camera (Holographic)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D4]", + "ModificationGuid": "KiVWBp5_J0qCLuizAJGcAg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D4 (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D4]", + "ModificationGuid": "x3Cv42hIkkaNIy7fHZiWYg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D4 (Bone White)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D4]", + "ModificationGuid": "_2jxSTYSpEykZ_O91oDAzg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D4 (Turquoise)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D4]", + "ModificationGuid": "WxWaXY61mUuNe_f6SgECnA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D4 (Pewter)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D6]", + "ModificationGuid": "TxIu8CUjykGDMr5RIJcNVQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D6 (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D6]", + "ModificationGuid": "Fn0gcj17c06tA9s98CKwAg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D6 (Bone White)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D6]", + "ModificationGuid": "HnVo08F-zk-YeikERFa1Yw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D6 (Turquoise)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D6]", + "ModificationGuid": "5U_KiCi_90-eWucQ68VdZQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D6 (Pewter)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D8]", + "ModificationGuid": "AQXXckjNZ0uzPMTcP1C3Kg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D8 (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D8]", + "ModificationGuid": "d_CbCG3DmUCtWGWYHioghg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D8 (Bone White)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D8]", + "ModificationGuid": "f45tTZp4KUextmAsX8X9Hw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D8 (Turquoise)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D8]", + "ModificationGuid": "77cRA0O4GUqd6nr9QLefQA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D8 (Pewter)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D10]", + "ModificationGuid": "ZM543HEyl0G6n7P5rDMEWw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D10 (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D10]", + "ModificationGuid": "GjQwBmNnK0ukv0hEEHK8tw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D10 (Bone White)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D10]", + "ModificationGuid": "SnSOf-GZ2kastpF5KWxT-Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D10 (Turquoise)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D10]", + "ModificationGuid": "I161QAym2kqPi5wXIHCt8A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D10 (Pewter)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D12]", + "ModificationGuid": "EoV2ZoLR2UWY898p8j7qGQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D12 (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D12]", + "ModificationGuid": "heFLfpPNd0-nhLOFpUCnpA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D12 (Bone White)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D12]", + "ModificationGuid": "ub6apg3zEUiCp3k81JjQGw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D12 (Turquoise)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D12]", + "ModificationGuid": "2gYYjbVGqkiOefY2xjOxiQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D12 (Pewter)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D20]", + "ModificationGuid": "Des7txtX0EO-7NiooR0-ow", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D20 (Pink)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D20]", + "ModificationGuid": "gXOOKrQEYE-FmS3uXWj1hA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D20 (Bone White)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D20]", + "ModificationGuid": "DrG0ntsyPUSv8ra0m-Hhaw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D20 (Turquoise)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Sandbox_D20]", + "ModificationGuid": "H3vrSi45AU6lshChLnr19Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Sandbox D20 (Pewter)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballAssaultRifle]", + "ModificationGuid": "VOOdhP5qg0WWv2m0qLRVCw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Burst Gun (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballAssaultRifle]", + "ModificationGuid": "c458a6ae-a1ea-468a-89b8-4c9a85cd3cde", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Burst Gun (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballAssaultRifle]", + "ModificationGuid": "m_qzPvDPF0KPhLd59wzr5A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Burst Gun (Fall)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballAssaultRifle]", + "ModificationGuid": "996662ad-631d-4a81-8a8b-74ace4833279", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Burst Gun (Pirate)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballAssaultRifle]", + "ModificationGuid": "3aaef60d-142f-4a0a-bea3-f5d99ab62dd5", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Burst Gun (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballAssaultRifle]", + "ModificationGuid": "49d88b73-3c8a-4f4d-8a69-128fa5474e82", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Burst Gun (PSPLUS)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballAssaultRifle]", + "ModificationGuid": "357fe573-fee7-467f-93a7-5e61afb024b8", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Burst Gun (wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballAssaultRifle]", + "ModificationGuid": "2vhCtZjRd0i_nYo04ij__w", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Burst Gun (Ghost)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun] Confetti", + "ModificationGuid": "bfrFOdnHzEaIwHqem2dXkg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Confetti Gun (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "PDyoY2oYKEuzGPxhvk4Lvg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Android)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "NNAG0bLnKUGNxeUs4sss2w", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Apple)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "tlvJnebYeUKMxDGzEM6SKQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (PS5)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "3S2KMdBa8EOI4pnZQxQ95Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Steam)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[PaintballGun]", + "ModificationGuid": "3o8Wqyxh5UyZ9klvkIp-Pg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Pistol (Xbox)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Paintball_PaintThrower]", + "ModificationGuid": "y_FesIT5jkmb61JIu7tfsw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Thrower (Wood)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Paintball_PaintThrower]", + "ModificationGuid": "GbHNkVbVgUCoirMhOGkSTA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Thrower (Plaid)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Paintball_PaintThrower]", + "ModificationGuid": "qhhhJeHVx0KLnGJrAGIn9g", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Thrower (Caution)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Paintball_PaintThrower]", + "ModificationGuid": "OFEdf4dRC0a3nHugXVOXnA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Thrower (Fireworks)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Paintball_PaintThrower]", + "ModificationGuid": "VTVy8cweC0K2ca1nTXMu0g", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Thrower (Double Drencher)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Paintball_PaintThrower]", + "ModificationGuid": "0YfCdfAt2kiN0LQcPKSm_Q", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Thrower (Candy Cane)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Paintball_PaintThrower]", + "ModificationGuid": "JZQaa_BwkEuEx-ODac4Dfw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Paint Thrower (Jack-O-Lantern)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[BowlingBall]", + "ModificationGuid": "BvUZUamUh0uDbjDOrQrX1A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bowling Ball (Gold)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Bucket]", + "ModificationGuid": "VW3WV6oQOkqYshf1xc9n3A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bucket (Black Light Swirl)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Bucket]", + "ModificationGuid": "ou23DX__T0qFPjAXC5WrOQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bucket (Fashion)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Bucket]", + "ModificationGuid": "Yy0byohkZEWsiO4q0bQqBQ", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bucket (Bucket Bat)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Bucket]", + "ModificationGuid": "tFvjv1gAYkaDAlHLTsHelg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bucket (Premium)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Bucket]", + "ModificationGuid": "_6HDWw-8-k67ZbGLfJ7cQw", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bucket (Barrel)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Bucket]", + "ModificationGuid": "MKeaiXxCwUiDDI5c0W6ShA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bucket (Festive)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Bucket]", + "ModificationGuid": "U_3PE9Qc10OsVPTXyXsI_w", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Bucket (Tennis Rock)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Arena_Grenade]", + "ModificationGuid": "A3XXaBH1eUuchWVVPdrY_A", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Grenade (Easter Egg)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Arena_Grenade]", + "ModificationGuid": "af3LZrxEgUuB5KAT3q2NLA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Grenade (Pirate)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Arena_Grenade]", + "ModificationGuid": "kx25AlxB5E-cuIwfOPlqSg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Laser Grenade (Spring 2)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Vehicle_RallyBuggy]", + "ModificationGuid": "6akn-KjyNEiqBrREYwVg4g", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Rally Buggy (Sport)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Vehicle_RallyBuggy]", + "ModificationGuid": "SQwd0QdyjkOjdIAQdMyiFg", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Rally Buggy (Moon)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[RecCenter_Cafe_Mug]", + "ModificationGuid": "5p2_8W69NkCTjym9ecWqzA", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Mug (Caution Tape)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + }, + { + "PrefabName": "[Crossbow]", + "ModificationGuid": "4d70545-cdf1-4fb1-924b-613de0327faf", + "UnlockedLevel": 0, + "Favorited": false, + "PlatformMask": -1, + "FriendlyName": "Crossbow (Vitton)", + "Tooltip": "", + "Rarity": 0, + "ThumbnailImage": "" + } +] diff --git a/apps/econ/static/quest-rewards.json b/apps/econ/static/quest-rewards.json new file mode 100644 index 0000000..6cf6e6f --- /dev/null +++ b/apps/econ/static/quest-rewards.json @@ -0,0 +1,6178 @@ +{ + "Dodgeball": [ + { + "Id": 263, + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 8000 + }, + { + "Id": 264, + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,4a85c181-92fe-47a5-925e-05f0ccb25006,944d934d-5e21-42d7-8196-fff9a81ee469,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 8000 + }, + { + "Id": 265, + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,0ba92db2-690a-44ce-92f4-130e9503b6c1,944d934d-5e21-42d7-8196-fff9a81ee469,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 8000 + } + ], + "Quest_Goblin_S": [ + { + "Id": 483, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9ad37173-e640-4b9e-a474-716d482b73d2,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4003 + }, + { + "Id": 488, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9ad37173-e640-4b9e-a474-716d482b73d2,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4003 + }, + { + "Id": 496, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,2be2f040-68e4-44dd-9099-29f11110f3a4,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4003 + }, + { + "Id": 492, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,74b009f4-e128-4c59-8a6a-4c0ba6119bde,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4003 + }, + { + "Id": 438, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4003 + }, + { + "Id": 477, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4003 + }, + { + "Id": 472, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4003 + }, + { + "Id": 467, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4003 + }, + { + "Id": 469, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,22dc463a-a89b-46ad-9a0d-557c742b4a80,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4003 + }, + { + "Id": 474, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,22dc463a-a89b-46ad-9a0d-557c742b4a80,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4003 + }, + { + "Id": 479, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,22dc463a-a89b-46ad-9a0d-557c742b4a80,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4003 + }, + { + "Id": 441, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,22dc463a-a89b-46ad-9a0d-557c742b4a80,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4003 + }, + { + "Id": 480, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4003 + }, + { + "Id": 485, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4003 + }, + { + "Id": 490, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4003 + }, + { + "Id": 495, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4003 + }, + { + "Id": 440, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,59866578-d4e0-417b-9483-233ab108b1ac,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4003 + }, + { + "Id": 468, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,59866578-d4e0-417b-9483-233ab108b1ac,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4003 + }, + { + "Id": 478, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,59866578-d4e0-417b-9483-233ab108b1ac,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4003 + }, + { + "Id": 473, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,59866578-d4e0-417b-9483-233ab108b1ac,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4003 + }, + { + "Id": 482, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4003 + }, + { + "Id": 487, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4003 + }, + { + "Id": 497, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,0c433086-9501-48c4-8d0e-4474eb420c61,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4003 + }, + { + "Id": 493, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,7221132e-053a-4c58-b719-ed3c8558907d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4003 + }, + { + "Id": 437, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 465, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 475, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 470, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 471, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ed134bee-d199-43eb-98bd-206571603f40,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 476, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ed134bee-d199-43eb-98bd-206571603f40,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 466, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ed134bee-d199-43eb-98bd-206571603f40,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 439, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ed134bee-d199-43eb-98bd-206571603f40,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 484, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 489, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,6e152cc7-e93a-4408-8092-236db420b680,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 494, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,e548124c-d7f3-45de-aaa0-f66130eca576,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 499, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,47da86b9-4e6e-423c-b8c4-ea6bf8472509,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 498, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,d5987fee-e3cc-4336-853a-5df57f73df05,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 491, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,d1eb3573-672c-4bb4-9ec5-7c81e6a38d3d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 486, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9b35ae52-febe-486a-8557-ec7190a9756e,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + }, + { + "Id": 481, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9b35ae52-febe-486a-8557-ec7190a9756e,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4003 + } + ], + "Quest_Goblin_A": [ + { + "Id": 481, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9b35ae52-febe-486a-8557-ec7190a9756e,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 486, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9b35ae52-febe-486a-8557-ec7190a9756e,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 491, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,d1eb3573-672c-4bb4-9ec5-7c81e6a38d3d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 498, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,d5987fee-e3cc-4336-853a-5df57f73df05,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 499, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,47da86b9-4e6e-423c-b8c4-ea6bf8472509,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 494, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,e548124c-d7f3-45de-aaa0-f66130eca576,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 489, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,6e152cc7-e93a-4408-8092-236db420b680,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 484, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 484, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 437, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 439, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ed134bee-d199-43eb-98bd-206571603f40,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 465, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 466, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ed134bee-d199-43eb-98bd-206571603f40,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 471, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ed134bee-d199-43eb-98bd-206571603f40,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 470, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 475, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 476, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ed134bee-d199-43eb-98bd-206571603f40,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 440, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,59866578-d4e0-417b-9483-233ab108b1ac,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 468, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,59866578-d4e0-417b-9483-233ab108b1ac,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 473, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,59866578-d4e0-417b-9483-233ab108b1ac,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 478, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,59866578-d4e0-417b-9483-233ab108b1ac,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 482, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 487, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 493, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,7221132e-053a-4c58-b719-ed3c8558907d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 497, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,0c433086-9501-48c4-8d0e-4474eb420c61,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 441, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,22dc463a-a89b-46ad-9a0d-557c742b4a80,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4000 + }, + { + "Id": 469, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,22dc463a-a89b-46ad-9a0d-557c742b4a80,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4000 + }, + { + "Id": 474, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,22dc463a-a89b-46ad-9a0d-557c742b4a80,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4000 + }, + { + "Id": 479, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,22dc463a-a89b-46ad-9a0d-557c742b4a80,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4000 + }, + { + "Id": 480, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4000 + }, + { + "Id": 485, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4000 + }, + { + "Id": 490, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4000 + }, + { + "Id": 495, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 30, + "Message": "", + "Context": 4000 + } + ], + "Quest_Goblin_B": [ + { + "Id": 481, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9b35ae52-febe-486a-8557-ec7190a9756e,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 486, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9b35ae52-febe-486a-8557-ec7190a9756e,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 491, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,d1eb3573-672c-4bb4-9ec5-7c81e6a38d3d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 498, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,d5987fee-e3cc-4336-853a-5df57f73df05,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 499, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,47da86b9-4e6e-423c-b8c4-ea6bf8472509,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 494, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,e548124c-d7f3-45de-aaa0-f66130eca576,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 489, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,6e152cc7-e93a-4408-8092-236db420b680,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 484, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 484, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 437, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 439, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ed134bee-d199-43eb-98bd-206571603f40,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 465, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 466, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ed134bee-d199-43eb-98bd-206571603f40,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 471, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ed134bee-d199-43eb-98bd-206571603f40,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 470, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 475, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 476, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ed134bee-d199-43eb-98bd-206571603f40,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 440, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,59866578-d4e0-417b-9483-233ab108b1ac,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 468, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,59866578-d4e0-417b-9483-233ab108b1ac,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 473, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,59866578-d4e0-417b-9483-233ab108b1ac,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 478, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,59866578-d4e0-417b-9483-233ab108b1ac,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 482, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 487, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 493, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,7221132e-053a-4c58-b719-ed3c8558907d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + }, + { + "Id": 497, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,0c433086-9501-48c4-8d0e-4474eb420c61,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 4001 + } + ], + "Quest_Goblin_C": [ + { + "Id": 481, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9b35ae52-febe-486a-8557-ec7190a9756e,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 486, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9b35ae52-febe-486a-8557-ec7190a9756e,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 491, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,d1eb3573-672c-4bb4-9ec5-7c81e6a38d3d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 498, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,d5987fee-e3cc-4336-853a-5df57f73df05,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 499, + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,47da86b9-4e6e-423c-b8c4-ea6bf8472509,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 494, + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,e548124c-d7f3-45de-aaa0-f66130eca576,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 489, + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,6e152cc7-e93a-4408-8092-236db420b680,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 484, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 484, + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 437, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 439, + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ed134bee-d199-43eb-98bd-206571603f40,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 465, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 466, + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ed134bee-d199-43eb-98bd-206571603f40,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 471, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ed134bee-d199-43eb-98bd-206571603f40,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 470, + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 475, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + }, + { + "Id": 476, + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ed134bee-d199-43eb-98bd-206571603f40,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 4002 + } + ], + "Discgolf_Propulsion": [ + { + "Id": 133, + "AvatarItemDesc": "f17a2f9e-1eab-44e8-b10a-1f53c5d0778c,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 3000 + }, + { + "Id": 41, + "AvatarItemDesc": "11e508a7-fe7d-470e-b270-2dba33e2f7a1,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 3000 + }, + { + "Id": 196, + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 3000 + }, + { + "Id": 246, + "AvatarItemDesc": "9d68e9f4-6ea0-4717-bb78-f2783a14a6b6,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 3000 + }, + { + "Id": 197, + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,KTidYfH0ckWxJGs5qzUBTQ,w07bkcUoQEiNJTVDeSywzQ,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 3000 + }, + { + "Id": 245, + "AvatarItemDesc": "9d68e9f4-6ea0-4717-bb78-f2783a14a6b6,KTidYfH0ckWxJGs5qzUBTQ,VSZX99mSt0e7gPRM2_XzMw,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 20, + "Message": "", + "Context": 3000 + } + ], + "Lasertag": [ + { + "Id": 0, + "AvatarItemDesc": "", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 1, + "Currency": 50, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 9000 + } + ], + "Discgolf_Lake": [ + { + "Id": 122, + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,4c845dbb-26c3-48a1-b562-e28a7416b154,6ce21c65-f4e9-41ac-be94-8eb1a08d5c76,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 3001 + }, + { + "Id": 123, + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,96e2b29e-e553-40f1-9eb6-8a9f7e64da39,6ce21c65-f4e9-41ac-be94-8eb1a08d5c76,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 3001 + }, + { + "Id": 121, + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 3001 + }, + { + "Id": 500, + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 3001 + }, + { + "Id": 501, + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,72a010c0-bddd-4e5d-bca6-9821d82de9a6,f4cea991-fc3d-4715-bf82-8a8fb60e8799,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 3001 + }, + { + "Id": 502, + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,32a5e42d-2b60-40b1-a145-ed96fc91af8e,f4cea991-fc3d-4715-bf82-8a8fb60e8799,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 3001 + }, + { + "Id": 497, + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 3001 + }, + { + "Id": 498, + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,48c18418-01dd-40ff-9dfe-c4cf5f4e1245,ddf429fd-a883-48a5-869b-bc12e44d30bf,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 3001 + }, + { + "Id": 499, + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,6584dada-499e-4d7c-958d-466955b20640,ddf429fd-a883-48a5-869b-bc12e44d30bf,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 3001 + } + ], + "Soccer": [ + { + "Id": 346, + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 6000 + }, + { + "Id": 347, + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,whEHo6Rhr0CxsDBsBD32WA,av4PwLz6YkmpBRImQZgn4Q,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 6000 + }, + { + "Id": 440, + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 6000 + }, + { + "Id": 441, + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,OnQeVxdstkS2zGxLBAuM3Q,i8bvbGAKREmAEbjKO-geOQ,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 6000 + } + ], + "Paddleball": [ + { + "Id": 365, + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 7000 + }, + { + "Id": 366, + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,304e5cf1-5c94-481f-8e49-e6a943e6b300,90e0da8b-1941-4ca8-b7e5-b4e31921873c,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 7000 + } + ], + "Charades": [ + { + "Id": 169, + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 5000 + }, + { + "Id": 170, + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,8c94e45c-6605-4b4f-9ba4-2c6c6e557228,5a6db6ba-2a0f-4399-b537-dd78db94bf90,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 5000 + }, + { + "Id": 171, + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,17b16982-871c-476a-860f-f6953c89ee8c,5a6db6ba-2a0f-4399-b537-dd78db94bf90,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 5000 + }, + { + "Id": 163, + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,14b43bf9-5ba0-484e-ae5d-55cfeb09a70d,3485a30d-27f8-450b-b5aa-1ff3cd227d19,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 5000 + }, + { + "Id": 164, + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,5c8f36c5-07da-49f4-af02-d23207a43216,3485a30d-27f8-450b-b5aa-1ff3cd227d19,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 5000 + }, + { + "Id": 162, + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 5000 + } + ], + "Paintball_Dam": [ + { + "Id": 581, + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2004 + }, + { + "Id": 582, + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,b995b419-1897-4c1d-98be-83d551f7ba71,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2004 + }, + { + "Id": 583, + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,67fc9269-8dd8-4d6f-b594-c77e716f2482,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2004 + }, + { + "Id": 584, + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,b539777f-48b2-44a2-9d63-17ac703e4d57,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2004 + }, + { + "Id": 585, + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,5fb2e235-8c67-4335-b432-edb10db2b139,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2004 + }, + { + "Id": 611, + "AvatarItemDesc": "34654303-9760-447f-8614-1c26506db994,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2004 + } + ], + "Paintball_River": [ + { + "Id": 108, + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2003 + }, + { + "Id": 111, + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,225209dc-3afc-40cf-858e-89f7afa00c0d,efeb07ab-6253-436d-bb66-991ddad72e58,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2003 + }, + { + "Id": 108, + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2003 + }, + { + "Id": 109, + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,3f6c8bd2-2c1d-4c8c-a9de-16600fee9645,efeb07ab-6253-436d-bb66-991ddad72e58,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2003 + }, + { + "Id": 110, + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,d7f0ffd3-ccf9-465e-8afe-4d7efb78dd2c,efeb07ab-6253-436d-bb66-991ddad72e58,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2003 + }, + { + "Id": 342, + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2003 + }, + { + "Id": 343, + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,cac27853-e2df-4d77-b3fd-af3bc0813f01,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2003 + }, + { + "Id": 344, + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2003 + }, + { + "Id": 345, + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,97938f4c-52b8-4c85-8575-856654666316,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2003 + } + ], + "Paintball_Quarry": [ + { + "Id": 182, + "AvatarItemDesc": "3bb50a88-09ae-48c7-a42c-df5879680eff,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2002 + }, + { + "Id": 210, + "AvatarItemDesc": "8263a9ca-8c57-4e81-b3e3-24f2ca19a70a,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2002 + }, + { + "Id": 426, + "AvatarItemDesc": "e9913b06-58cb-4b90-bd08-981a3f19f352,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2002 + } + ], + "Paintball_Homestead": [ + { + "Id": 754, + "AvatarItemDesc": "cea5c141-32d8-4dae-80d9-6fb74834a79c,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2001 + }, + { + "Id": 535, + "AvatarItemDesc": "967187b8-df20-4f4f-b48f-10b9ea75cedf,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2001 + } + ], + "Paintball_ClearCut": [ + { + "Id": 539, + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2000 + }, + { + "Id": 709, + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2000 + }, + { + "Id": 710, + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,7amHTgEv-UOJSGl0ofo4mw,CUCKsNVnIkavHjcspWAv_A,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2000 + }, + { + "Id": 711, + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,cKHAetNcgUOxFfDkAPPF9w,CUCKsNVnIkavHjcspWAv_A,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 10, + "Message": "", + "Context": 2000 + } + ], + "Quest_SciFi_C": [ + { + "Id": 470, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 21, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 129, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 359, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 427, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 353, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 466, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 17, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 125, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 360, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,c8cc9589-4831-4e73-a865-ef8c139a2ba7,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 428, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 354, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + } + ], + "Quest_SciFi_B": [ + { + "Id": 361, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a36d252b-16ac-4a82-bece-de145147e7d9,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 430, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a36d252b-16ac-4a82-bece-de145147e7d9,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 355, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a36d252b-16ac-4a82-bece-de145147e7d9,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 19, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 468, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 127, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 363, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 431, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 357, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 471, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,002b07bb-4256-44ce-8ca4-25510e70b6b5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 130, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,002b07bb-4256-44ce-8ca4-25510e70b6b5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 22, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,002b07bb-4256-44ce-8ca4-25510e70b6b5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 470, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 21, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 129, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 359, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 427, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 353, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 466, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 17, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 125, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 360, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,c8cc9589-4831-4e73-a865-ef8c139a2ba7,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 428, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 354, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + } + ], + "Quest_SciFi_A": [ + { + "Id": 469, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,90869e86-cbc5-4024-9d08-fcdc41c64eb5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 128, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,90869e86-cbc5-4024-9d08-fcdc41c64eb5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 20, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,90869e86-cbc5-4024-9d08-fcdc41c64eb5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 432, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,68273c9e-96d6-4ddb-aaab-d99229e864d5,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 358, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,68273c9e-96d6-4ddb-aaab-d99229e864d5,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 364, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,68273c9e-96d6-4ddb-aaab-d99229e864d5,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 361, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a36d252b-16ac-4a82-bece-de145147e7d9,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 430, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a36d252b-16ac-4a82-bece-de145147e7d9,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 355, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a36d252b-16ac-4a82-bece-de145147e7d9,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 19, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 468, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 127, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 363, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 431, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 357, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 471, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,002b07bb-4256-44ce-8ca4-25510e70b6b5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 130, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,002b07bb-4256-44ce-8ca4-25510e70b6b5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 22, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,002b07bb-4256-44ce-8ca4-25510e70b6b5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 470, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 21, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 129, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 359, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 427, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 353, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 466, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 17, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 125, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 360, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,c8cc9589-4831-4e73-a865-ef8c139a2ba7,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 428, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 354, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + } + ], + "Quest_SciFi_S": [ + { + "Id": 429, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a089bcc6-798d-4777-98e2-7afd290dc6b6,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4503 + }, + { + "Id": 356, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a089bcc6-798d-4777-98e2-7afd290dc6b6,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4503 + }, + { + "Id": 362, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a089bcc6-798d-4777-98e2-7afd290dc6b6,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4503 + }, + { + "Id": 467, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,e821aa74-2d47-4388-bcfb-1893b8a83a52,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4503 + }, + { + "Id": 18, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,e821aa74-2d47-4388-bcfb-1893b8a83a52,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4503 + }, + { + "Id": 126, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,e821aa74-2d47-4388-bcfb-1893b8a83a52,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4503 + }, + { + "Id": 469, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,90869e86-cbc5-4024-9d08-fcdc41c64eb5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 128, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,90869e86-cbc5-4024-9d08-fcdc41c64eb5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 20, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,90869e86-cbc5-4024-9d08-fcdc41c64eb5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 432, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,68273c9e-96d6-4ddb-aaab-d99229e864d5,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 358, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,68273c9e-96d6-4ddb-aaab-d99229e864d5,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 364, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,68273c9e-96d6-4ddb-aaab-d99229e864d5,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4500 + }, + { + "Id": 361, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a36d252b-16ac-4a82-bece-de145147e7d9,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 430, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a36d252b-16ac-4a82-bece-de145147e7d9,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 355, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a36d252b-16ac-4a82-bece-de145147e7d9,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 19, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 468, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 127, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 363, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 431, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 357, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 471, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,002b07bb-4256-44ce-8ca4-25510e70b6b5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 130, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,002b07bb-4256-44ce-8ca4-25510e70b6b5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 22, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,002b07bb-4256-44ce-8ca4-25510e70b6b5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4501 + }, + { + "Id": 470, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 21, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 129, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 359, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 427, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 353, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 466, + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 17, + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 125, + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 360, + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,c8cc9589-4831-4e73-a865-ef8c139a2ba7,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 428, + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7ac81d60-05b8-4a85-982c-f69213a93818,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + }, + { + "Id": 354, + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7634b7ef-9607-497a-b41f-c0191dc75998,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4502 + } + ], + "Quest_Cauldron_C": [ + { + "Id": 693, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,64545dcc-a8eb-4c69-a539-78ee73a2d327,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 624, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,64545dcc-a8eb-4c69-a539-78ee73a2d327,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 649, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,64545dcc-a8eb-4c69-a539-78ee73a2d327,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 780, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,357eb160-360b-4a63-840d-65d11cc8ffc2,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 636, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,357eb160-360b-4a63-840d-65d11cc8ffc2,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 770, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,357eb160-360b-4a63-840d-65d11cc8ffc2,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 695, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 651, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 626, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 779, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 635, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 769, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 729, + "AvatarItemDesc": "27cdecd2-88f1-40a8-80a9-87abd827c3c5,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + } + ], + "Quest_Cauldron_B": [ + { + "Id": 781, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,a38254c0-00e3-429b-9d5d-b9e6a9812e69,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 771, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,a38254c0-00e3-429b-9d5d-b9e6a9812e69,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 637, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,a38254c0-00e3-429b-9d5d-b9e6a9812e69,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 652, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,909ed249-ce09-4304-8b02-56794fa7567d,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 696, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,909ed249-ce09-4304-8b02-56794fa7567d,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 627, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,909ed249-ce09-4304-8b02-56794fa7567d,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 693, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,64545dcc-a8eb-4c69-a539-78ee73a2d327,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 624, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,64545dcc-a8eb-4c69-a539-78ee73a2d327,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 649, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,64545dcc-a8eb-4c69-a539-78ee73a2d327,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 780, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,357eb160-360b-4a63-840d-65d11cc8ffc2,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 636, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,357eb160-360b-4a63-840d-65d11cc8ffc2,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 770, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,357eb160-360b-4a63-840d-65d11cc8ffc2,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 695, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 651, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 626, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 779, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 635, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 769, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 729, + "AvatarItemDesc": "27cdecd2-88f1-40a8-80a9-87abd827c3c5,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + } + ], + "Quest_Cauldron_A": [ + { + "Id": 694, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,e02838f8-4029-455a-b35c-dd40f972b05b,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 625, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,e02838f8-4029-455a-b35c-dd40f972b05b,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 650, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,e02838f8-4029-455a-b35c-dd40f972b05b,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 782, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3a9b576-5433-4305-bd96-b08820c09212,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 772, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3a9b576-5433-4305-bd96-b08820c09212,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 638, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3a9b576-5433-4305-bd96-b08820c09212,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 781, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,a38254c0-00e3-429b-9d5d-b9e6a9812e69,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 771, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,a38254c0-00e3-429b-9d5d-b9e6a9812e69,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 637, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,a38254c0-00e3-429b-9d5d-b9e6a9812e69,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 652, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,909ed249-ce09-4304-8b02-56794fa7567d,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 696, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,909ed249-ce09-4304-8b02-56794fa7567d,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 627, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,909ed249-ce09-4304-8b02-56794fa7567d,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 693, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,64545dcc-a8eb-4c69-a539-78ee73a2d327,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 624, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,64545dcc-a8eb-4c69-a539-78ee73a2d327,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 649, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,64545dcc-a8eb-4c69-a539-78ee73a2d327,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 780, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,357eb160-360b-4a63-840d-65d11cc8ffc2,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 636, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,357eb160-360b-4a63-840d-65d11cc8ffc2,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 770, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,357eb160-360b-4a63-840d-65d11cc8ffc2,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 695, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 651, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 626, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 779, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 635, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 769, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 729, + "AvatarItemDesc": "27cdecd2-88f1-40a8-80a9-87abd827c3c5,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + } + ], + "Quest_Cauldron_S": [ + { + "Id": 783, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4013 + }, + { + "Id": 773, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4013 + }, + { + "Id": 639, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4013 + }, + { + "Id": 692, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4013 + }, + { + "Id": 648, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4013 + }, + { + "Id": 623, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4013 + }, + { + "Id": 694, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,e02838f8-4029-455a-b35c-dd40f972b05b,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 625, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,e02838f8-4029-455a-b35c-dd40f972b05b,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 650, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,e02838f8-4029-455a-b35c-dd40f972b05b,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 782, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3a9b576-5433-4305-bd96-b08820c09212,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 772, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3a9b576-5433-4305-bd96-b08820c09212,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 638, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3a9b576-5433-4305-bd96-b08820c09212,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4010 + }, + { + "Id": 781, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,a38254c0-00e3-429b-9d5d-b9e6a9812e69,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 771, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,a38254c0-00e3-429b-9d5d-b9e6a9812e69,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 637, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,a38254c0-00e3-429b-9d5d-b9e6a9812e69,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 652, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,909ed249-ce09-4304-8b02-56794fa7567d,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 696, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,909ed249-ce09-4304-8b02-56794fa7567d,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 627, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,909ed249-ce09-4304-8b02-56794fa7567d,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4011 + }, + { + "Id": 693, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,64545dcc-a8eb-4c69-a539-78ee73a2d327,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 624, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,64545dcc-a8eb-4c69-a539-78ee73a2d327,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 649, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,64545dcc-a8eb-4c69-a539-78ee73a2d327,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 780, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,357eb160-360b-4a63-840d-65d11cc8ffc2,8768aa33-b014-4062-b323-b146dd7d78d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 636, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,357eb160-360b-4a63-840d-65d11cc8ffc2,abdf525b-b871-41be-a1c8-810f49740ad4,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 770, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,357eb160-360b-4a63-840d-65d11cc8ffc2,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 695, + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 651, + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 626, + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 779, + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 635, + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 769, + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + }, + { + "Id": 729, + "AvatarItemDesc": "27cdecd2-88f1-40a8-80a9-87abd827c3c5,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4012 + } + ], + "Quest_Pirate1_C": [ + { + "Id": 590, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,cdca593a-8840-4140-9145-fe962732040c,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 591, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,62bd5dda-08da-4528-83c1-f0ca3812dc6e,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 573, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,53dd9e44-7096-438e-a7c3-11d7c307426f,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 574, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,c3c9f89c-580c-43c4-b38b-07394044e0e1,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 653, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 654, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,556141f7-6fbc-4065-9faa-8d8240a93d7f,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 713, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,0f71b9a2-dd88-435c-a571-4503d12dcf2d,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 712, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + } + ], + "Quest_Pirate1_B": [ + { + "Id": 679, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,556141f7-6fbc-4065-9faa-8d8240a93d7f,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 562, + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,39f04eee-3a58-4e53-9f5e-7e995d46ed71,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 678, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 561, + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,85eb7f47-bb31-4c66-a8b3-562d35028e6c,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 590, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,cdca593a-8840-4140-9145-fe962732040c,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 591, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,62bd5dda-08da-4528-83c1-f0ca3812dc6e,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 573, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,53dd9e44-7096-438e-a7c3-11d7c307426f,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 574, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,c3c9f89c-580c-43c4-b38b-07394044e0e1,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 653, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 654, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,556141f7-6fbc-4065-9faa-8d8240a93d7f,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 713, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,0f71b9a2-dd88-435c-a571-4503d12dcf2d,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 712, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + } + ], + "Quest_Pirate1_A": [ + { + "Id": 553, + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,53dd9e44-7096-438e-a7c3-11d7c307426f,a4903da3-249d-4f0a-a746-b547fda371ff,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 11, + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,17040a88-87f1-4613-b439-3316e33dbd48,71fd06e3-cac8-4923-a09c-ef91183712d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 554, + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,c3c9f89c-580c-43c4-b38b-07394044e0e1,a4903da3-249d-4f0a-a746-b547fda371ff,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 10, + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 679, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,556141f7-6fbc-4065-9faa-8d8240a93d7f,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 562, + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,39f04eee-3a58-4e53-9f5e-7e995d46ed71,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 678, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 561, + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,85eb7f47-bb31-4c66-a8b3-562d35028e6c,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 590, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,cdca593a-8840-4140-9145-fe962732040c,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 591, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,62bd5dda-08da-4528-83c1-f0ca3812dc6e,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 573, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,53dd9e44-7096-438e-a7c3-11d7c307426f,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 574, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,c3c9f89c-580c-43c4-b38b-07394044e0e1,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 653, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 654, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,556141f7-6fbc-4065-9faa-8d8240a93d7f,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 713, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,0f71b9a2-dd88-435c-a571-4503d12dcf2d,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 712, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + } + ], + "Quest_Pirate1_S": [ + { + "Id": 680, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,d81d0b62-e052-46c2-9252-4bc5fb219f53,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4103 + }, + { + "Id": 12, + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,f9aaa7c5-59bc-486c-9a6e-27a8ac618f84,4cc0ea9f-65af-486f-8319-02b85ab5197f,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4103 + }, + { + "Id": 655, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,d81d0b62-e052-46c2-9252-4bc5fb219f53,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4103 + }, + { + "Id": 714, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,f4ad4b9e-dd42-4711-9437-5beae51966f6,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4103 + }, + { + "Id": 553, + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,53dd9e44-7096-438e-a7c3-11d7c307426f,a4903da3-249d-4f0a-a746-b547fda371ff,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 11, + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,17040a88-87f1-4613-b439-3316e33dbd48,71fd06e3-cac8-4923-a09c-ef91183712d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 554, + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,c3c9f89c-580c-43c4-b38b-07394044e0e1,a4903da3-249d-4f0a-a746-b547fda371ff,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 10, + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 679, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,556141f7-6fbc-4065-9faa-8d8240a93d7f,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 562, + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,39f04eee-3a58-4e53-9f5e-7e995d46ed71,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 678, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 561, + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,85eb7f47-bb31-4c66-a8b3-562d35028e6c,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 590, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,cdca593a-8840-4140-9145-fe962732040c,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 591, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,62bd5dda-08da-4528-83c1-f0ca3812dc6e,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 573, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,53dd9e44-7096-438e-a7c3-11d7c307426f,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 574, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,c3c9f89c-580c-43c4-b38b-07394044e0e1,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 653, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 654, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,556141f7-6fbc-4065-9faa-8d8240a93d7f,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 713, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,0f71b9a2-dd88-435c-a571-4503d12dcf2d,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 712, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + } + ], + "Quest_Pirate1_X": [ + { + "Id": 722, + "AvatarItemDesc": "e1a13235-e3b3-4b39-8e6f-e6449d4321b7,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4104 + }, + { + "Id": 680, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,d81d0b62-e052-46c2-9252-4bc5fb219f53,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4103 + }, + { + "Id": 12, + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,f9aaa7c5-59bc-486c-9a6e-27a8ac618f84,4cc0ea9f-65af-486f-8319-02b85ab5197f,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4103 + }, + { + "Id": 655, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,d81d0b62-e052-46c2-9252-4bc5fb219f53,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4103 + }, + { + "Id": 714, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,f4ad4b9e-dd42-4711-9437-5beae51966f6,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 50, + "Message": "", + "Context": 4103 + }, + { + "Id": 553, + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,53dd9e44-7096-438e-a7c3-11d7c307426f,a4903da3-249d-4f0a-a746-b547fda371ff,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 11, + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,17040a88-87f1-4613-b439-3316e33dbd48,71fd06e3-cac8-4923-a09c-ef91183712d2,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 554, + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,c3c9f89c-580c-43c4-b38b-07394044e0e1,a4903da3-249d-4f0a-a746-b547fda371ff,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 10, + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4100 + }, + { + "Id": 679, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,556141f7-6fbc-4065-9faa-8d8240a93d7f,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 562, + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,39f04eee-3a58-4e53-9f5e-7e995d46ed71,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 678, + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 561, + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,85eb7f47-bb31-4c66-a8b3-562d35028e6c,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4101 + }, + { + "Id": 590, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,cdca593a-8840-4140-9145-fe962732040c,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 591, + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,62bd5dda-08da-4528-83c1-f0ca3812dc6e,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 573, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,53dd9e44-7096-438e-a7c3-11d7c307426f,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 574, + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,c3c9f89c-580c-43c4-b38b-07394044e0e1,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 653, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 654, + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,556141f7-6fbc-4065-9faa-8d8240a93d7f,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 713, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,0f71b9a2-dd88-435c-a571-4503d12dcf2d,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + }, + { + "Id": 712, + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,,,", + "ConsumableItemDesc": "", + "EquipmentPrefabName": "", + "EquipmentModificationGuid": "", + "CurrencyType": 0, + "Currency": 0, + "Xp": 0, + "Level": 0, + "GiftRarity": 0, + "Message": "", + "Context": 4102 + } + ] +} diff --git a/apps/econ/static/storefronts/sf2000.json b/apps/econ/static/storefronts/sf2000.json new file mode 100644 index 0000000..0f18acf --- /dev/null +++ b/apps/econ/static/storefronts/sf2000.json @@ -0,0 +1,45 @@ +{ + "NextUpdate": "2226-06-14T00:12:20.1324853Z", + "StoreItems": [ + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Grey)", + "GiftDropId": 7, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: SF 2000", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 7, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + } + ] + } diff --git a/apps/econ/static/storefronts/sf2001.json b/apps/econ/static/storefronts/sf2001.json new file mode 100644 index 0000000..a195e3e --- /dev/null +++ b/apps/econ/static/storefronts/sf2001.json @@ -0,0 +1,45 @@ +{ + "NextUpdate": "2226-06-14T00:12:20.1324853Z", + "StoreItems": [ + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Grey)", + "GiftDropId": 7, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: SF 2001", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 7, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + } + ] + } diff --git a/apps/econ/static/storefronts/sf2002.json b/apps/econ/static/storefronts/sf2002.json new file mode 100644 index 0000000..8e36e9b --- /dev/null +++ b/apps/econ/static/storefronts/sf2002.json @@ -0,0 +1,45 @@ +{ + "NextUpdate": "2226-06-14T00:12:20.1324853Z", + "StoreItems": [ + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Grey)", + "GiftDropId": 7, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: SF 2002", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 7, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + } + ] + } diff --git a/apps/econ/static/storefronts/sf2003.json b/apps/econ/static/storefronts/sf2003.json new file mode 100644 index 0000000..9cb6483 --- /dev/null +++ b/apps/econ/static/storefronts/sf2003.json @@ -0,0 +1,45 @@ +{ + "NextUpdate": "2226-06-14T00:12:20.1324853Z", + "StoreItems": [ + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Grey)", + "GiftDropId": 7, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: SF 2003", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 7, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + } + ] + } diff --git a/apps/econ/static/storefronts/sf2004.json b/apps/econ/static/storefronts/sf2004.json new file mode 100644 index 0000000..006c271 --- /dev/null +++ b/apps/econ/static/storefronts/sf2004.json @@ -0,0 +1,45 @@ +{ + "NextUpdate": "2226-06-14T00:12:20.1324853Z", + "StoreItems": [ + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Grey)", + "GiftDropId": 7, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: SF 2004", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 7, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + } + ] + } diff --git a/apps/econ/static/storefronts/sf3-2025.json b/apps/econ/static/storefronts/sf3-2025.json new file mode 100644 index 0000000..63f1030 --- /dev/null +++ b/apps/econ/static/storefronts/sf3-2025.json @@ -0,0 +1,163047 @@ +{ + "NextUpdate": "2226-06-14T00:12:20.1324853Z", + "StoreItems": [ + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Grey)", + "GiftDropId": 7, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 7", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 7, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Suit (White)", + "GiftDropId": 8, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 8", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 8, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,9GhnX4Pj4E-wxbPlD8GB-g,YSrGwXybGEqaqHNCS64qOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Suit (Orange)", + "GiftDropId": 9, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 9", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 9, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Blue)", + "GiftDropId": 10, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 10", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,d6823e01-69f0-4f85-b94a-74894356a2cf,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Maroon)", + "GiftDropId": 11, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 11", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c5deba2a-6e35-4b13-8e94-8ba5457f39df,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Yellow)", + "GiftDropId": 12, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 12", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,e13cf33d-7588-4e2e-955e-f0a29d6380b7,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Brown)", + "GiftDropId": 13, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 13", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c9589974-c261-485e-b571-cb2f34fb178f,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Green)", + "GiftDropId": 14, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 14", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 14, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,da6d0ced-3d43-4878-a868-925f2ed6fd5b,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Pink)", + "GiftDropId": 15, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 15", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 15, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Blue)", + "GiftDropId": 16, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 16", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 16, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,e5de2e45-207c-46af-9a5e-eb01a0c621fe,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Green)", + "GiftDropId": 17, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 17", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 17, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,de0a5a3a-8aff-4799-8269-9efa3aeb383a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Red)", + "GiftDropId": 18, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 18", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 18, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (Green)", + "GiftDropId": 19, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 19", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 19, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Blue)", + "GiftDropId": 21, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 21", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 21, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,59a62fa3-9e15-463e-9bd5-3aecdf604c1b,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Black)", + "GiftDropId": 22, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 22", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 22, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,4effd67c-a52f-4b41-a5b0-04287f91a7bc,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Purple)", + "GiftDropId": 23, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 23", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 23, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,ojTIShRZHEOV1qQRfhwvTA,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Green)", + "GiftDropId": 24, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 24", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 24, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,se0-2ylLD0u6sqCVPkeP6A,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Red)", + "GiftDropId": 25, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 25", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 25, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,RU-B71GUF0WPduoSOI1XMg,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Yellow)", + "GiftDropId": 26, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 26", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 26, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eda29bce-5a07-4439-a2a7-cafa11e2ed62,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Belt", + "GiftDropId": 30, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 30", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 30, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ee2133d-c419-4fbc-9117-746d756a250d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fanny Pack (Cosmic)", + "GiftDropId": 42, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 42", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 42, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Red)", + "GiftDropId": 43, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 43", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 43, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,HdwZhjrqxE6wuf68MnDhDw,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Blue)", + "GiftDropId": 44, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 44", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 44, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,b7oobDcDtE-69fhM-5g5AQ,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Yellow)", + "GiftDropId": 45, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 45", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 45, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,Blev_VFjRUysY_nymGWAVg,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Green)", + "GiftDropId": 46, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 46", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 46, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Orange)", + "GiftDropId": 47, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 47", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 47, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,c5884778-a87f-4612-9717-86fbb65d440f,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Blue)", + "GiftDropId": 48, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 48", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 48, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,83522c12-9549-4d74-8c87-bae210bcd2bf,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Black)", + "GiftDropId": 49, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 49", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 49, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,XNq4Cns4lEGydtktdsXlmQ,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Navy)", + "GiftDropId": 50, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 50", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 50, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Navy)", + "GiftDropId": 51, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 51", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 51, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Purple)", + "GiftDropId": 52, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 52", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 52, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,faedf215-289b-40f7-90cc-f5b98517d133,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Blue)", + "GiftDropId": 53, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 53", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 53, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,1773d5d8-4714-4721-b30c-97e25d6f2a5a,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Red)", + "GiftDropId": 54, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 54", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 54, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,05K7dmjigkCByO2ufw9jtw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Green)", + "GiftDropId": 55, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 55", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 55, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yOw1WqEN0EWqR9t53EsQpw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (White)", + "GiftDropId": 56, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 56", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 56, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,qoVZuGa5NkOmyfikHjDhXw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Black)", + "GiftDropId": 57, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 57", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 57, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Blue)", + "GiftDropId": 72, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 72", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 72, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (White)", + "GiftDropId": 73, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 73", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 73, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Red)", + "GiftDropId": 74, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 74", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 74, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e69372eb-2fd8-4e17-a448-ee0be61a2c7a,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Black)", + "GiftDropId": 75, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 75", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 75, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e4IDo-fuH0C9YByzcX5k-A,qCIoeLQw-Uq-SKIetIgIpA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Bow Tie (Red)", + "GiftDropId": 77, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 77", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 77, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Blue)", + "GiftDropId": 80, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 80", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 80, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Grey)", + "GiftDropId": 81, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 81", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 81, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Red)", + "GiftDropId": 82, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 82", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 82, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (White)", + "GiftDropId": 83, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 83", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 83, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Yellow)", + "GiftDropId": 84, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 84", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 84, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,ojvIFCTpJkeegestF065wA,10fYSIBytk-yUjveDa407w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Plaid)", + "GiftDropId": 93, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 93", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 93, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,071d1bf3-86dc-4a31-b54a-e6579fab8649,d015cae7-a905-49e4-8823-6dec069689a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Purple)", + "GiftDropId": 95, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 95", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 95, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e139dd9-4757-43a8-8546-8da70dc17f0a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Stache", + "GiftDropId": 105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 105", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Orange)", + "GiftDropId": 106, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 106", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 106, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Red)", + "GiftDropId": 107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 107", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Blue)", + "GiftDropId": 108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 108", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, White)", + "GiftDropId": 109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 109", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Green)", + "GiftDropId": 112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 112", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Red)", + "GiftDropId": 113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 113", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Blue)", + "GiftDropId": 114, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 114", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 114, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, White)", + "GiftDropId": 115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 115", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Purple)", + "GiftDropId": 116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 116", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Black)\t", + "GiftDropId": 117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 117", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Green)", + "GiftDropId": 118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 118", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Red)", + "GiftDropId": 119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 119", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Blue)", + "GiftDropId": 120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 120", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, White)", + "GiftDropId": 121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 121", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Green)", + "GiftDropId": 124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 124", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cca7ab3d-5609-4700-92fd-3280fcea9b77,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1002, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Stache", + "GiftDropId": 125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 125", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Brown)", + "GiftDropId": 126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 126", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,192ba73d-6990-42da-8fe0-914c2a7181eb,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Black, Gold)", + "GiftDropId": 127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 127", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Yellow)", + "GiftDropId": 128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 128", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,624c85e5-095a-48b6-85fb-c9bbade19a8d,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Cherry)", + "GiftDropId": 129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 129", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,K5vPqD3BrEuODRDzFdC6Hw,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Black, Silver)", + "GiftDropId": 131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 131", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Red)", + "GiftDropId": 136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 136", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,rcdwgNvO30Cvx2ycE1GfHw,JmFzNL5v_0q1p0bgoOlBpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Black)", + "GiftDropId": 137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 137", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9a366f8b-ea5b-49ae-a98c-f6b282e9bf14,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Gold Sequins)", + "GiftDropId": 138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 138", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "73a119ab-d2c8-4da9-98b2-29edbb38e2c2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Red Sequins)", + "GiftDropId": 139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 139", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "73c0e2ba-cba1-482a-89d5-1508997aceeb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Silver Sequins)", + "GiftDropId": 140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 140", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Red) ", + "GiftDropId": 141, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 141", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 141, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,v_5qFi-vAUSDd1fLNL7pvA,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Green)", + "GiftDropId": 142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 142", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,y5O8zRJy4kuhnXzATSWKew,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Blue)", + "GiftDropId": 143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 143", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Primrose)", + "GiftDropId": 144, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 144", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 144, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,IzdUC8x0F02i3BhPfEUOYw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Poppy)", + "GiftDropId": 146, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 146", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 146, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,nPUQvBsxu0mzhQg9YnWEgw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Paradise)", + "GiftDropId": 147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 147", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wyKAZSZwT0u9cuSaQ_-IHg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Begonia)", + "GiftDropId": 148, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 148", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 148, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,_OM7UNZENEejgO5h7H1ztg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Dahlia)", + "GiftDropId": 149, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 149", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 149, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mermaid Dress", + "GiftDropId": 150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 150", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moons & Stars Dress ", + "GiftDropId": 151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 151", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,OJYpuFw810Sg4bTw0XQf-g,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Lodge)", + "GiftDropId": 153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 153", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,t4gMAKp4L0WBaTGf_rtqFw,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Yacht)", + "GiftDropId": 154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 154", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rGMFdPKmK02_OvIIFYlAxA,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Veranda)", + "GiftDropId": 155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 155", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,wxvSDMommkenIl5hTY2fdQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Seafoam)", + "GiftDropId": 156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 156", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,-sqfCQpzpUyjEShEXH9JYQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Sunrise)", + "GiftDropId": 157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 157", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,sz-J7RjesE-ke3bKwumzZQ,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Meadow)", + "GiftDropId": 159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 159", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,QlZt51mdn0WuiqKoJaIRyA,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Vineyard)", + "GiftDropId": 160, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 160", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 160, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,6PyJEQxyd0K9TPRnvt_86Q,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Estate)", + "GiftDropId": 161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 161", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor", + "GiftDropId": 162, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 162", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 162, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Blue)", + "GiftDropId": 163, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 163", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 163, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,GQSpXmD0B02_gwzpq6StFA,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Red)", + "GiftDropId": 164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 164", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,YvPeCbQS2UOcLjPfoIML_g,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Yellow)", + "GiftDropId": 165, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 165", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 165, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,zGOD45zNAk2i6P_zPsNPfg,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Green)", + "GiftDropId": 166, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 166", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 166, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wedding Dress", + "GiftDropId": 167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 167", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (June Pearl)", + "GiftDropId": 168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 168", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,46f7Ewe99E6tF2qFaMtQ0g,8IK1U23XlUOV-2ibVznkDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (April Diamond)", + "GiftDropId": 170, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 170", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 170, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,R0f3hHGY9UqUEW4aR1fssA,KSqfmVTiGUKOKijwGDSwgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (May Emerald)", + "GiftDropId": 171, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 171", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 171, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ZsWc8wRafEGl3B7cr6UkzA,ByIfwCtDwU-p9rEfqpjfGg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (August Peridot)", + "GiftDropId": 173, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 173", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 173, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,kQD41xK4dU6dI_6pRkP0qA,aSeusgYlPE6vOBu9Ua_dWA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (September Sapphire)", + "GiftDropId": 174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 174", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ro4sD9txVE29_eT2jK-wEg,0YF5bACMsk2sN4tixbJbKw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (October Opal)", + "GiftDropId": 175, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 175", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 175, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,-YsxhNXLAk2qbeXMqwAqng,aNOhXS4nuUeqs0CVw6K7Hg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (November Citrine)", + "GiftDropId": 176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 176", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,imOiYzABkUm9C5EVzvjXgg,0eZVIsv7wUyZ0ohLmF1jGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (December Turquoise)", + "GiftDropId": 177, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 177", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 177, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,FgLAEMh1e0GyHO8J8_xj5Q,iM-04HpG6k2N8n-P3XS22w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (January Garnet)", + "GiftDropId": 178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 178", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,C9CZUwEZeUiuOue4CK4luA,gUxl7WNXlUqFYHZ9eGq1cg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (February Amethyst)", + "GiftDropId": 179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 179", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Brown)", + "GiftDropId": 190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 190", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,7b82c3c5-fd1f-45ec-b83f-e32668aa8dce,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Black)", + "GiftDropId": 191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 191", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,23428ca9-be75-4146-b400-df01d1dadac9,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Tan)", + "GiftDropId": 192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 192", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,qJGX62O_HUiZWN61NAc1Lg,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Red)", + "GiftDropId": 193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 193", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_qXaNbm4yEeyalo372QbvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Goggles", + "GiftDropId": 194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 194", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TcgHS_0aPkehrBg7ytMOMQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clubmaster Glasses", + "GiftDropId": 195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 195", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d4f86b2b-0fa3-4264-9eac-cf15b62463bd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Shades", + "GiftDropId": 200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 200", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mirrored Glasses (Gold)", + "GiftDropId": 201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 201", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,f841cdfa-45ba-4f09-a117-503eef34cb4b,9c55b609-b7dc-4070-a3ad-6351a0054a06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mirrored Glasses (Silver)", + "GiftDropId": 202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 202", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d57cf97e-b5d2-4e47-8231-a226a161f6e3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Pink)", + "GiftDropId": 204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 204", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f684d86f-4a75-4a9a-bc0a-cf58f36c91c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Yellow)", + "GiftDropId": 208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 208", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses", + "GiftDropId": 211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 211", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02a5b48c-abba-4385-967b-ba900424829e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Monocle", + "GiftDropId": 212, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 212", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 212, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (Orange)", + "GiftDropId": 217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 217", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,DRS8xu3AqUOy2L0RKF3f7g,A7Y52vGIN0ijEKsWR_GQLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (Blue)", + "GiftDropId": 218, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 218", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 218, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Summit)", + "GiftDropId": 225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 225", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,fXNkMWFMV0aXalK_y_8SHw,SSY8ZYMgaE2Bl4oFmMjKQA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Chill)", + "GiftDropId": 226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 226", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22pyI3Kz-UullhcebC6DLQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snorkel", + "GiftDropId": 227, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 227", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 227, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask", + "GiftDropId": 228, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 228", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 228, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,HWAWBHI3zkGsh06he9CoPg,UAeSz-XeZUaZsk9FNlPX5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask (Raven)", + "GiftDropId": 230, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 230", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 230, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "kghEf_iMKUSxPO-h5iRhSQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Classic Glasses", + "GiftDropId": 231, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 231", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 231, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Goggles", + "GiftDropId": 232, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 232", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 232, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,mZ2ASMrs80axStLp9g1enA,dGzmSibucEe7i1HD7lPcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Goggles (Silver)", + "GiftDropId": 233, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 233", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 233, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbN5e-t_jEKa4hzir5JAxQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shades", + "GiftDropId": 234, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 234", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 234, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "767684e7-0eec-4f6e-ad58-3d5ae715206e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Sunglasses", + "GiftDropId": 235, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 235", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 235, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Pride)", + "GiftDropId": 236, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 236", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 236, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,eWf2c62cqEOkRukLzhl_wQ,KFq8d1VsO0KDqBWUj4qRFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Victory)", + "GiftDropId": 237, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 237", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 237, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Field Hockey Uniform (Red)", + "GiftDropId": 242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 242", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,7b0d6661-e856-4ec1-ab90-d89c28a70826,1fede91a-434e-49a5-882e-e6db107112a8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Field Hockey Uniform (Blue)", + "GiftDropId": 243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 243", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Jacket", + "GiftDropId": 244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 244", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Yellow)", + "GiftDropId": 245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 245", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,cf515c87-3c0a-4443-9f63-5ea1bdbaa61a,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (White)", + "GiftDropId": 246, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 246", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 246, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,27680277-aec1-41be-a476-9f51cf775580,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Purple)", + "GiftDropId": 247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 247", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,5a96ac4d-03c3-4214-9dcb-c2044ff28f2e,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Grey)", + "GiftDropId": 248, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 248", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 248, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (White)", + "GiftDropId": 249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 249", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,32dde6dc-e3dc-43ee-9b7c-987bc6778c17,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Orange)", + "GiftDropId": 250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 250", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,88c3ed05-ce41-4a9d-a4a7-8a428d240b3f,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Black)", + "GiftDropId": 251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 251", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,vMqhT19x302aYEo6E9HhOA,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Red)", + "GiftDropId": 252, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 252", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 252, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,kCqthBeVvUKZA9b76kxuVQ,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Gray)", + "GiftDropId": 255, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 255", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 255, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (Brown)", + "GiftDropId": 257, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 257", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 257, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (Black)", + "GiftDropId": 258, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 258", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 258, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,643b5f2d-0666-4869-b699-03742de34d16,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (White)", + "GiftDropId": 259, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 259", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 259, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Goggles", + "GiftDropId": 260, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 260", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 260, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Nova)", + "GiftDropId": 271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 271", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,SXG9rdEkxkOR31Nk0aTOww,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Quasar)", + "GiftDropId": 272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 272", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,FFIpxInE-EKbk2GY-pIkyg,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Nebula)", + "GiftDropId": 273, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 273", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 273, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Purple)", + "GiftDropId": 281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 281", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Red)", + "GiftDropId": 282, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 282", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 282, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,c5884778-a87f-4612-9717-86fbb65d440f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Blue)", + "GiftDropId": 283, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 283", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 283, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (Black)", + "GiftDropId": 284, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 284", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 284, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,0Ytm7G4_lkmZWPA_YfaIeQ,KfM7veOVlE-dNZmsbDNZBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (Orange)", + "GiftDropId": 286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 286", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Gold)", + "GiftDropId": 287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 287", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,ERnUPsyT6kuEnIRZF8zPwg,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Silver)", + "GiftDropId": 288, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 288", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 288, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,iaDL2im4lkCXUo0NWM-F3g,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Bronze)", + "GiftDropId": 289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 289", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d13a7a2-8213-40e6-90a6-efdd76a3fdcb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowing Hair", + "GiftDropId": 302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 302", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BJ2XrGvl40iIl28IbTfbKg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Ponytail", + "GiftDropId": 306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 306", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 306, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fbdca48d-4ae6-41ad-8c33-b70a9e33fd77,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 11, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Action Hair", + "GiftDropId": 312, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 312", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 312, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49397e16-1027-4286-9bc4-b59eae565ff0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Side Pony Hair", + "GiftDropId": 313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 313", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e49d5d78-157e-4bc8-b878-ff7c4963fdc4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mohawk Hair", + "GiftDropId": 320, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 320", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 320, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b7f4dae-51da-4af0-b009-12d6005c85c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mullet Hair", + "GiftDropId": 321, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 321", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 321, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76a73866-5b60-424d-b751-a105e030f46e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Hair ", + "GiftDropId": 327, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 327", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 327, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce250e13-8137-4f62-9e52-2b1cebe7d0ad,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Hawk Hair", + "GiftDropId": 329, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 329", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 329, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Blue)", + "GiftDropId": 340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 340", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,ZpcM5H2Q1UCt0hh82nSu9w,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Pink)", + "GiftDropId": 341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 341", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,7B7vpnMTfkGLcMdHCZ_kWA,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Red)", + "GiftDropId": 342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 342", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,nO-YacKU1kmLjTFAAqNeYQ,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Yellow)", + "GiftDropId": 343, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 343", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 343, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,76CA_KCr806y1FA35m-YTg,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Orange)", + "GiftDropId": 344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 344", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,61VZkFjB402brzWm4UsftA,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Grey)", + "GiftDropId": 357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 357", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Helmet (White)", + "GiftDropId": 361, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 361", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 361, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,JFalLDUvm0aMm3wh1UVfVg,iQjkS1xYP0S63ltvKpkz5g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Helmet (Orange)", + "GiftDropId": 362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 362", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Brown)", + "GiftDropId": 363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 363", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,a8de80d3-286a-4fdc-bed2-75d52f8c0964,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Black)", + "GiftDropId": 364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 364", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,c6cf096c-f0cb-4500-80a0-bc2916b5a426,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Tan)", + "GiftDropId": 365, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 365", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 365, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,FjnZ-D1hcESLOWL4Ukv7kw,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Red)", + "GiftDropId": 366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 366", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Folded Bandana (Red) ", + "GiftDropId": 367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 367", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07023692-97e1-4a65-a881-64ca6b4ae08e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbarian Helm ", + "GiftDropId": 368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 368", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Red)", + "GiftDropId": 369, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 369", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 369, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,631c9015-2a00-47ea-bb35-465a2ddbca5d,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Black)", + "GiftDropId": 370, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 370", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 370, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,7f9cb939-36a4-40da-8337-025e1d7bf8e5,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Green)", + "GiftDropId": 371, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 371", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 371, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Goblins)", + "GiftDropId": 380, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 380", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 380, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Buckaneer)", + "GiftDropId": 381, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 381", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 381, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nZor-clxlkm8EO9Gco0Otg,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Red, Blue)", + "GiftDropId": 382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 382", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,M8IYDK6aTUyn5mRhr51GtA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Orange, Black)", + "GiftDropId": 383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 383", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,yxWEn-oaYE2YvvnrTVV5WQ,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Turquoise, Grey)", + "GiftDropId": 384, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 384", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 384, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,XLYLo5qgW0eociGDgQ16PA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Yellow, Blue)", + "GiftDropId": 385, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 385", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 385, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,Vk1n941ZgkKrhrL9mh18oA,lxmw7EbzsUuoy0roRy5McQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Minitron)", + "GiftDropId": 386, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 386", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 386, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,mdSSJyipq0KvjDNQ2NyUaw,LQheTa-EvUaAonSyoWNmXg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Holographic)", + "GiftDropId": 387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 387", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (High Fashion)", + "GiftDropId": 388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 388", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,cpTKHXjj0kulivZCKVQqiA,Mrf17aidXEeCF-fFURUUcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Hyper Ramen)", + "GiftDropId": 391, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 391", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 391, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Blue)", + "GiftDropId": 392, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 392", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 392, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Green)", + "GiftDropId": 393, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 393", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 393, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Red)", + "GiftDropId": 394, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 394", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 394, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Black)", + "GiftDropId": 395, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 395", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 395, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,-XSM6ZcSjE-vrWL7jyF4fQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Blue)", + "GiftDropId": 396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 396", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,RL6HkufaJ0yubTpCGVI9eQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Green)", + "GiftDropId": 397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 397", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,9tTuREkoQkW0ycqOjWXsiA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (White)", + "GiftDropId": 398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 398", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,MVkY4sU5BkGC4QhweRiyIA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Orange)", + "GiftDropId": 399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 399", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,ux9DQVSRyU-_5GA-t197OA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Purple)", + "GiftDropId": 400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 400", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,t2bByt5oUEG90PMMePCP6A,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Gray)", + "GiftDropId": 401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 401", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,m7KXVnULz0iHvKfCFzFoyw,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Pink)", + "GiftDropId": 402, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 402", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 402, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,gT0WA7Y1H0my5uMlteIMMg,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Red)", + "GiftDropId": 403, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 403", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 403, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Tan)", + "GiftDropId": 404, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 404", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 404, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,58YffnGSUU6umcI1i0RvZw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Purple)", + "GiftDropId": 405, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 405", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 405, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,c24f1DNZjEmqkt-FibKUjQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Brown)", + "GiftDropId": 406, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 406", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 406, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,SeVmHtrMS0y7gKCYkHcrOA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Gray)", + "GiftDropId": 407, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 407", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 407, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,uDcJZClcFkiNdkEEh9IIyA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Blue)", + "GiftDropId": 408, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 408", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 408, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,Iezz6gCFfkKdVcmPXIhunw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Orange)", + "GiftDropId": 409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 409", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,fLWfBSEO6U6aHrDm3nKFEQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Green)", + "GiftDropId": 410, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 410", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 410, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,F5vJzMfNB0Ob6Abjadho7Q,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Pink)", + "GiftDropId": 411, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 411", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 411, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,vbOUaJsGHEaSfQCivNcMWg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (White)", + "GiftDropId": 412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 412", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,wbFPXIg5gUK3QK6YycZexg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Red)", + "GiftDropId": 413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 413", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,_fBrHCkTKUe82QgxCyI-Kw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Black)", + "GiftDropId": 414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 414", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bear Hug Hat (White)", + "GiftDropId": 415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 415", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,1919d319-6cce-4500-8766-15fed6a13fa8,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Gold)", + "GiftDropId": 420, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 420", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 420, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,lBe3yxuE40eBmTrnEHBqQQ,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Purple)", + "GiftDropId": 421, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 421", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 421, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,oZ8k0Qv3SkG-DkY0_dP7UA,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Teal)", + "GiftDropId": 422, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 422", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 422, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Blue)", + "GiftDropId": 423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 423", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,7_n11PF4-0KqTZ9az23hqg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Black)", + "GiftDropId": 424, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 424", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 424, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,TKbjEeTWfUyA1u4laoULMg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Green)", + "GiftDropId": 425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 425", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,JShcoWWPz0297HeEUJbDCQ,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Red)", + "GiftDropId": 426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 426", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,_psc7WCgOk2JzRQwuFAqNw,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (White)", + "GiftDropId": 427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 427", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,WeP_tPjUNUuGojXrVBOAIA,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Purple)", + "GiftDropId": 428, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 428", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 428, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Blue)", + "GiftDropId": 429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 429", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,83522c12-9549-4d74-8c87-bae210bcd2bf,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Black)", + "GiftDropId": 430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 430", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Orange)", + "GiftDropId": 431, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 431", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 431, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,XNq4Cns4lEGydtktdsXlmQ,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Navy)", + "GiftDropId": 432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 432", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "VQnoLstCyEGDPy1c38-GvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Helmet", + "GiftDropId": 433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 433", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Hood", + "GiftDropId": 434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 434", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2fadddc1-babd-4cb3-8f5a-0e7c889c3785,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Helmet", + "GiftDropId": 436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 436", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Orange)", + "GiftDropId": 437, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 437", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 437, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,c9589974-c261-485e-b571-cb2f34fb178f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Green)", + "GiftDropId": 438, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 438", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 438, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Pink)", + "GiftDropId": 439, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 439", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 439, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat", + "GiftDropId": 441, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 441", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 441, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Blue)", + "GiftDropId": 442, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 442", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 442, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Red)", + "GiftDropId": 443, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 443", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 443, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,rzUd1IMTKUmW0HeMPSIOBQ,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Green)", + "GiftDropId": 444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 444", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Black)", + "GiftDropId": 448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 448", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,713781e5-ce47-41c6-a24f-94d42a565e30,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Brown)", + "GiftDropId": 450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 450", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Grey)", + "GiftDropId": 451, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 451", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 451, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,c1e430c5-fd8d-4032-9e3f-8d87cc8784da,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (White)", + "GiftDropId": 452, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 452", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 452, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Alley)", + "GiftDropId": 453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 453", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Calico)", + "GiftDropId": 454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 454", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,V1M2-FXZSEG782d6D0AhUg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Burmese)", + "GiftDropId": 455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 455", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,wNde5lsob06eQxEH2t-zUw,5KeLrnvaKEWnEiap1xzmjw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Tabby)", + "GiftDropId": 456, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 456", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Hat (White)", + "GiftDropId": 457, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 457", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,PR5dh2jf2kqGLO0lXgA69A,-lYK7LhYyEy6wqL1tIE9cg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Hat (Black)", + "GiftDropId": 458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 458", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat", + "GiftDropId": 459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 459", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Pink)", + "GiftDropId": 460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 460", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,w9I-I0GWRE-3RgOUMMlHjg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Black)", + "GiftDropId": 461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 461", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,bmi_S166JEGWhf_7woVL0A,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Tan)", + "GiftDropId": 462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 462", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,dSEiNUAZnUmErO5Vfv51zg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Teal)", + "GiftDropId": 463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 463", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,jTG-jnKn0k-Etg_-4Gb9gw,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (White)", + "GiftDropId": 464, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 464", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 464, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Black)", + "GiftDropId": 465, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 465", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 465, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,jwXdjDbEmkOFyKZHT_RYOw,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Blue)", + "GiftDropId": 466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 466", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,LdKaVAveokmp3qRwVBxnFA,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Green)", + "GiftDropId": 467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 467", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Brown)", + "GiftDropId": 469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 469", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,624c85e5-095a-48b6-85fb-c9bbade19a8d,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Cherry)", + "GiftDropId": 470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 470", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,192ba73d-6990-42da-8fe0-914c2a7181eb,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Black, Gold)", + "GiftDropId": 471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 471", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Yellow)", + "GiftDropId": 472, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 472", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 472, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,teVKVbVEsEyqOSuRdqHQzA,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (White)", + "GiftDropId": 473, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 473", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 473, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,K5vPqD3BrEuODRDzFdC6Hw,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Black, Silver)", + "GiftDropId": 474, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 474", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 474, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ae0eb82-13ce-43a2-bbc2-99a1cdbec63f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Crab Hat", + "GiftDropId": 476, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 476", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 476, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Triton)", + "GiftDropId": 477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 477", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,Su7kiW24d0KapNns96JoFQ,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Kraken)", + "GiftDropId": 478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 478", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,CahBzgN3D0y46AQsvGC14A,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Leviathan)", + "GiftDropId": 479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 479", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4abc2ac4-e60c-49b1-9ac8-4d4751ed78ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dino Hat", + "GiftDropId": 481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 481", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a5b747b8-c1a5-4bce-999f-e13dbe77bde6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disco Ball Hat", + "GiftDropId": 482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 482", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5ac25e5a-8c8e-445c-82a4-7272baec1eb5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Head Mirror", + "GiftDropId": 483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 483", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Red)", + "GiftDropId": 484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 484", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,5a614f97-ef7f-4b70-afff-9ed837a86407,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Green)", + "GiftDropId": 485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 485", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,b444ed0a-eab5-4bd6-af34-d080de74a149,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Orange)", + "GiftDropId": 486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 486", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,8053b5e5-0f67-4329-a45d-1ee9fc830820,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Yellow)", + "GiftDropId": 487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 487", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1003, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Crown", + "GiftDropId": 494, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 494", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 494, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Black)", + "GiftDropId": 495, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 495", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 495, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,55901f12-d5b5-4fa8-b4c8-e479689ee39d,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Blue)", + "GiftDropId": 496, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 496", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 496, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,4828b50c-95b6-466a-bb25-514891d78202,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Grey)", + "GiftDropId": 497, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 497", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 497, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,d6823e01-69f0-4f85-b94a-74894356a2cf,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Maroon)", + "GiftDropId": 498, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 498", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 498, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16707919-756d-45ae-95fc-cfb6715b8ae6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Helm", + "GiftDropId": 500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 500", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (White)", + "GiftDropId": 501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 501", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,cea53c7f-24a9-4e3b-80b9-fbf95738f973,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Orange)", + "GiftDropId": 502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 502", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Blue)", + "GiftDropId": 503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 503", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,8c74ee27-3d56-401b-8a8c-7868a80770e8,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Black)", + "GiftDropId": 504, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 504", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 504, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Red)", + "GiftDropId": 505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 505", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,891d902e-3257-4a8c-9001-858046007997,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (White)", + "GiftDropId": 506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 506", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,4c26d1e7-2382-4478-b9c4-a068ed01a607,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Yellow)", + "GiftDropId": 507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 507", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Silver)", + "GiftDropId": 508, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 508", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 508, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,565c17e0-496d-45bd-a2c3-564e118c06cc,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Black)", + "GiftDropId": 509, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 509", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 509, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Gold)", + "GiftDropId": 510, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 510", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 510, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Grey)", + "GiftDropId": 511, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 511", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 511, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Green)", + "GiftDropId": 512, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 512", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 512, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,0ba92db2-690a-44ce-92f4-130e9503b6c1,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Blue)", + "GiftDropId": 513, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 513", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 513, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9aYT6E9sd0OSavlmkhtkGw,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (White)", + "GiftDropId": 514, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 514", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 514, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,H-ypJNyVSka9as7rDFRZ_A,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Red)", + "GiftDropId": 515, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 515", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 515, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,-7uPJmO-wUu3cUhqo0caPg,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Tan)", + "GiftDropId": 516, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 516", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 516, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Pink)", + "GiftDropId": 517, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 517", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 517, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,c5884778-a87f-4612-9717-86fbb65d440f,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Blue)", + "GiftDropId": 518, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 518", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 518, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,827a1538-51bb-4fef-99c1-7f1bebd9866c,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Red)", + "GiftDropId": 519, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 519", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 519, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (White)", + "GiftDropId": 520, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 520", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 520, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,d8d490aa-7088-4163-9305-1441367f490c,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Orange)", + "GiftDropId": 521, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 521", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 521, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,61ff7a02-50ff-49ea-b95e-c31b95a30c8e,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Black)", + "GiftDropId": 522, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 522", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 522, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,X24EvVokeUqyDNdqevV2EA,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Red)", + "GiftDropId": 523, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 523", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 523, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,UfhOpLemQ0ypYh7CIC3W1Q,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Gray)", + "GiftDropId": 526, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 526", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 526, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears", + "GiftDropId": 528, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 528", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 528, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cec9cfac-a45b-4edb-b26d-7453cc2bfaf2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Froggy Headband", + "GiftDropId": 530, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 530", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 530, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "66f8f55d-cad4-4afb-93e8-b6bdf04b37b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Green Sequins)", + "GiftDropId": 538, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 538", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 538, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3b8bd7b-ca9a-4f5d-b115-3659dc294a03,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Green)", + "GiftDropId": 539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 539", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Euf1h1qsZ02evDsyoHYbPQ,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Orange)", + "GiftDropId": 541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 541", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,zlqLrGEa8E2WW9ey_szREA,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Pink)", + "GiftDropId": 544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 544", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Orange)", + "GiftDropId": 546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 546", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,8iZO162KNUiMC8l_z3OC_A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Purple)", + "GiftDropId": 547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 547", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,f_c50saStkaGJuhLjJ9lfA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Black)", + "GiftDropId": 548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 548", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,FUP4iRnoc0ikNmjrFD06lg,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Pink)", + "GiftDropId": 549, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 549", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 549, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,GmS0wKwzVEqdf3NoTMHG5A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Teal, Polka Dot)", + "GiftDropId": 550, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 550", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 550, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,ZNKGkou_gU-1cxBFy7pDKw,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Red, Polka Dot)", + "GiftDropId": 551, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 551", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 551, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,-Iqmonry4EKoqAULCKzRPA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (White, Polka Dot)", + "GiftDropId": 552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 552", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Black)", + "GiftDropId": 572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 572", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,viL4CPch2ECwG-RNaWcyZw,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Red)", + "GiftDropId": 573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 573", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,8ANbOhNnO0yLQOCIBsDwfg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Blue)", + "GiftDropId": 574, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 574", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 574, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,JWBK5v78Y0uRVEXlD-Qk6Q,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Orange)", + "GiftDropId": 576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 576", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,hf0gkFVS8ESvceRsC3LAXQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Psy)", + "GiftDropId": 578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 578", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,4scG_UBlzE-5DWRhSrtm6g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Chillout)", + "GiftDropId": 579, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 579", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 579, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,nX7krD8e2km_ZlOLWcoxdQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Lounge)", + "GiftDropId": 581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 581", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,ns5tIRishUOp-nYqLedcwA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Techno)", + "GiftDropId": 582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 582", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,I1J-xY4YNU2dB_od4P_7Dg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Heat)", + "GiftDropId": 584, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 584", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 584, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,2sf-FU4WckGBDWUkVz4z1g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Sky)", + "GiftDropId": 585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 585", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,d9mwowRelE2lDKEA0UQMZQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Dawn)", + "GiftDropId": 587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 587", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Void)", + "GiftDropId": 588, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 588", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 588, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (Red)", + "GiftDropId": 591, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 591", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 591, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,ce465d53-3807-423f-baa0-bdba2a75ceb3,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (White)", + "GiftDropId": 592, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 592", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 592, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,596097a8-d545-4256-959d-1d3cd96fc64c,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (Yellow)", + "GiftDropId": 593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 593", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Black)", + "GiftDropId": 595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 595", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,d5efaf80-7f34-4c9a-bc3a-b80b1ac70ace,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Red)", + "GiftDropId": 596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 596", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Blue)", + "GiftDropId": 597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 597", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,qdA34j6p_UqphqChTCHEYQ,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Green)", + "GiftDropId": 598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 598", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Mastermind)", + "GiftDropId": 600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 600", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,RBRFHN8_rkuImbyDAfcHWw,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Spy)", + "GiftDropId": 601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 601", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,QJSPgq2KXEOWNynY8uqQvA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Rogue)", + "GiftDropId": 602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 602", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,4RH8_Z1mqU-JIVvx31wOsA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Outlaw)", + "GiftDropId": 603, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 603", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 603, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,PMa9370LPEig_7pKwCceEQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Green)", + "GiftDropId": 614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 614", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Helmet (Purple)", + "GiftDropId": 615, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 615", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 615, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,e3454bc7-c88d-4958-8b81-db3fe5472a1e,7e688b30-ed13-4790-9ad8-c49885d1b7e8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Helmet (Pink)", + "GiftDropId": 616, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 616", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 616, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Black)", + "GiftDropId": 622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 622", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,z-yaXP9ImkysLOGuCQiblw,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Red)", + "GiftDropId": 623, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 623", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 623, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,SmRcrycMZ0qYNsHuQQOORA,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Blue)", + "GiftDropId": 624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 624", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,0svDrGn2NkmhUjC1VJUgRg,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Green)", + "GiftDropId": 625, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 625", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 625, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,Aq4fjEW5gEyzetXMoG2tdQ,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (White)", + "GiftDropId": 626, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 626", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 626, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Primrose)", + "GiftDropId": 627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 627", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,B9DJPqTeYUuPnPHRbKzEJA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Poppy)", + "GiftDropId": 629, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 629", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 629, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,yXZO-donI0SHB9-TT0jUdw,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Paradise)", + "GiftDropId": 630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 630", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,J5VsmblfWU2MeUjNo0fz1Q,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Begonia)", + "GiftDropId": 631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 631", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,Asfe0ZRi50eryD5wlJzgzA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Dahlia)", + "GiftDropId": 632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 632", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 632, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Green)", + "GiftDropId": 633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 633", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 633, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,916384ca-e209-42a0-bd64-c64f5a40b56f,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Red)", + "GiftDropId": 634, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 634", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 634, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Blue)", + "GiftDropId": 635, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 635", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 635, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,RA7cizxxYE6J8yV_0XwPxA,VSLcLM0TJU2kJU5gS4KZGw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Pouncing Tiger)", + "GiftDropId": 636, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 636", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 636, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,5_UnQ7vZ9E2T-EhJ7M-mQw,jL-LAsd03EeN1J-Zp8opew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Green Lightning)", + "GiftDropId": 637, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 637", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 637, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17f275d7-c5b1-4a0c-857f-8fb7a5d7c57a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Helmet", + "GiftDropId": 641, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 641", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 641, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Fuchsia)", + "GiftDropId": 642, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 642", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 642, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,lhfOKGDAgEKWucerCmH7Fg,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Teal)", + "GiftDropId": 643, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 643", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 643, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,kLv_wsbbGUmlfIUO1QLYLw,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Green)", + "GiftDropId": 644, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 644", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 644, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,f0pjsV0XMUWoE_z2kqOlSA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Orange)", + "GiftDropId": 645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 645", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,EDLxuGjEVEGdOPXDqyN-xA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Red)", + "GiftDropId": 646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 646", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mermaid Crown", + "GiftDropId": 647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 647", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Black)", + "GiftDropId": 648, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 648", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 648, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,40283127-2ffc-4989-82f6-29c3381bf9e2,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (White)", + "GiftDropId": 649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 649", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,1421caa9-9a0d-42c2-b847-1500ba2e483a,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Brown)", + "GiftDropId": 650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 650", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,390a476a-5545-48eb-955c-1bf1a16012bf,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Grey)", + "GiftDropId": 651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 651", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,PZx7Iae0pkiDaxT9t3-vgg,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Purple)", + "GiftDropId": 653, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 653", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 653, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Shindig)", + "GiftDropId": 656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 656", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,RROvzwtshUGyRudVIBn8bw,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Celebration)", + "GiftDropId": 658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 658", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Zonked)", + "GiftDropId": 660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 660", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,2vawoQvJPUegnClmr2RNAQ,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Zzz)", + "GiftDropId": 661, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 661", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 661, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,kIcd-yEnsEqxoeogquvmRw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Dozy)", + "GiftDropId": 662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 662", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,qHyKfCsrbUqSWomjLXf7Hw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Sandman)", + "GiftDropId": 663, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 663", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 663, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (Gold)", + "GiftDropId": 674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 674", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zljmtj5WqUaRvB3XQTgJXg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (White)", + "GiftDropId": 675, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 675", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 675, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rmq1AOQvtUGOHvbPUximwg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (Black)", + "GiftDropId": 676, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 676", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 676, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Yellow)", + "GiftDropId": 678, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 678", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 678, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,v3af60p1Q02NpdCqIRO9lw,1hVOI7IuY0mKvtr2PZXLww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Red)", + "GiftDropId": 679, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 679", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 679, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,d0bb468c-b78f-4e80-916d-65fec3ec0010,0272eb19-fc0e-4ad6-8db9-cc0cda2528b0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Hat (Green)", + "GiftDropId": 682, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 682", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 682, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f61eb9cc-c0d3-4b45-a7b7-b6c69e5e6db4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Panda Hat", + "GiftDropId": 683, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 683", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 683, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,W-xMu8n2CUuHSXfHvEL4yw,-apO3Y7om0GKhC4V_hVYdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1003, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robo Logo Cap (Pink)", + "GiftDropId": 685, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 685", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 685, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Gold)", + "GiftDropId": 686, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 686", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 686, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,wCe2yC2U1kyYvPd8Z1rX2w,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (White)", + "GiftDropId": 688, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 688", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 688, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,QkfA71-1z0qOiZAVrbzhtA,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Black)", + "GiftDropId": 689, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 689", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 689, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Hat (Tan)", + "GiftDropId": 690, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 690", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 690, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,0dabda0d-842c-4d39-a6b9-a8ca3ec20825,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Hat (Green)", + "GiftDropId": 691, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 691", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 691, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "380a5e35-b4d0-4119-9721-8ce4c0840fbd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Starship Helm", + "GiftDropId": 698, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 698", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 698, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Blue, Gold)", + "GiftDropId": 703, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 703", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 703, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,f5403c89-9769-479b-8a05-c71607f9b189,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Black, Gold)", + "GiftDropId": 704, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 704", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 704, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,36e63797-5a42-4779-a5cc-ef5c2e7d17d4,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Black, Silver)", + "GiftDropId": 705, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 705", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 705, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,70112887-dc8d-49d5-96ed-0845204e0b58,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (Black, Black, Gold)", + "GiftDropId": 706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 706", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,2738ab5f-8c94-46b3-bac6-4a8111c41c21,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (Pink, Black, Pink)", + "GiftDropId": 707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 707", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Hat", + "GiftDropId": 710, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Doo doo doo doo doo doo Debug: 710", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 710, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Tan)", + "GiftDropId": 711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 711", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,fEPwvuJCWkGBe4IekXpmLw,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Black)", + "GiftDropId": 712, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 712", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 712, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,MQOxmUk-mUG-Ee9m9nX31Q,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Grey)", + "GiftDropId": 713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 713", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Summit)", + "GiftDropId": 714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 714", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,KwCEye0nsESFs-yj4h9sjQ,c_t9XDbn-Eqml1O-wC5zJQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Chill)", + "GiftDropId": 715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 715", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Purple)", + "GiftDropId": 716, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 716", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 716, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,67fc9269-8dd8-4d6f-b594-c77e716f2482,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Green)", + "GiftDropId": 717, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 717", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 717, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Black)", + "GiftDropId": 718, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 718", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 718, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,d6823e01-69f0-4f85-b94a-74894356a2cf,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Maroon)", + "GiftDropId": 719, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 719", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 719, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Red)", + "GiftDropId": 720, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 720", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 720, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,XFCpIdeDXUqeYCIgh4fGtg,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Blue)", + "GiftDropId": 721, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 721", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 721, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,oKxmH-1s2EyIDkZoOQSQQw,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Green)", + "GiftDropId": 722, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 722", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 722, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,MxnAq_XOw0uTzQ8IIxqb_Q,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Yellow)", + "GiftDropId": 723, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 723", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 723, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat", + "GiftDropId": 733, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 733", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 733, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,YSnoHFmJDUa_XCK6JMMh2g,VZyHWGKNJEGSxDT2GO3ebA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat (Grey)", + "GiftDropId": 735, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 735", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 735, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Squid Hat", + "GiftDropId": 736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 736", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34f45c5b-fea7-40b4-add7-bc7a37000ab5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Captain Hat ", + "GiftDropId": 737, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 737", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 737, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper", + "GiftDropId": 738, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 738", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 738, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,Jy2TN1KBTEeoVehy_x32Ng,fXnd_COSzUeznwe7P4ZYRg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper (Silver)", + "GiftDropId": 740, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 740", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 740, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat", + "GiftDropId": 741, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 741", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 741, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,ZUMIXcyOpEGiHgslbHQbwA,Uhw5NBQy-EOIiCWiZFiL7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat (Silver)", + "GiftDropId": 743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 743", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sun Hat", + "GiftDropId": 744, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 744", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 744, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown", + "GiftDropId": 745, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 745", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 745, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "00f0b914-aa22-4d14-9af1-996e1af61f4d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Crown", + "GiftDropId": 746, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 746", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 746, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Black, Red)", + "GiftDropId": 747, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 747", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 747, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,DzgN67HoikexE2rTlZLdYQ,vm1ESK9ls0SaxSwHplNALQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (White)", + "GiftDropId": 749, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 749", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 749, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,xeK_acj2hE-sYGhsMRwjhw,HwhHShudGkGjXagJxCN2uA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Patchwork)", + "GiftDropId": 750, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 750", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 750, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Hat", + "GiftDropId": 753, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 753", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 753, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,LEUQnDz-k0m-hY-AX3Z9Sg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Paradise)", + "GiftDropId": 755, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 755", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 755, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,cSFt9MWLj06CDzIzATqrTg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Poppy)", + "GiftDropId": 756, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 756", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 756, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,B6qNcZQ770eJel13RskuIg,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Begonia)", + "GiftDropId": 757, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 757", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 757, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,p3g8YAOhTUKAiE-Wh-X-aA,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Dahlia)", + "GiftDropId": 758, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 758", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 758, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,SqHAYcqBXU2PtF2urWGruQ,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Primrose)", + "GiftDropId": 759, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 759", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 759, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Pu_1I6Zq-0G1HBMHa5MrKg,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Hat (Green)", + "GiftDropId": 760, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 760", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 760, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,aiBfwCNwpUyJ0rYKCMa7qw,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Hat (Yellow)", + "GiftDropId": 762, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 762", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 762, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Hat (Brown)", + "GiftDropId": 763, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 763", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 763, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,CoSVCyrI-0qg-EkqB2R0hg,JO9lJOQSREWbPyDBZH_cyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Hat (Black)", + "GiftDropId": 764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 764", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Hat (Pickup)", + "GiftDropId": 765, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 765", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 765, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,lDXambcP60CeY2C8qeGDFw,uiAwVt3HK0mRVtWp9B-gTg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Hat (Flatbed)", + "GiftDropId": 766, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 766", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 766, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Spirit)", + "GiftDropId": 774, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 774", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 774, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,FNe9LkWJMUeC3frYJMyEaQ,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Harmony)", + "GiftDropId": 775, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 775", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 775, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,mudt-Z5-5USdnIq-xaDgOw,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Joy)", + "GiftDropId": 776, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 776", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 776, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c87239ca-a255-4b13-bbc5-1b38236fb4cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Viking Helmet", + "GiftDropId": 777, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 777", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 777, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Visor", + "GiftDropId": 778, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 778", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 778, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones", + "GiftDropId": 780, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 780", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 780, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,tXhgU1o_wkaNQ-7P3KXidQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Kingfisher)", + "GiftDropId": 789, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 789", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 789, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,nn86ATWxekWdIGlPePPgGQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Vintage)", + "GiftDropId": 790, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 790", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 790, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,oxi26T5a4U6L73pF-Pgrhg,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Grackle)", + "GiftDropId": 792, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 792", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 792, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,6547pqf6vUm2L89AG6D91A,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Raven)", + "GiftDropId": 793, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 793", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 793, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,aBQ3R9boek-mYeSYSNvDbQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Blue)", + "GiftDropId": 809, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 809", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 809, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3KmqVuMQkCYK6sVTMOTOA,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Purple)", + "GiftDropId": 816, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 816", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 816, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (Teal)", + "GiftDropId": 822, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 822", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 822, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,3b2cfc85-4e2a-4e0d-b738-c296ae8692f8,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (Pink)", + "GiftDropId": 823, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 823", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 823, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,78eb0969-f246-4cac-acd6-295df7c092e4,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (White)", + "GiftDropId": 824, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 824", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 824, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,PMa9370LPEig_7pKwCceEQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Green)", + "GiftDropId": 832, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 832", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 832, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Red)", + "GiftDropId": 837, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 837", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 837, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,_VfdBTi7PU276qzsYKayow,qSsEcadcm0-twR1TvVcgYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Pouncing Tiger)", + "GiftDropId": 838, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 838", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 838, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Dtis2HpVzkelZb6M9mW5TQ,iqGv6iRJ-UGbofv8-aHKVA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Green Lightning)", + "GiftDropId": 839, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 839", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 839, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,xNjX_6-aREm0cYZObVLiAg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Blue)", + "GiftDropId": 840, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 840", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 840, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Kcyp8sv0202Puym1Wf86xg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Green)", + "GiftDropId": 841, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 841", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 841, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Green)", + "GiftDropId": 843, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 843", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 843, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,916384ca-e209-42a0-bd64-c64f5a40b56f,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Red)", + "GiftDropId": 844, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 844", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 844, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Blue)", + "GiftDropId": 845, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 845", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 845, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,TLrw3oncCE2MeuVifXSWTg,-_ViYCHHRUip7oN_AnH0Og,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Pouncing Tiger)", + "GiftDropId": 846, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 846", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 846, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,7Jx8mrxoi0aQtZEb03CdRA,-IgxYllxkEyr7V1gosWXUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Green Lightning)", + "GiftDropId": 847, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 847", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 847, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Pride)", + "GiftDropId": 848, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 848", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 848, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,6secgNPvmUyFnI3NC5dIYw,5V_1JEDrRUa1UPKhtrSB2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Victory)", + "GiftDropId": 849, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 849", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 849, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7553d851-1986-4325-870d-e425dfb7d007,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Farmer Beard", + "GiftDropId": 892, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 892", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 892, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b337a35-95d9-4b3a-9891-d9fbb06262aa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Curly Mustache", + "GiftDropId": 894, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 894", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 894, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cfe276b9-1bdf-4c41-9e86-1a0215c6c5a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ascot", + "GiftDropId": 898, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 898", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 898, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Leathered Iron)", + "GiftDropId": 899, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 899", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 899, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,LIgagNf4gk68EYQdlDruxg,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Red)", + "GiftDropId": 901, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": " Debug: 901", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 901, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,6fmUy748hU2dgwgaijSkUA,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Green)", + "GiftDropId": 904, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": " Debug: 904", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 904, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,buuNFd8sK0eap78TL1gMNQ,-UFHTNvJs0CGDStb0PFkbQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Blue)", + "GiftDropId": 905, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": " Debug: 905", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 905, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,SDbpnjVYmEGQneK5fhZ0Cw,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Red)", + "GiftDropId": 907, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 907", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 907, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,uwoWPY4YjEmZSQcNCrx1Gg,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Green)", + "GiftDropId": 910, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 910", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 910, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,COZbkLDc20mdUlWSkqMX-w,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Blue)", + "GiftDropId": 911, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 911", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 911, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Cape", + "GiftDropId": 916, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 916", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 916, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Gold Sequins)", + "GiftDropId": 917, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 917", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 917, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,Wm30oV5BtEuFQZFk3dPK_w,0R3Mh96tS0631EZYs03dmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Red Sequins)", + "GiftDropId": 918, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 918", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 918, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "988e4069-4341-428b-bbf5-023309891385,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Silver Sequins)", + "GiftDropId": 919, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 919", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 919, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Cool Mint)", + "GiftDropId": 920, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 920", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 920, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Monarch)", + "GiftDropId": 922, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 922", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 922, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27c2eb7f-9fac-4c42-90c7-44e7a33d5303,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (The Blue One)", + "GiftDropId": 926, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 926", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 926, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Triton)", + "GiftDropId": 927, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 927", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 927, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,Su7kiW24d0KapNns96JoFQ,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Kraken)", + "GiftDropId": 928, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 928", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 928, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,CahBzgN3D0y46AQsvGC14A,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Leviathan)", + "GiftDropId": 929, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 929", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 929, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "587ca2bb-dd42-42bf-833f-4e2a97349866,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Stethoscope", + "GiftDropId": 931, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 931", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 931, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Wings ", + "GiftDropId": 934, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 934", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 934, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Cape", + "GiftDropId": 936, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 936", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 936, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Grey)", + "GiftDropId": 937, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 937", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 937, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,crl8VlZ59kGxG01noGEWmA,EckOEU0mJkGIVDvYoKBN9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Gilded)", + "GiftDropId": 938, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 938", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 938, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fanny Pack", + "GiftDropId": 939, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 939", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 939, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Felted Shawl", + "GiftDropId": 941, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 941", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 941, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86af3a97-18d8-4dda-a2f2-cfd3b4224254,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Green Sequins)", + "GiftDropId": 945, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 945", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 945, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Tan)", + "GiftDropId": 946, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 946", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 946, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,eV3Nv6SWS0yl3f-fgjPb-w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Denim)", + "GiftDropId": 947, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 947", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 947, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,Lxx3q6JRnUW_cPG_kGG4ag,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (White)", + "GiftDropId": 948, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 948", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 948, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,vek37vRROUKnSJKVP0CH6w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Charcoal)", + "GiftDropId": 949, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 949", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 949, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "affdc9ad-8312-4421-8f56-e35dfdaeb63a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lifeguard Whistle", + "GiftDropId": 953, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 953", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 953, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e307eca-0850-4d85-8cc1-f5c176bfa7e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Scarf", + "GiftDropId": 954, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 954", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 954, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Fuchsia)", + "GiftDropId": 955, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 955", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 955, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,Ot9EG-FfKEauT0u6pSZuWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Teal)", + "GiftDropId": 956, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 956", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 956, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,i3rD_hnQG0a-5f6Ve4AfWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Pink)", + "GiftDropId": 957, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 957", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 957, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,S9uymuvraUCOM8gmB7bnEA,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Dark Blue)", + "GiftDropId": 958, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 958", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 958, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,_uh3kj6hKUyBKOSR3R8dog,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Purple)", + "GiftDropId": 959, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 959", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 959, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,kaRBW1u3dkODGjPMePW6Uw,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Rose)", + "GiftDropId": 960, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 960", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 960, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shell Necklace", + "GiftDropId": 964, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 964", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 964, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e9bbda6-d681-42b1-9cc4-5758acf34bc0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Necklace (Gold)", + "GiftDropId": 965, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 965", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 965, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b95678aa-351a-4929-8a0e-0274a183eb18,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Necklace (Silver)", + "GiftDropId": 966, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 966", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 966, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pearl Necklace (Freshwater)", + "GiftDropId": 968, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 968", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 968, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,sqPMH0LhLkeG-4XkxpU-sw,URWHffwjGUKgXeV01upePA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pearl Necklace (Saltwater)", + "GiftDropId": 969, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 969", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 969, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c673a35-c10f-4a8c-b8e0-96a50fe5b97f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pegasus Wings", + "GiftDropId": 970, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 970", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 970, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Red)", + "GiftDropId": 979, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 979", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 979, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,mqdncbYcuUSGFvFqEU0z4A,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Purple)", + "GiftDropId": 981, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 981", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 981, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,MbusQ9bte0i9zirlxtNkSQ,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Blue)", + "GiftDropId": 982, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 982", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 982, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,_9QlnTPXuEO5OQ3H0CwFkA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Green)", + "GiftDropId": 983, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 983", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 983, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,cKLBS6pbf0SFuavWyeZ7GA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Black)", + "GiftDropId": 984, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 984", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 984, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,DZyW-gOG9U-QLGOMFBhOoA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Pink)", + "GiftDropId": 985, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 985", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 985, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f47f81e7-fcdd-4687-9b99-013147bef30f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Belt Sash", + "GiftDropId": 987, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 987", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 987, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (Orange)", + "GiftDropId": 995, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 995", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 995, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,V_duN2oWaUmmao1xHhzCJA,Uvarm_CwTUWWQYZvzI8OaQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (Blue)", + "GiftDropId": 996, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 996", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 996, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape", + "GiftDropId": 999, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 999", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 999, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,8M72ydR_uUSsli43PH2Eyw,wQxO4xmXCUGeC9ZHfDNGTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape (Raven)", + "GiftDropId": 1001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1001", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho", + "GiftDropId": 1002, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1002", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1002, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,EmTrJKm8cUy8_BHAvP8Meg,kxkqq5UA_kCM6lFsFe3dvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho (Grey)", + "GiftDropId": 1004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1004", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Pauldron", + "GiftDropId": 1006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1006", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,rSzG7s1ocUmx9_VrJLOcHQ,ISycihytUUyoypVb-kXN_Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Pauldron (Silver)", + "GiftDropId": 1007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1007", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Satchel", + "GiftDropId": 1008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1008", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,bH3dgwnwt0KEw8oCDVIcEQ,erPtGSgq_kmqfeSlZWw4VA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Satchel (Silver)", + "GiftDropId": 1009, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1009", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1009, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Gold Sequins)", + "GiftDropId": 1011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1011", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,Wm30oV5BtEuFQZFk3dPK_w,tfiSfpRez0y_R4QjAhO0bQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Red Sequins)", + "GiftDropId": 1012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1012", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0d4e7ebe-efd9-4e68-9900-5645916e7596,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Silver Sequins)", + "GiftDropId": 1013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1013", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Bandolier (Brown)", + "GiftDropId": 1014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1014", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,YTlnBuEjhUG1hSfAs8qwuw,IcR9Z_MxKkS9uh4uFYuFzQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Bandolier (Black)", + "GiftDropId": 1015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1015", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Belt (Brown)", + "GiftDropId": 1016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1016", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,lAjUeUtTLU2-3bG2OXBukg,LFB_YqTym0-tQmUIj-YcYA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Belt (Black)", + "GiftDropId": 1017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1017", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Nightwatch)", + "GiftDropId": 1036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1036", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,pXrZhtzjV02_qvIQoWEFWA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Hearthstone)", + "GiftDropId": 1037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1037", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9231a9c6-7638-4fe9-bd2f-eac6c943009b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Championship Wrestling Belt", + "GiftDropId": 1040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1040", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Black)", + "GiftDropId": 1045, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1045", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1045, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,178c6beb-c737-434c-a53b-d14f438f6a98,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Blue)", + "GiftDropId": 1046, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1046", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1046, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,2913bd93-bf35-4bdf-b83a-d40a10213adc,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Red)", + "GiftDropId": 1047, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1047", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1047, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Purple)", + "GiftDropId": 1053, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1053", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1053, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,b42d903b-b393-4f49-af5e-38d0fb6c42b0,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Blue)", + "GiftDropId": 1054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1054", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,8cab8cc6-9a2d-434c-8b72-e66edbdd223c,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Black)", + "GiftDropId": 1055, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1055", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1055, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,657f28d5-672a-4f27-86c6-3cb00f25bb84,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Red)", + "GiftDropId": 1056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1056", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,w_aK2K9bHEeU6oSQ7BK0qg,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Green)", + "GiftDropId": 1057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1057", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Red)", + "GiftDropId": 1058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1058", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,5b58d879-2bc4-47ed-a996-1af2ace16425,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Green)", + "GiftDropId": 1059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1059", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d320ad9b-ba5c-45ea-b2b8-0d3e409a9db1,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Black)", + "GiftDropId": 1060, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1060", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1060, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d61711fd-589a-4669-b991-9408a58fffd9,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Cream)", + "GiftDropId": 1061, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1061", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1061, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,oJFfs62tR0WVRry2Smt8yA,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Light Blue)", + "GiftDropId": 1062, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1062", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1062, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,MIfCkcrFOEasJqfDmxThdw,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Purple)", + "GiftDropId": 1063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1063", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Red)", + "GiftDropId": 1064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1064", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,1acb1f56-4509-449f-9c6a-065bdeaa9ee3,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Grey)", + "GiftDropId": 1065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1065", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,e98c3f98-7844-4d6e-a21c-05027033c18c,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Yellow)", + "GiftDropId": 1066, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1066", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1066, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c161dc73-6ce3-49c4-8d15-45e6911f84e4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sea Captain Beard", + "GiftDropId": 1067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1067", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White, Red)", + "GiftDropId": 1068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1068", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b9f51861-ad10-4878-a9b1-d849bccf532a,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Red)", + "GiftDropId": 1069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1069", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b5d62931-e756-4a8a-8f3b-760beba49319,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White)", + "GiftDropId": 1070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1070", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,6145292a-9002-41c6-8cd5-43679b6f542f,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Grey)", + "GiftDropId": 1071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1071", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,7c1aaa7e-503b-46ef-b1c5-0c61a75b916e,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Blue)", + "GiftDropId": 1072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1072", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,27af51bc-8226-4911-8d47-22d28ea8e378,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White, Blue)", + "GiftDropId": 1073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1073", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,857fdcd8-704f-43d0-92b9-bca26619b153,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White)", + "GiftDropId": 1074, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1074", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1074, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,3df5d13b-ba77-4b51-90b2-7a946e4d0be7,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, Blue)", + "GiftDropId": 1075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1075", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Black)", + "GiftDropId": 1077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1077", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,BLgkgLeS-EyazgPQxGcavg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (White)", + "GiftDropId": 1078, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1078", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1078, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,eb3SmJTIh0628LrZUkI4KQ,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Pink)", + "GiftDropId": 1080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1080", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,Yr0mF1EWzEaIyRMOWFiY6w,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Red)", + "GiftDropId": 1081, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1081", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1081, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,QzjakcO8tUaPeiI5KBLKtg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Blue)", + "GiftDropId": 1082, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1082", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1082, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Yellow)", + "GiftDropId": 1086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1086", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,i1XbjBqTu0CILIuJClWimA,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Pink)", + "GiftDropId": 1089, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1089", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1089, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Teal)", + "GiftDropId": 1092, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1092", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1092, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,grutFwJD_0Cb3t6fddNg6w,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Red)", + "GiftDropId": 1093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1093", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,EbVDqEJQOk6j0UvX3t-8rQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Blue)", + "GiftDropId": 1094, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1094", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1094, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,C3ll7uPfUkeZ1QLX80_BpQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Yellow)", + "GiftDropId": 1095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1095", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,JS7aa4QSUUOpUYPqRZEb5g,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Orange)", + "GiftDropId": 1096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1096", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Ferret) ", + "GiftDropId": 1101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1101", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,azbt5pgvrUS4LQwhndFeJg,cHZ4lDnSoUypIXCiRRowzg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Axolotl)", + "GiftDropId": 1102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1102", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,6dzz5ZcGtE6bEjQHxWmo0A,2cSC290cPkCOrW5vtlVUxw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Penguin)", + "GiftDropId": 1103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1103", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,yXVeN9SzQUKE_6u_2KPzgw,sWgRczvpUU6ZHeoMrMD_yw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Toucan)", + "GiftDropId": 1104, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1104", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1104, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,61VZkFjB402brzWm4UsftA,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Grey)", + "GiftDropId": 1111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1111", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Brown)", + "GiftDropId": 1115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1115", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,da185fbb-ad2b-4f30-87a2-491f24b78ebb,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Black)", + "GiftDropId": 1116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1116", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,bea795cc-aabd-4229-84dd-49ab4f91a445,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Tan)", + "GiftDropId": 1117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1117", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,2APfqVnnQUaDYKi-fQg8jg,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Red)", + "GiftDropId": 1118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1118", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e48955ae-50e0-4f55-93a1-611150142331,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbarian Tunic", + "GiftDropId": 1119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1119", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Red)", + "GiftDropId": 1120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1120", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,a5925738-a451-4f25-b622-ccbfa12bd88c,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Black)", + "GiftDropId": 1121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1121", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,c64ac7a9-7fd4-4587-8626-0413a190b706,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Green)", + "GiftDropId": 1122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1122", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sarong Swimsuit", + "GiftDropId": 1123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1123", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,1919d319-6cce-4500-8766-15fed6a13fa8,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Gold)", + "GiftDropId": 1126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1126", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,lBe3yxuE40eBmTrnEHBqQQ,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Purple)", + "GiftDropId": 1127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1127", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,oZ8k0Qv3SkG-DkY0_dP7UA,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Teal)", + "GiftDropId": 1128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1128", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Jacket", + "GiftDropId": 1129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1129", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Suit", + "GiftDropId": 1131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1131", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ffa6e06-5200-4e53-ac13-f8491aecc864,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Armor ", + "GiftDropId": 1133, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1133", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1133, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Turkey)", + "GiftDropId": 1134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1134", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,-k9_-2onrEG407or8t1RFw,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Hambone)", + "GiftDropId": 1135, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1135", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1135, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,GDvaUU10-EKh3pKUQ9tnag,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Runway)", + "GiftDropId": 1136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1136", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,kLyM-6otSUy2ql5SEmnF9Q,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Spared)", + "GiftDropId": 1137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1137", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,8xjU4GQ4OkaqGyad-ypwtw,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Red)", + "GiftDropId": 1138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1138", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,032pE8s9Ik-2CImFVDrSqg,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Blue)", + "GiftDropId": 1139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1139", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,M4765UHzsUeNTwH-Pcxp1g,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Green)", + "GiftDropId": 1140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1140", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,ghM-uFq5-0Ci38AOHa9zZA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Deadwood)", + "GiftDropId": 1142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1142", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,Gtq8yRlt1UeFW8U-sc7FiA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Brooklyn)", + "GiftDropId": 1143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1143", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,XrSL-v2MbkK0md-FMOweOA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Sleeper)", + "GiftDropId": 1144, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1144", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1144, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,KqjQ1xRpokGLKp9GVN1EFA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Striker)", + "GiftDropId": 1145, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1145", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1145, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yrQCLXiqRUSwnuQRYX2Rsw,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Lily)", + "GiftDropId": 1146, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1146", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1146, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yZR5aX3gQ0WpRUT6cfK1cA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Split)", + "GiftDropId": 1147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1147", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Blue)", + "GiftDropId": 1149, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1149", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1149, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Red)", + "GiftDropId": 1150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1150", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,rzUd1IMTKUmW0HeMPSIOBQ,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Green)", + "GiftDropId": 1151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1151", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Coat (White)", + "GiftDropId": 1154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1154", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,PR5dh2jf2kqGLO0lXgA69A,VDn1hO6ahky0GDJt5dRmyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Coat (Black)", + "GiftDropId": 1155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1155", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overcoat (Blue)", + "GiftDropId": 1156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1156", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Black)", + "GiftDropId": 1157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1157", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,Chiz8maLoEGDpZOJZEtdQg,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Blue)", + "GiftDropId": 1158, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1158", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1158, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,2axtF2iOGkez1kfRRGUbYw,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Green)", + "GiftDropId": 1159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1159", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6423f23e-dde3-4428-96f5-6091027c92cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Cunning) ", + "GiftDropId": 1167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1167", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Triton)", + "GiftDropId": 1168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1168", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,Su7kiW24d0KapNns96JoFQ,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Kraken)", + "GiftDropId": 1169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1169", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,CahBzgN3D0y46AQsvGC14A,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Leviathan)", + "GiftDropId": 1170, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1170", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1170, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27e742bf-3081-4274-ba70-301f0edeb4f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Coat", + "GiftDropId": 1172, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1172", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1172, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Red)", + "GiftDropId": 1176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1176", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,fe5288bc-0e02-4ea3-b17d-dee0e576979d,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Green)", + "GiftDropId": 1177, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1177", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1177, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,82de1ca3-67d6-454d-84fb-0eeece71fcbc,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Orange)", + "GiftDropId": 1178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1178", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,54d3c589-30ba-44c1-a77c-8f9e16eb0b20,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Yellow)", + "GiftDropId": 1179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1179", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Armor", + "GiftDropId": 1186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1186", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Zzz)", + "GiftDropId": 1187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1187", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,uDJ5ZqU1f0CiOAH8WY22Yw,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Dozy)", + "GiftDropId": 1188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1188", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,j66We9SYr0SNQ2ufZqIqhA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Sandman)", + "GiftDropId": 1189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1189", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,_jkPDSXFUkSU_yOfutQ7BA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Zonked)", + "GiftDropId": 1190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1190", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Green)", + "GiftDropId": 1192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1192", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,cea53c7f-24a9-4e3b-80b9-fbf95738f973,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Orange)", + "GiftDropId": 1193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1193", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Blue)", + "GiftDropId": 1194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1194", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,8c74ee27-3d56-401b-8a8c-7868a80770e8,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Black)", + "GiftDropId": 1195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1195", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Shirt", + "GiftDropId": 1196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1196", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Skirt", + "GiftDropId": 1197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1197", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Silver)", + "GiftDropId": 1198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1198", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,565c17e0-496d-45bd-a2c3-564e118c06cc,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Black)", + "GiftDropId": 1199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1199", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Gold)", + "GiftDropId": 1200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1200", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e042433a-40a2-4758-8074-3b9d407835ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Romper (Pink)", + "GiftDropId": 1202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1202", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5362d685-fc55-4b43-85a5-cc3d6cad3f69,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Galaxy)", + "GiftDropId": 1203, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1203", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1203, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gathered Shirt (White)", + "GiftDropId": 1204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1204", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,sX0ZZDcCUkyFSJISfvq0vg,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Orange)", + "GiftDropId": 1214, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1214", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1214, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,RfZNDPUok0WyQEa3Ko08ow,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Blue)", + "GiftDropId": 1217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1217", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Black)", + "GiftDropId": 1220, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1220", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1220, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,mvMeyStxGUGlNLSYNeSubQ,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Purple)", + "GiftDropId": 1221, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1221", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1221, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,u_Gzj9Nro0WS48xKnH9few,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Blue)", + "GiftDropId": 1222, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1222", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1222, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,JTgXKeT7w0K2Mw4Jk2HCqg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Grey)", + "GiftDropId": 1223, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1223", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1223, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,rNhOQoP3XkOBHV28ze2NpA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Orange)", + "GiftDropId": 1224, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1224", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1224, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,TEgugZRs80iJbhL87RdYwg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Pink)", + "GiftDropId": 1225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1225", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,ytmSzjhCr0Sm58MSNbwJUA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Green)", + "GiftDropId": 1226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1226", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,yM5xRrd9OkmDGyQddwOP6g,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Red)", + "GiftDropId": 1227, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1227", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1227, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LuYelZY8NkqmOp1pnxPXBg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Yellow)", + "GiftDropId": 1229, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1229", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1229, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (White)", + "GiftDropId": 1242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1242", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,4oywwjb3-kifr-um9x87Pw,11ZEZTFhy0ONpoXb3kiewQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Suspicious Goblin Shirt", + "GiftDropId": 1243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1243", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,i4Zu9uZuWkWwm8IVGZwkbA,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (Orange)", + "GiftDropId": 1244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1244", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,HQOKcDCvVUCItkAKo2ygGg,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (Blue)", + "GiftDropId": 1245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1245", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Mastermind)", + "GiftDropId": 1247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1247", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,YB7kXMyLJ0mF_5WidhmH8A,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Spy)", + "GiftDropId": 1248, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1248", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1248, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,bQyNgFWAe0SPttPri6hxyg,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Rogue)", + "GiftDropId": 1249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1249", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,wRPoHTsXFESK5pjkxVMqGA,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Outlaw)", + "GiftDropId": 1250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1250", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "85e03c16-4288-45f4-a579-c911437d27d4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoodie Jacket", + "GiftDropId": 1251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1251", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Orange)", + "GiftDropId": 1263, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1263", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1263, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Red)", + "GiftDropId": 1264, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1264", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1264, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Blue)", + "GiftDropId": 1265, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1265", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1265, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Pink)", + "GiftDropId": 1266, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1266", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1266, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Green)", + "GiftDropId": 1267, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1267", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1267, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,d2b40639-5d34-45b6-904e-6dd29030ff44,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Yellow)", + "GiftDropId": 1268, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1268", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1268, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,724c79a3-822c-422f-9462-a5374ee0211c,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (White)", + "GiftDropId": 1269, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1269", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1269, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,c72911d0-453f-4732-b1bd-dad520220a06,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Purple)", + "GiftDropId": 1270, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1270", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1270, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,90bc2d31-1715-4d1a-813a-7c57e66cb017,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Teal)", + "GiftDropId": 1271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1271", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Black)", + "GiftDropId": 1272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1272", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,PMa9370LPEig_7pKwCceEQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Green)", + "GiftDropId": 1279, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1279", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1279, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Shirt (Purple)", + "GiftDropId": 1280, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1280", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1280, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,e3454bc7-c88d-4958-8b81-db3fe5472a1e,da36bbcc-2a9a-4ba2-9e4a-6f52c9b1ef74,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Shirt (Pink)", + "GiftDropId": 1281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1281", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Blue)", + "GiftDropId": 1286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1286", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,apSQiQ1eO0mEzRsbugeu9w,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Green)", + "GiftDropId": 1287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1287", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,VpqHNpPiY0CfRJEjRRM-mw,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Red)", + "GiftDropId": 1288, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1288", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1288, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,Z1F9rjKqCE-Hd2-Ip5g3gA,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Black)", + "GiftDropId": 1289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1289", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,iufpnteVCEiiZu_m-yPovQ,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Purple)", + "GiftDropId": 1290, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1290", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1290, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23944856-b567-4075-815f-261cb4655cff,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Jacket", + "GiftDropId": 1294, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1294", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1294, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Blue)", + "GiftDropId": 1295, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1295", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1295, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,VQjkyb5aoEKHKo_eZsq9ug,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Teal)", + "GiftDropId": 1296, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1296", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1296, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,kTP3xKhzBkuQF3SqvmYFKA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Green)", + "GiftDropId": 1297, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1297", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1297, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,hYu9itGe1Ee5Neanhj9VtQ,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Orange)", + "GiftDropId": 1298, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1298", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1298, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,FE7_gQNBt0CXzMN6di5HWA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Red)", + "GiftDropId": 1299, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1299", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1299, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,dYPaOkwy3EGAfvl8RyN4pw,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Pink)", + "GiftDropId": 1300, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1300", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1300, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Red)", + "GiftDropId": 1302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1302", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,kkvNbVRjcEKtChpy3W1bqQ,nbhzQy_Hdkeohh4S1IezwA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Black)", + "GiftDropId": 1303, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1303", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1303, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,GVoh3mdWf0WNA9lfqL1GEw,w9qG5gHlAUqh8f9ZgnezsQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Blue)", + "GiftDropId": 1304, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1304", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1304, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,x4PPvuhg6USE6GSFgZZnCg,w9qG5gHlAUqh8f9ZgnezsQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Green)", + "GiftDropId": 1305, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1305", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1305, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Trench Coat", + "GiftDropId": 1306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1306", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1306, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Pinstripe)", + "GiftDropId": 1307, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1307", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1307, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,531b4297-b38b-4362-9854-4f2139ea43be,33ee376a-586e-4aff-a7e4-4213445a3e92,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Herringbone)", + "GiftDropId": 1308, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1308", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1308, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,newGzX_zA0eGUX3Iayq5Ag,6Jv4AJGBYUGP_n4sDcz2Kw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Purple)", + "GiftDropId": 1311, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1311", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1311, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Da Bomb)", + "GiftDropId": 1313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1313", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,ulOBBvFEJ0ioFA1qmL390A,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Aiight)", + "GiftDropId": 1314, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1314", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1314, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,V4CVhCB8eU-nrfYgticVOA,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Booyah)", + "GiftDropId": 1315, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1315", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1315, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Black)", + "GiftDropId": 1317, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1317", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1317, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,fvoaMN4M10WS6jiA6XlOJQ,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Blue)", + "GiftDropId": 1318, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1318", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1318, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,PwsLxCnzOkSW-RGz3tNb1w,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Tan)", + "GiftDropId": 1319, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1319", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1319, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,uiBklotTUEqRI2F67vyJyA,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Purple)", + "GiftDropId": 1320, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1320", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1320, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,jXBi28cRV0CEQgKIrpD0_A,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Red)", + "GiftDropId": 1321, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1321", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1321, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poodle Skirt", + "GiftDropId": 1337, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1337", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1337, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Jacket", + "GiftDropId": 1338, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1338", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1338, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Red)", + "GiftDropId": 1340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1340", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,4169bfed-8403-4590-a29d-4941275ac0b6,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Pink)", + "GiftDropId": 1341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1341", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,0724b166-9ace-46ff-a191-b13f135b00a8,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Blue)", + "GiftDropId": 1342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1342", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Black)", + "GiftDropId": 1344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1344", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,QBglgj80zkuvUkk55Y5Feg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Green)", + "GiftDropId": 1345, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1345", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1345, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,-HYrY2A5Tk2UWMi4_hmYbg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Orange)", + "GiftDropId": 1346, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1346", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1346, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,IjRMopsYlUqSE6327I9TIQ,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Purple)", + "GiftDropId": 1347, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1347", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1347, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Puffer Vest ", + "GiftDropId": 1348, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1348", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1348, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Yellow)", + "GiftDropId": 1350, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1350", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1350, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,GH9q8_0O9EqjGdz7lGWD2g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Blue)", + "GiftDropId": 1351, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1351", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1351, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,M-N9vQt0CEefqgmeLp3l4g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Green)", + "GiftDropId": 1352, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1352", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1352, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,q_HcScqHgEG-x70g1wtfLA,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Red)", + "GiftDropId": 1353, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1353", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1353, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,b415fe60-3e9d-4f4d-a53a-ca15eac6af7d,d21e1b6f-9c9e-42b4-bad5-201ec43161e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Uniform (Green)", + "GiftDropId": 1356, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1356", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1356, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Blue)", + "GiftDropId": 1357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1357", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,0ps19D7b_U2iejdKQFORyA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Red)", + "GiftDropId": 1358, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1358", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1358, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,t1MeoroFOUioYmPfT9mCeA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Green)", + "GiftDropId": 1359, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1359", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1359, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,pjkTGVHkIE-BzCVi1KAesQ,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Black)", + "GiftDropId": 1360, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1360", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1360, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Blue)", + "GiftDropId": 1362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1362", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,5TJPDmvEBEOkP82ZWLFqtg,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Red)", + "GiftDropId": 1363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1363", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,rCeRk8Pdl0W5M47JAQPhpw,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Green)", + "GiftDropId": 1364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1364", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,s2kCppLsN0uY7Hy6qjQc-g,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Black)", + "GiftDropId": 1366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1366", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Shirt (Tan)", + "GiftDropId": 1367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1367", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,84c016ad-133f-45e3-a412-cac35612540b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Shirt (Green)", + "GiftDropId": 1368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1368", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (Orange)", + "GiftDropId": 1382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1382", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,VqtOYBiKRkaSW4xAlBxQgg,xTqtLPQVyEKjAQZYl6HGow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (Blue)", + "GiftDropId": 1383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1383", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Tan)", + "GiftDropId": 1387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1387", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,Z1Ib9r_fkUqgoZk0uid_Xw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Black)", + "GiftDropId": 1388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1388", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,msOFHoFN9UORkeXXtdqBsw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Grey)", + "GiftDropId": 1389, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1389", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1389, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Summit)", + "GiftDropId": 1395, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1395", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1395, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,fXNkMWFMV0aXalK_y_8SHw,HQQWccdyakaEmntPhvC6CQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Chill)", + "GiftDropId": 1396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1396", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Blue)", + "GiftDropId": 1397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1397", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, White)", + "GiftDropId": 1398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1398", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Black)", + "GiftDropId": 1399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1399", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Green)", + "GiftDropId": 1400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1400", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,4Eck_dNL1UKlIZWsA1YppQ,WeyKw_WS70Cx3NZdOaxGeA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Grey)", + "GiftDropId": 1401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1401", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "rJ9zPPGdlk2i24sxLfkqng,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lifeguard Uniform", + "GiftDropId": 1409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1409", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Red)", + "GiftDropId": 1412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1412", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,XFCpIdeDXUqeYCIgh4fGtg,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Blue)", + "GiftDropId": 1413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1413", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,oKxmH-1s2EyIDkZoOQSQQw,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Green)", + "GiftDropId": 1414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1414", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,MxnAq_XOw0uTzQ8IIxqb_Q,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Yellow)", + "GiftDropId": 1415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1415", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest", + "GiftDropId": 1423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1423", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,cbn6vE0gDUOuklVhJv1vNA,Ru4HN3stVUutQ9rUh7ro1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest (Grey)", + "GiftDropId": 1425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1425", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e29d044e-79fb-4280-bca9-aa1e1257e968,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Speed)", + "GiftDropId": 1426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1426", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest", + "GiftDropId": 1427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1427", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,gy-xeYKKREaBlx9fUmuW2w,C8gCmBZ8RUG83vvDw_UYew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest (Silver)", + "GiftDropId": 1429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1429", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset", + "GiftDropId": 1430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1430", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,rsUfUnTwbU6zrjrHWps1yA,GJRG8sCM7kSGfUd9gLwpgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset (Silver)", + "GiftDropId": 1432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1432", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25769d1f-4ecb-4d92-b692-322b38c013b5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Strength) ", + "GiftDropId": 1433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1433", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor", + "GiftDropId": 1434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1434", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poindexter Shirt (White)", + "GiftDropId": 1435, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1435", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1435, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,lq59KZwElEStrviDEQLLcA,olyS074RHU-ojE0GzBBYJw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poindexter Shirt (Black)", + "GiftDropId": 1436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1436", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shirt", + "GiftDropId": 1444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1444", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,NKf5-r2S_0iP0SaO9bjvaw,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Paradise)", + "GiftDropId": 1446, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1446", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1446, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,adJVA26PyUSVvmZgxkCAmQ,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Poppy)", + "GiftDropId": 1447, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1447", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1447, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,4ijeE3LqUUuSplKrMto6Kg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Begonia)", + "GiftDropId": 1448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1448", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,d27e5m1BLUWI42Pxnj6F4A,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Dahlia)", + "GiftDropId": 1449, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1449", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1449, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,RZFWcTzxPkOfUuTIQ1mzkg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Primrose)", + "GiftDropId": 1450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1450", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,XT_txjZfIUOT400UPHLaRA,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Shirt (Green)", + "GiftDropId": 1451, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1451", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1451, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,gwdtq3NiEEmMKYtn1VPoiw,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shirt (Yellow)", + "GiftDropId": 1453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1453", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Tan)", + "GiftDropId": 1454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1454", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,H0sqS2_VPEieVrHSyMNo7g,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Black)", + "GiftDropId": 1455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1455", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Tan)", + "GiftDropId": 1458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1458", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,3qu7mxSNpkKRrYMhsWHVGg,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Black)", + "GiftDropId": 1459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1459", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,Ij8MXrl1Okip4M7y-gF23Q,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Red)", + "GiftDropId": 1460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1460", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,qEojxjSXm06CX52hRDJAew,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (White)", + "GiftDropId": 1461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1461", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Blue)", + "GiftDropId": 1462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1462", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (White)", + "GiftDropId": 1463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1463", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Black)", + "GiftDropId": 1464, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1464", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1464, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,o2WfRyjJy0CKoUg8YIxNjQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Tan)", + "GiftDropId": 1465, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1465", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1465, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Green)", + "GiftDropId": 1466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1466", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,sscD2O3LEUOAKkqjGpGe8g,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Orange)", + "GiftDropId": 1467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1467", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,hRxyLsKfsESFAsXAyZQjoA,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Blue)", + "GiftDropId": 1468, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1468", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1468, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,kgCKjtSjFEmFq9ez2llxKQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Green)", + "GiftDropId": 1469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1469", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,KaZqNx5VKkarRrOJcTuD9A,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Red)", + "GiftDropId": 1470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1470", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,eOJkmpSL4EypK-AQz7j8gQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Black)\t", + "GiftDropId": 1471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1471", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Black)", + "GiftDropId": 1477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1477", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,9b9t8_aKH0-gQXMhZycaOA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Orange)", + "GiftDropId": 1478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1478", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Zz4XatKfUEapReRAQHxKKA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (White)", + "GiftDropId": 1479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1479", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Jt0QqNrAp0qzUR_RQoivVg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Green)", + "GiftDropId": 1480, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1480", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1480, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,lBePHNL9LkyaAjEFyFE8Sw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Red)", + "GiftDropId": 1481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1481", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G4HIPUjekUigiU0-Kr9mdA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Yellow)", + "GiftDropId": 1482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1482", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,5mcp7-2ZEE6n3-zN3_CoWw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Purple)", + "GiftDropId": 1483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1483", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,R0UCacpdhUS906Xf7l142A,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Teal)", + "GiftDropId": 1484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1484", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G-VKgepBkkeATcwCaS6Rwg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Grey)", + "GiftDropId": 1485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1485", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,1LonkCbt4kykeAScYKpwyg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Navy)", + "GiftDropId": 1486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1486", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,IXWd396grEOWHt32L7fCpQ,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Blue)", + "GiftDropId": 1487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1487", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Black)", + "GiftDropId": 1499, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1499", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1499, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,ffHKr5EcIU24PbAtWSnalw,bVrkIyADCUiGNYWdmP_HPw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Red)", + "GiftDropId": 1500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1500", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,m4W5D0Oa9kaWa-8I96YYzA,WF_fg80f30qvHit0vGBwCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Green)", + "GiftDropId": 1501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1501", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Donut Dreams)", + "GiftDropId": 1502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1502", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,nu_UGtkJOUK-5MWaW83MUg,pgBFpOtl00K2zsTJcfrefQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Watermelon Rain)", + "GiftDropId": 1503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1503", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,sJioq5ARDUyMHFji_6OxFw,bjXO36Nu6EWD2dU1UC4Uwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Pina Colada)", + "GiftDropId": 1504, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1504", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1504, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,56qchovVVEaVwL9S52kneA,BAjMoTHbD0mSCjoG9jmzjA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Sour Popsicle)", + "GiftDropId": 1505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1505", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,zJMD-_HR80WCAUqYGe7_NA,rAzhaLh1nEWMd9v1D-HWcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Lonely Island)", + "GiftDropId": 1506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1506", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,9P8ARRUYdk6hCoGMKhix4w,o__JORNtYEiJEyyoBIimPA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Pink Flamingo)", + "GiftDropId": 1507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1507", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 850, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,aBQ3R9boek-mYeSYSNvDbQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Blue)", + "GiftDropId": 1524, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1524", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1524, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3KmqVuMQkCYK6sVTMOTOA,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Purple)", + "GiftDropId": 1531, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1531", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1531, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Towel Cape", + "GiftDropId": 1533, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1533", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1533, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f6a7dee-0b44-4138-b3a7-a079dbc63e83,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Monkey Backpack", + "GiftDropId": 1535, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1535", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1535, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Striped, Red)", + "GiftDropId": 1539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1539", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, Red)", + "GiftDropId": 1540, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1540", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1540, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, Blue)", + "GiftDropId": 1541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1541", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, White)", + "GiftDropId": 1542, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1542", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1542, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, Red)", + "GiftDropId": 1543, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1543", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1543, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, Blue)", + "GiftDropId": 1544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1544", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, White)", + "GiftDropId": 1545, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1545", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1545, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Yellow)", + "GiftDropId": 1546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1546", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,026ca50e-3a81-43cf-87f5-950687b7bbdd,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Pink)", + "GiftDropId": 1547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1547", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,6584dada-499e-4d7c-958d-466955b20640,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Blue)", + "GiftDropId": 1548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1548", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,uUOO-k5KS0mU7B5BLaOpnA,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Black)", + "GiftDropId": 1549, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1549", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1549, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,Ijf-j7EgEkGYOKo9SQNLRw,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Red)", + "GiftDropId": 1550, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1550", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1550, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Teal)", + "GiftDropId": 1551, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1551", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1551, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,HncURj5yi0ykk2cVyCZ4Sw,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Red)", + "GiftDropId": 1552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1552", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,42ZNGHXMvU29yo9s9tVpOQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Blue)", + "GiftDropId": 1553, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1553", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1553, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,VDo682NvSUa8xYn8zTX-AQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Yellow)", + "GiftDropId": 1554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1554", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,FvEjo9let0e_Sr-kWq5AvQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Orange)", + "GiftDropId": 1555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1555", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,8hUBfmq28EixYjv92Xcrgg,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Grey)", + "GiftDropId": 1562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1562", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Gloves (White)", + "GiftDropId": 1563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1563", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,y_gTbnuYS0GKJmnCs2retw,hjk9OO8CW0KNGR7A6_p84A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Gloves (Orange)", + "GiftDropId": 1564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1564", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Brown)", + "GiftDropId": 1565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1565", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,97bbb384-b37e-4ea1-902c-88fbd6854ab5,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Black)", + "GiftDropId": 1566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1566", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7fb8496f-0e6c-4e48-b8fa-5709ebbf4820,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Tan)", + "GiftDropId": 1567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1567", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7nRz9Jmnn066_PzngkhfFA,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Red)", + "GiftDropId": 1568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1568", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Wrist (White)", + "GiftDropId": 1569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1569", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,bb01b51e-a95f-441e-8c52-abc3aeed7145,f7c7d05f-5454-445a-af38-25f110bd204a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Wrist (Black)", + "GiftDropId": 1570, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1570", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1570, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,1919d319-6cce-4500-8766-15fed6a13fa8,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Gold)", + "GiftDropId": 1572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1572", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,lBe3yxuE40eBmTrnEHBqQQ,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Purple)", + "GiftDropId": 1573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1573", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,oZ8k0Qv3SkG-DkY0_dP7UA,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Teal)", + "GiftDropId": 1574, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1574", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1574, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Blue)", + "GiftDropId": 1575, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1575", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1575, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Yellow)", + "GiftDropId": 1576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1576", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,XNq4Cns4lEGydtktdsXlmQ,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Navy)", + "GiftDropId": 1577, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1577", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1577, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,83522c12-9549-4d74-8c87-bae210bcd2bf,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Black)", + "GiftDropId": 1578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1578", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4e42e02e-33fd-4ff9-b74e-9bde26253c35,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Wrist", + "GiftDropId": 1580, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1580", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1580, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ddd2c2b-596c-4022-a488-655b0db1c265,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Glove", + "GiftDropId": 1581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1581", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Blue)", + "GiftDropId": 1582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1582", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Red)", + "GiftDropId": 1583, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1583", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1583, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,rzUd1IMTKUmW0HeMPSIOBQ,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Green)", + "GiftDropId": 1584, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 1584", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1584, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Black)", + "GiftDropId": 1585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1585", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,5Dbc8qCaY0OXEuwykM4naA,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Blue)", + "GiftDropId": 1586, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1586", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1586, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,HBt3ToOkUUereoPKwyvzuw,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Green)", + "GiftDropId": 1587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1587", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Brown)", + "GiftDropId": 1593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1593", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,17e44296-1cd9-4f8e-9aa7-3837dc69279a,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Cherry)", + "GiftDropId": 1594, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1594", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1594, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c4ebfd1a-fcda-4b98-a151-a941b1801867,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1002, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Black, Gold)", + "GiftDropId": 1595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1595", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c0c33a35-494c-4a1a-aa53-d27d9b9ef5a4,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 1002, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Yellow)", + "GiftDropId": 1596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1596", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 400, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wat8f6fs80KptZbW39e8tA,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (White)", + "GiftDropId": 1597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1597", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wkqKPZmnoU-8TXSWzi2-Ow,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Black, Silver)", + "GiftDropId": 1598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1598", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Triton)", + "GiftDropId": 1599, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1599", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1599, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,Su7kiW24d0KapNns96JoFQ,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Kraken)", + "GiftDropId": 1600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1600", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,CahBzgN3D0y46AQsvGC14A,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Leviathan)", + "GiftDropId": 1601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1601", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Red)", + "GiftDropId": 1602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1602", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,fe5288bc-0e02-4ea3-b17d-dee0e576979d,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Green)", + "GiftDropId": 1603, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1603", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1603, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,b444ed0a-eab5-4bd6-af34-d080de74a149,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Orange)", + "GiftDropId": 1604, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1604", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1604, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,8053b5e5-0f67-4329-a45d-1ee9fc830820,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Yellow)", + "GiftDropId": 1605, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1605", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1605, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Bracer", + "GiftDropId": 1607, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1607", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1607, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (White)", + "GiftDropId": 1608, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1608", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1608, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,18b52db5-0261-46a0-9214-ff510d455ed9,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Orange)", + "GiftDropId": 1609, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1609", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1609, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,55b4e661-43e1-4708-82d5-2dd2bebd4f45,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Blue)", + "GiftDropId": 1610, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1610", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1610, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,8c74ee27-3d56-401b-8a8c-7868a80770e8,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Black)", + "GiftDropId": 1611, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1611", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1611, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Black)", + "GiftDropId": 1612, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1612", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1612, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,30c61e63-5e09-4a6f-8915-1e1fe4d55cf0,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Silver)", + "GiftDropId": 1613, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1613", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1613, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,2cf2b644-3fa6-449c-9fe8-d0ab917f3106,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Gold)", + "GiftDropId": 1614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1614", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,90qQe0AR3kOou0MsuoTmPA,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Blue)", + "GiftDropId": 1620, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1620", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1620, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,hZKPr4sg10SRj9DLuEgOrw,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Black)", + "GiftDropId": 1621, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1621", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1621, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,x3Q0vVeG_E6juqGM1o0SOQ,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (White)", + "GiftDropId": 1622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1622", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 550, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,sX0ZZDcCUkyFSJISfvq0vg,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Green)", + "GiftDropId": 1624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1624", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,RfZNDPUok0WyQEa3Ko08ow,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Pink)", + "GiftDropId": 1627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1627", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 450, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Mastermind)", + "GiftDropId": 1630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1630", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,DtFYrQwaCky5C1ZycqZbiQ,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Spy)", + "GiftDropId": 1631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1631", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,9SAPupKy_EO6YeG0SMkI5A,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Rogue)", + "GiftDropId": 1632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1632", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1632, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,hiMYlmk5sEqh-sElOY3A9g,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Outlaw)", + "GiftDropId": 1633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1633", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1633, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,PMa9370LPEig_7pKwCceEQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Green)", + "GiftDropId": 1640, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1640", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1640, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Blue)", + "GiftDropId": 1645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1645", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,UUyjVU4mvECPhI9xTMYR1Q,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Green)", + "GiftDropId": 1646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1646", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,HWc25-d8dUmNN2F3n8mV5A,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Red)", + "GiftDropId": 1647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1647", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,Y0e7o0_BKUm7XJSLediN5w,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Black)", + "GiftDropId": 1648, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1648", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1648, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,MS7EPNLJEEyMLC6_yHQYtA,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Purple)", + "GiftDropId": 1649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1649", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fed823a-22bb-4225-bdc4-491da6eba875,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Gloves", + "GiftDropId": 1650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1650", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Blue)", + "GiftDropId": 1651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1651", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,zaSTWOUy_k6cnoVVYzypWg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Teal)", + "GiftDropId": 1652, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1652", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1652, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,1FcyrVGyGEC9dmOq_51nFQ,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Green)", + "GiftDropId": 1653, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1653", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1653, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,xpkEQ6yjhU-WfFPSjvPdHg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Orange)", + "GiftDropId": 1654, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1654", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1654, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,N9CBuYaMtUOrCks5UcOycg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Red)", + "GiftDropId": 1655, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1655", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1655, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,LDjFJtM-WkeYhtwA7cyDOg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Pink)", + "GiftDropId": 1656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1656", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Pinstripe)", + "GiftDropId": 1657, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1657", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1657, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,531b4297-b38b-4362-9854-4f2139ea43be,c2a9c007-2748-4fa2-ab9b-0081eef792f1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Herringbone)", + "GiftDropId": 1658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1658", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,newGzX_zA0eGUX3Iayq5Ag,QBzMp7MdAUOLIofvddui1A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Purple)", + "GiftDropId": 1660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1660", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 300, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Gloves", + "GiftDropId": 1662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1662", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Black)", + "GiftDropId": 1668, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1668", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1668, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,a6796264-9c7e-4605-830c-06db8d0dc780,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Blue)", + "GiftDropId": 1669, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1669", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1669, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,f3b2330a-b981-4c7e-902f-1f57382f2388,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Pink)", + "GiftDropId": 1670, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1670", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1670, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,baffdefe-de21-4551-9330-b50873965bdd,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Red)", + "GiftDropId": 1671, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1671", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1671, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 21, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robot Gauntlets", + "GiftDropId": 1673, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": true, + "Tooltip": " Debug: 1673", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1673, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Gloves (Tan)", + "GiftDropId": 1674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1674", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,fa9a3d8e-16c9-4a7e-9166-3226e0d13c39,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Gloves (Green)", + "GiftDropId": 1675, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1675", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1675, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Cuff", + "GiftDropId": 1706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1706", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,64Hvmzrb3Uu9X_dCA3M3Jw,rPpYm5fIzky4vqVB26guAw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Cuff (Silver)", + "GiftDropId": 1707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1707", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Bracer ", + "GiftDropId": 1708, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 1708", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1708, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Blue)", + "GiftDropId": 1711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1711", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,yA0KhVg19kWqG1UkyxQogQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (White)", + "GiftDropId": 1712, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1712", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1712, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,P9bBSL0YLEyjN8PxMfgbKQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Black)", + "GiftDropId": 1713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1713", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,o2WfRyjJy0CKoUg8YIxNjQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Tan)", + "GiftDropId": 1714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1714", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,bgRKH1wfqkWVHcuSnFYnlQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Green)", + "GiftDropId": 1715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1715", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,aBQ3R9boek-mYeSYSNvDbQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Blue)", + "GiftDropId": 1736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1736", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3KmqVuMQkCYK6sVTMOTOA,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Purple)", + "GiftDropId": 1743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 1743", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 900, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,j367nSYyg06rOMZ1GmfmFA,FS7kgc4DpkKuar24J9dW8g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Plaid)", + "GiftDropId": 1767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1767", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,2qYs9IkE90eppx1DggNlsA,6Y43EyTpiEejGp0ODWTSjA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Moons & Stars)", + "GiftDropId": 1768, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1768", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1768, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,JV60jZGerUWuzQ2rRnwquQ,gSb8iLTEZ0mi3g5-jZXifQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Polka Dot)", + "GiftDropId": 1769, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": " Debug: 1769", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1769, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "19ef59c7-f74b-4c63-935a-1d4b1abd8518", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Coop)", + "GiftDropId": 1950, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc Coop Debug: 1950", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1950, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "2b70a76e-6f48-402e-90ff-40b06aa23eb8", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Coach Select)", + "GiftDropId": 1951, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc CoachSelect Debug: 1951", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1951, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "9d2a3618-12b3-4ca0-be59-ed15d7926d77", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Laser)", + "GiftDropId": 1952, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc Laser Debug: 1952", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1952, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "7877964e-3a2b-4818-8513-0e26a707bd7c", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Clear)", + "GiftDropId": 1953, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc Clear Debug: 1953", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1953, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "bd3f6aa5-c6e0-4e06-901d-1176accf1003", + "EquipmentPrefabName": "[DiscGolfDisc]", + "FriendlyName": "Disc Skin (Wood)", + "GiftDropId": 1954, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DiscGolfDisc Wood Debug: 1954", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1954, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "33c84c50-7c2e-4a80-ad06-79c4f20f829e", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Wood)", + "GiftDropId": 1957, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Wood Debug: 1957", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1957, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "7ef5d1d9-24db-428c-85e0-107c1bfcc026", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Orange)", + "GiftDropId": 1958, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Orange Debug: 1958", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1958, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "4aff20ee-0b20-434b-a030-d3e1764fe4e7", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Purple)", + "GiftDropId": 1959, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Purple Debug: 1959", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1959, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "36751c4a-86a9-40e1-bef2-84f962ab678d", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Vitton)", + "GiftDropId": 1960, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Vitton Debug: 1960", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1960, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ec5ef0f3-c072-45ec-bb8f-3781fb16e067", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Plaid)", + "GiftDropId": 1961, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Plaid Debug: 1961", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1961, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "b8d5612b-2c6f-46d6-9412-decddac7d4c1", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Pirate)", + "GiftDropId": 1962, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Pirate Debug: 1962", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1962, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Dg9PFcg-JUia72PnYJqkQg", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Caution)", + "GiftDropId": 1963, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Caution Debug: 1963", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1963, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "z0Xw8_BUZUODrGHSZcLHHQ", + "EquipmentPrefabName": "[PaintballGun]", + "FriendlyName": "Paintball Pistol Skin (Roses)", + "GiftDropId": 1964, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGun Valentines Debug: 1964", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1964, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "61e49c13-b414-425f-8e8b-bdcf3d12a5bf", + "EquipmentPrefabName": "[PaintballShotgun]", + "FriendlyName": "Paintball Shotgun Skin (Wood)", + "GiftDropId": 1965, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShotgun Wood Debug: 1965", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1965, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f27af5d7-c741-4457-8c98-8e8791f1a41c", + "EquipmentPrefabName": "[PaintballShotgun]", + "FriendlyName": "Paintball Shotgun Skin (Plaid)", + "GiftDropId": 1966, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShotgun Plaid Debug: 1966", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1966, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ZMAx_-B_7kWy6-TLXx8g6Q", + "EquipmentPrefabName": "[PaintballShotgun]", + "FriendlyName": "Paintball Shotgun Skin (Watermelon)", + "GiftDropId": 1968, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShotgun Watermeon Debug: 1968", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1968, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "CwIBKjm3G0-xUGt_9Gf7UQ", + "EquipmentPrefabName": "[PaintballShotgun]", + "FriendlyName": "Paintball Shotgun Skin (Caution)", + "GiftDropId": 1969, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShotgun Caution Debug: 1969", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1969, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "5dcf8a2e-6fa6-4007-ac1e-73dd53c4c247", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Purple)", + "GiftDropId": 1970, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "Basketball Purple Debug: 1970", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1970, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e6899422-ab2f-4bd9-8e98-aef950ec27b6", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Blue)", + "GiftDropId": 1971, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "Basketball Blue Debug: 1971", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1971, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d6d22997-fe39-4ffa-b1b3-4955368c829a", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Vitton)", + "GiftDropId": 1972, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Basketball Vitton Debug: 1972", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1972, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "56582acf-c7a0-4aff-b3aa-2fdea4d254a3", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Pride)", + "GiftDropId": 1973, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Basketball Rainbow Debug: 1973", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1973, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "56c9a6db-0f54-482c-aba9-e265f899771d", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Coach Select)", + "GiftDropId": 1974, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Basketball CoachSelect Debug: 1974", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1974, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "WOWwmg7jg0mH2g4LJUp6fA", + "EquipmentPrefabName": "[Basketball]", + "FriendlyName": "Basketball Skin (Cozy)", + "GiftDropId": 1975, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Basketball Cozy Debug: 1975", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1975, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "174adb53-bc6e-4fcf-b03d-a00fc3deeb49", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Wood)", + "GiftDropId": 1977, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Wood Debug: 1977", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1977, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "fd367329-b8b2-4d44-825a-da16092751e3", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Purple)", + "GiftDropId": 1978, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Purple Debug: 1978", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1978, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "a6c869d9-8f30-4ce6-a7ea-cb7ea9f9d492", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Pirate)", + "GiftDropId": 1979, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Pirate Debug: 1979", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1979, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "jZ7wlwRxgUuWYuLasbnG8w", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Cyber Sunset)", + "GiftDropId": 1980, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield 80s Sunset Debug: 1980", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1980, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "QTyRLpDB3UuReHQqrKxb5A", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Gingerbread)", + "GiftDropId": 1981, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Gingerbread Debug: 1981", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1981, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "gfGhbEMx_kCRdO-6vPOh3g", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Plaid)", + "GiftDropId": 1982, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Plaid Debug: 1982", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1982, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ClJApV0LC0mxh0UiYhaXGQ", + "EquipmentPrefabName": "[PaintballShield]", + "FriendlyName": "Paintball Shield Skin (Caution)", + "GiftDropId": 1983, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballShield Caution Debug: 1983", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1983, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "2389fce4-3ab2-4e05-918c-845eb8538bed", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Goblin)", + "GiftDropId": 1985, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Goblin Debug: 1985", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1985, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "93f5418e-a03d-4074-804c-daa0e374dd9f", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Purple)", + "GiftDropId": 1986, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Purple Debug: 1986", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1986, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "735b06c6-1b78-4f60-9291-a414a96cd228", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Wood)", + "GiftDropId": 1987, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield wood Debug: 1987", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1987, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "affbab2d-3200-4512-a140-685fdc5570c6", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Yellow)", + "GiftDropId": 1988, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Yellow Debug: 1988", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1988, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "a363ba1b-2f70-4c5f-943a-f45cfa59122b", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Stone)", + "GiftDropId": 1989, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Rock Debug: 1989", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1989, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "eb90210a-6d2d-4429-b1e0-3285333685fc", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Hearts)", + "GiftDropId": 1990, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Valentine Debug: 1990", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1990, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "439be0eb-4d1e-4c80-97f8-b4636d0ce94b", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Pride)", + "GiftDropId": 1991, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Pride Debug: 1991", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1991, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "k0BVix46IEmgVrqUmFU3-Q", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Plaid)", + "GiftDropId": 1992, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Plaid Debug: 1992", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1992, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "RQCgWA3Pf0KTqznUR58-lw", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Caution)", + "GiftDropId": 1993, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Caution Debug: 1993", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1993, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "-rbKD_ztMUq69Nv4tLrrVA", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Snowflake)", + "GiftDropId": 1994, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Snowflake Debug: 1994", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1994, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "L9usPszLFkiA6xs32es2Lw", + "EquipmentPrefabName": "[QuestShield]", + "FriendlyName": "Quest Shield Skin (Neon)", + "GiftDropId": 1995, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestShield Neon RR+ Debug: 1995", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1995, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "33a7a3dc-5266-4075-b56f-5eaa2c400e9f", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Caution)", + "GiftDropId": 1996, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Caution Debug: 1996", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1996, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "db91b61b-ab32-4895-8f5a-0212c1283cbb", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Vitton)", + "GiftDropId": 1997, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Vitton Debug: 1997", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1997, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "89b1fbbc-e7be-440b-8b22-8fd379c1a568", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Pink)", + "GiftDropId": 1998, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol PINK Debug: 1998", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1998, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "8a2a3219-fed0-4403-9061-451d162307c2", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Candy Cane)", + "GiftDropId": 1999, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol CandyCane Debug: 1999", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 1999, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "5nQ2kF6h6kunbk5z18Lozg", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Frankenstein)", + "GiftDropId": 2000, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Frakenblaster Debug: 2000", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2000, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "0cFcVYCLTU6CKhr9uADrbw", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Recasso)", + "GiftDropId": 2001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Recasso Debug: 2001", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "aByJShU520OzdOXBV8o0Dg", + "EquipmentPrefabName": "[Quest_SciFi_Pistol]", + "FriendlyName": "Laser Pistol Skin (Purple Plaid)", + "GiftDropId": 2002, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Pistol Plaid Debug: 2002", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2002, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "546b3a57-13d4-4c35-ab3a-bbb7d466f0b8", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Caution)", + "GiftDropId": 2004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Caution Debug: 2004", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "bafacc36-02c6-408c-a3f5-8c2aa07a68db", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Bark)", + "GiftDropId": 2005, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Arbor Debug: 2005", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2005, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "u60IW1Gt10eC-8SlZmQUNQ", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Recasso)", + "GiftDropId": 2006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Recasso Debug: 2006", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "dEmh0tniCkeYBY1EdD09jA", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Zombie)", + "GiftDropId": 2007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Zombie Debug: 2007", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "jzgz_HrPAUqOeqx3uNXVUA", + "EquipmentPrefabName": "[Quest_SciFi_AutomaticGun]", + "FriendlyName": "Laser Burst Rifle Skin (Purple Plaid)", + "GiftDropId": 2008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi AutomaticGun Plaid Debug: 2008", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "55a9c1e8-07e2-4457-86f2-75fd5e67b1f3", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Caution)", + "GiftDropId": 2009, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Caution Debug: 2009", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2009, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "83d7cca0-2c5d-41b2-a5b2-f79fd89f3037", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Pink)", + "GiftDropId": 2010, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun PINK Debug: 2010", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2010, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "bb36b722-16dc-4172-b61f-237dc1240040", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Jack-o'-lantern)", + "GiftDropId": 2011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Jackolantern Debug: 2011", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "cd497ae2-6382-42f2-9f92-93d5141588c3", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Hearts)", + "GiftDropId": 2012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Valentine Debug: 2012", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "pIRihZheSEW2Ld3VTLkB-g", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Purple Plaid)", + "GiftDropId": 2013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Plaid Debug: 2013", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "gjuFgDp-LUWPi1mPCKyqbA", + "EquipmentPrefabName": "[Quest_SciFi_Shotgun]", + "FriendlyName": "Laser Shotgun Skin (Shamrock)", + "GiftDropId": 2014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi Shotgun Shamrock Debug: 2014", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "63a867d7-ccea-4905-b6e0-e6dcfba06f9e", + "EquipmentPrefabName": "[Quest_SciFi_RailGun]", + "FriendlyName": "Laser Railgun Skin (Caution)", + "GiftDropId": 2015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi RailGun Caution Debug: 2015", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "46977ca7-ee75-4e2a-b8aa-0763879f8a96", + "EquipmentPrefabName": "[Quest_SciFi_RailGun]", + "FriendlyName": "Laser Railgun Skin (Pink)", + "GiftDropId": 2016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi RailGun PINK Debug: 2016", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "X9gTAbp0Sk6nadpTBseRrg", + "EquipmentPrefabName": "[Quest_SciFi_RailGun]", + "FriendlyName": "Laser Railgun Skin (Lifeguard)", + "GiftDropId": 2017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi RailGun LifeGuard Debug: 2017", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "_flhynGnykyZL7F83B7rJQ", + "EquipmentPrefabName": "[Quest_SciFi_RailGun]", + "FriendlyName": "Laser Railgun Skin (Purple Plaid)", + "GiftDropId": 2018, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest SciFi RailGun Plaid Debug: 2018", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2018, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "c4d70545-cdf1-4fb1-924b-613de0327faf", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Vitton)", + "GiftDropId": 2019, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Vitton Debug: 2019", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2019, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6bba14be-f207-4933-b09f-f0fd3e28c10c", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Candy Cane)", + "GiftDropId": 2020, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow CandyCane Debug: 2020", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2020, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "1d09c8e4-78c2-49f9-acb7-8f0b3ff6a5ed", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Recasso)", + "GiftDropId": 2021, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Recasso Debug: 2021", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2021, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "MsFoMeUZ8Eq2qX9SrOtRPA", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Waves)", + "GiftDropId": 2022, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Waves Debug: 2022", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2022, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "T6PzFfg41UaQ7EAqts6gsw", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Crossbone)", + "GiftDropId": 2023, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Bone Debug: 2023", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2023, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "jHaoDSAtikyAI82lO53o9g", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Dryad Summer)", + "GiftDropId": 2024, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Dryad Debug: 2024", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2024, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ESQ0qOlgrkCc8MbUXGnF8A", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Green Plaid)", + "GiftDropId": 2025, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Plaid Debug: 2025", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2025, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "QEwDZYj_OEi5l86LBnuYGw", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Stone)", + "GiftDropId": 2026, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Rock Debug: 2026", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2026, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "VHFKZVhiRkylcxnxzCKUuw", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Caution)", + "GiftDropId": 2027, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Caution Debug: 2027", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2027, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Ys9UQ5b7fEyKxnaek-ihfQ", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Dryad Fall)", + "GiftDropId": 2028, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Dryad Fall Debug: 2028", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2028, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "CZAIad-ME0O0iIy77MRxBw", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Dryad Winter)", + "GiftDropId": 2029, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Winter Debug: 2029", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2029, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ych0ntYcK0eiq67bCLlbew", + "EquipmentPrefabName": "[Crossbow]", + "FriendlyName": "Crossbow Skin (Dryad Spring)", + "GiftDropId": 2030, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Spring Debug: 2030", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2030, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f5901f11-b315-4261-9474-2da207e4a229", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Fashion)", + "GiftDropId": 2031, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Vitton Debug: 2031", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2031, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "52c6a138-10c5-4aab-9c3b-04b50c9a2dc5", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Ghost)", + "GiftDropId": 2032, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Ghost Debug: 2032", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2032, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e738d936-0f75-423b-88bb-f626ffba573a", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Stone)", + "GiftDropId": 2033, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Rock Debug: 2033", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2033, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "XpxqrY6RYkafs-sd3Z0ZLw", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Pride)", + "GiftDropId": 2034, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Rainbow Debug: 2034", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2034, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "JBp7CxPhrUC5hnn2EISUFA", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Dryad Summer)", + "GiftDropId": 2035, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Dryad Debug: 2035", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2035, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "T8666vuehkObksBdVbla9g", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Green Plaid)", + "GiftDropId": 2036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Plaid Debug: 2036", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "YajcGvBcTEaf_MjCbxOciw", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Caution)", + "GiftDropId": 2037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Caution Debug: 2037", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "XKFuhM3zikyxTYtTzuPb_A", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Dryad Fall)", + "GiftDropId": 2038, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Dryad Fall Debug: 2038", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2038, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "uPwTBnfWwkWXuyAaAMqeQA", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Dryad Winter)", + "GiftDropId": 2039, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Winter Debug: 2039", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2039, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "gl_tlo_t7U-H308Omy13lw", + "EquipmentPrefabName": "[Longbow]", + "FriendlyName": "Bow Skin (Dryad Spring)", + "GiftDropId": 2040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Longbow Spring Debug: 2040", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "VYF9NGZBgU6TOo9ayjgBEQ", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Green)", + "GiftDropId": 2054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Green Debug: 2054", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "WwtFcRluQkmnCI_qH75L_Q", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Orange)", + "GiftDropId": 2055, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Orange Debug: 2055", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2055, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "iRtlLKI-X0S9oYUWLenAKQ", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Purple)", + "GiftDropId": 2056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Purple Debug: 2056", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "tvjYGeRdwEqnr9mf84WgcQ", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Red)", + "GiftDropId": 2057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Red Debug: 2057", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Q7Tr_0DXAkOdr61UXiocow", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Yellow)", + "GiftDropId": 2058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Yellow Debug: 2058", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "c1VRbmDGHUS7KiSgwj5prQ", + "EquipmentPrefabName": "[MakerPen]", + "FriendlyName": "Maker Pen Skin (Pink)", + "GiftDropId": 2059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "MakerPen Pink Debug: 2059", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6a6b0ecf-286d-4361-92ff-7027c440dc3c", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Plaid)", + "GiftDropId": 2063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Plaid Debug: 2063", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d906709c-e08e-4273-8ba1-e072e0d25957", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Candy Cane)", + "GiftDropId": 2064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintBallRifleScoped CandyCane Debug: 2064", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3rBevbIk1EusFnFaXAh3qA", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Gingerbread)", + "GiftDropId": 2065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Gingerbread Debug: 2065", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "0dM2SfqGR0SmtO5ufTWfUQ", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Comic)", + "GiftDropId": 2067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Comic Debug: 2067", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "btB2z7ybskSYrn9Nzhfhxg", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Wood)", + "GiftDropId": 2068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Wood Debug: 2068", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "b_iiMMYayU-an7hOlCzPIA", + "EquipmentPrefabName": "[PaintballRifleScoped]", + "FriendlyName": "Paintball Sniper Skin (Caution)", + "GiftDropId": 2069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballRifleScoped Caution Debug: 2069", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d217ee4c-22f3-4f33-bf7c-9d4ee9c30e29", + "EquipmentPrefabName": "[Crossbow_Hunter]", + "FriendlyName": "Hunter's Crossbow Skin (Stone)", + "GiftDropId": 2070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Hunter Rock Debug: 2070", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "cFMh54GoHEeHZEERSRR8kQ", + "EquipmentPrefabName": "[Crossbow_Hunter]", + "FriendlyName": "Hunter's Crossbow Skin (Green Plaid)", + "GiftDropId": 2071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Hunter Plaid Debug: 2071", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "RRCvths6eUmAAr9hzGFT0g", + "EquipmentPrefabName": "[Crossbow_Hunter]", + "FriendlyName": "Hunter's Crossbow Skin (Caution)", + "GiftDropId": 2072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow Hunter Caution Debug: 2072", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "-X_Hm6dIekqoHTY2VMMLeA", + "EquipmentPrefabName": "[Crossbow_Hunter]", + "FriendlyName": "Hunter's Crossbow Skin (Shark)", + "GiftDropId": 2073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Crossbow SharkHunter Debug: 2073", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "0ee04d78-5a17-4a38-ae67-b576a41fc200", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Extra)", + "GiftDropId": 2074, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Extra Debug: 2074", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2074, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "431567d2-4df2-43eb-b632-3d79aa7c013c", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Excalibur)", + "GiftDropId": 2075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Gold Debug: 2075", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "uLNdhrrAC0ybxC2XkBnnVQ", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Gold)", + "GiftDropId": 20756767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 20756767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f03dee6a-79b8-4906-9abb-a821748d97a9", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Topaz)", + "GiftDropId": 2076, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Red Debug: 2076", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2076, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3e46fb2d-bb3f-42ed-83ef-f5716860725c", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Stone)", + "GiftDropId": 2077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Rock Debug: 2077", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "eecdf81c-7ba2-40ba-9d6c-f461708cce16", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Comic) ", + "GiftDropId": 2078, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Comic Debug: 2078", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2078, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "SbEIObEmhkKQniANHqNekg", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Jack-o'-Lantern)", + "GiftDropId": 2079, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Pumpkin Debug: 2079", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2079, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Kitcy2AVB0-OdljiEAI2Pw", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Recasso)", + "GiftDropId": 2080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Recasso Debug: 2080", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "K9TzHZPDwU-ewzLYkr_1cg", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Gingerbread) ", + "GiftDropId": 2081, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Gingerbread Debug: 2081", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2081, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "wioj1rR1lkCx7f-oiCHcOw", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Corn)", + "GiftDropId": 2082, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword CornCob Debug: 2082", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2082, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "m1JMjJYpSUiXj5897orm2Q", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Green Plaid)", + "GiftDropId": 2083, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Plaid Debug: 2083", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2083, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d97pbQMk9UWpEN0yoOE9Rg", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Caution)", + "GiftDropId": 2084, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Caution Debug: 2084", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2084, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "DRXoMS9phEG2fkasja7sEw", + "EquipmentPrefabName": "[QuestSword]", + "FriendlyName": "Sword Skin (Lava)", + "GiftDropId": 2085, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "QuestSword Lava Debug: 2085", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2085, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "993f8b81-cb2e-44e4-88a1-b841af1f0e69", + "EquipmentPrefabName": "[Grenade]", + "FriendlyName": "Paint Grenade (Pirate)", + "GiftDropId": 2086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Grenade Pirate Debug: 2086", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e8e42ef6-9ab6-44f4-84d5-117154a4d13e", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Ghost)", + "GiftDropId": 2087, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Ghost Debug: 2087", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2087, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "yG6xFxkoS0iIDt7wEj5Hqw", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Witch)", + "GiftDropId": 2088, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Witch Star Debug: 2088", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2088, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3pE7zA-DjkqP1Ch7__-31w", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Jack Frost)", + "GiftDropId": 2089, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Ice Debug: 2089", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2089, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "m_otHTEKF0KQljsOc-JENg", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Stone)", + "GiftDropId": 2090, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Wood Debug: 2090", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2090, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "CyrdBvIbXUq_TsXFliWk1A", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Green Plaid)", + "GiftDropId": 2091, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Plaid Debug: 2091", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2091, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "vfzrRHn24E67BK8Bgy60xA", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Caution)", + "GiftDropId": 2092, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Caution Debug: 2092", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2092, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "QnLM4Qw-L0ml_mgReFweIw", + "EquipmentPrefabName": "[Quest_Goblin_Wand]", + "FriendlyName": "Wand Skin (Trident)", + "GiftDropId": 2093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Quest Goblin Wand Trident Debug: 2093", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "502f40c3-1c00-4c3f-bfc7-c897df8af37e", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Plaid)", + "GiftDropId": 2094, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Plaid Debug: 2094", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2094, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f34e6270-bcfa-42f2-80d5-69c1bbd34983", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Comic)", + "GiftDropId": 2095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Comic Debug: 2095", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "8ZAwSDtXlkqlnBLOpfVTVg", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Gingerbread)", + "GiftDropId": 2096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Gingerbread Debug: 2096", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3UmIhvqmkU-aWxFDFd4QDg", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Honey)", + "GiftDropId": 2097, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Honey Debug: 2097", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2097, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "pPpYY9j0Dku2gtbKoUOCCg", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Eggcellent)", + "GiftDropId": 2098, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher EasterEgg Debug: 2098", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2098, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "9gBl778RvUeSC8837Gurog", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Wood)", + "GiftDropId": 2099, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Wood Debug: 2099", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2099, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "tcMMGKcmhkuM82ISCZ-3AQ", + "EquipmentPrefabName": "[PaintballGrenadeLauncher]", + "FriendlyName": "Paintball Grenade Launcher (Caution)", + "GiftDropId": 2100, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballGrenadeLauncher Caution Debug: 2100", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2100, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6261a846-e4f8-4e6e-8aa0-68f38cd788d4", + "EquipmentPrefabName": "[DodgeballBall]", + "FriendlyName": "Dodgeball Skin (Comic)", + "GiftDropId": 2101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DodgeballBall Comic Debug: 2101", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6ff63f8f-4bcc-4b69-8d89-8b886d19e239", + "EquipmentPrefabName": "[DodgeballBall]", + "FriendlyName": "Dodgeball Skin (Recasso)", + "GiftDropId": 2102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DodgeballBall Recasso Debug: 2102", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f55dda45-c17e-4237-a638-9f326d306e7d", + "EquipmentPrefabName": "[DodgeballBall]", + "FriendlyName": "Dodgeball Skin (Goblin)", + "GiftDropId": 2103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DodgeballBall Goblin Debug: 2103", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "lIpyvEMWqUyv41gTp3YZ1A", + "EquipmentPrefabName": "[DodgeballBall]", + "FriendlyName": "Dodgeball Skin (Jack-o'-Lantern)", + "GiftDropId": 2105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "DodgeballBall Pumpkin Debug: 2105", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "fae1abe3-6bfd-4407-b34e-e2c1b3b03032", + "EquipmentPrefabName": "[SoccerShield]", + "FriendlyName": "Soccer Shield Skin (Gingerbread)", + "GiftDropId": 2106, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "SoccerShield Gingerbread Debug: 2106", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2106, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "523e3615-4633-41a3-9b2d-17d3207a684b", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Camo)", + "GiftDropId": 2107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Camo Debug: 2107", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "6c3b26cd-b38e-492b-a124-759cbcec1396", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Camping)", + "GiftDropId": 2108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Camping Pattern Debug: 2108", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "12b54ad2-3847-41db-9ed4-88e8dad63024", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Tiger)", + "GiftDropId": 2109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Tiger Debug: 2109", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "5c848a04-f528-423b-8be1-4b5cd43a75c2", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Denim)", + "GiftDropId": 2110, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Denim Debug: 2110", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2110, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e93f5ab7-e9bf-4652-8a7c-2ae120f25f87", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Recasso)", + "GiftDropId": 2111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Recasso Debug: 2111", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "w2NNBTTCVEah2WlP0JHezQ", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Hearts)", + "GiftDropId": 2112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack Valentine Debug: 2112", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "70uy5UJhhEy1aynKM4MAsQ", + "EquipmentPrefabName": "[RecRoyale_Backpack]", + "FriendlyName": "Backpack Skin (Fall)", + "GiftDropId": 2113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "RecRoyale Backpack FallLeaves Debug: 2113", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d218ae45-8534-4f96-b2ed-1cf281bc3578", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Gold)", + "GiftDropId": 2115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Wood Debug: 2115", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "e2844f84-ab44-4141-9a0a-bd5da7caa4f6", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Yellow OSnap)", + "GiftDropId": 2116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Disposable Debug: 2116", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "1838fa61-de10-4e09-b24a-f5a1bc942600", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Green OSnap)", + "GiftDropId": 2117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Green Debug: 2117", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "fSbzGxsjKE-cwtFFX6dJQw", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Sci-fi)", + "GiftDropId": 2118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Carpet Debug: 2118", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ATGtNjai20miFwBUOVIMuw", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Two Tone)", + "GiftDropId": 2119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera TwoTone Debug: 2119", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "znrJSCX_SkS-kIPqMERoDg", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Camping)", + "GiftDropId": 2120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Camping Debug: 2120", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "g5u0weNLmkCLeUXFUVn74Q", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Comic)", + "GiftDropId": 2121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Comic Debug: 2121", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "QQALCzCF-0ClDWqmmciHAQ", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Hearts)", + "GiftDropId": 2122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Heart Debug: 2122", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "SkTa53OzM0u82YPuZAl9aw", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Caution)", + "GiftDropId": 2123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Caution Debug: 2123", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "sE4_-ZVa2EC4MZfGGsExzQ", + "EquipmentPrefabName": "[ShareCamera]", + "FriendlyName": "Camera Skin (Plaid)", + "GiftDropId": 2124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "ShareCamera Plaid Debug: 2124", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "KiVWBp5_J0qCLuizAJGcAg", + "EquipmentPrefabName": "[Sandbox_D4]", + "FriendlyName": "D4 (Pink)", + "GiftDropId": 2125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D4 Pink Debug: 2125", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "x3Cv42hIkkaNIy7fHZiWYg", + "EquipmentPrefabName": "[Sandbox_D4]", + "FriendlyName": "D4 (Bone White)", + "GiftDropId": 2126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D4 BoneWhite Debug: 2126", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "_2jxSTYSpEykZ_O91oDAzg", + "EquipmentPrefabName": "[Sandbox_D4]", + "FriendlyName": "D4 (Turquoise)", + "GiftDropId": 2127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D4 Turquoise Debug: 2127", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "WxWaXY61mUuNe_f6SgECnA", + "EquipmentPrefabName": "[Sandbox_D4]", + "FriendlyName": "D4 (Pewter)", + "GiftDropId": 2128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D4 Pewter Debug: 2128", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "TxIu8CUjykGDMr5RIJcNVQ", + "EquipmentPrefabName": "[Sandbox_D6]", + "FriendlyName": "D6 (Pink)", + "GiftDropId": 2129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D6 Pink Debug: 2129", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Fn0gcj17c06tA9s98CKwAg", + "EquipmentPrefabName": "[Sandbox_D6]", + "FriendlyName": "D6 (Bone White)", + "GiftDropId": 2130, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D6 BoneWhite Debug: 2130", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2130, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "HnVo08F-zk-YeikERFa1Yw", + "EquipmentPrefabName": "[Sandbox_D6]", + "FriendlyName": "D6 (Turquoise)", + "GiftDropId": 2131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D6 Turquoise Debug: 2131", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "5U_KiCi_90-eWucQ68VdZQ", + "EquipmentPrefabName": "[Sandbox_D6]", + "FriendlyName": "D6 (Pewter)", + "GiftDropId": 2132, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D6 Pewter Debug: 2132", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2132, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "AQXXckjNZ0uzPMTcP1C3Kg", + "EquipmentPrefabName": "[Sandbox_D8]", + "FriendlyName": "D8 (Pink)", + "GiftDropId": 2133, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D8 Pink Debug: 2133", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2133, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "d_CbCG3DmUCtWGWYHioghg", + "EquipmentPrefabName": "[Sandbox_D8]", + "FriendlyName": "D8 (Bone White)", + "GiftDropId": 2134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D8 BoneWhite Debug: 2134", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "f45tTZp4KUextmAsX8X9Hw", + "EquipmentPrefabName": "[Sandbox_D8]", + "FriendlyName": "D8 (Turquoise)", + "GiftDropId": 2135, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D8 Turquoise Debug: 2135", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2135, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "77cRA0O4GUqd6nr9QLefQA", + "EquipmentPrefabName": "[Sandbox_D8]", + "FriendlyName": "D8 (Pewter)", + "GiftDropId": 2136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D8 Pewter Debug: 2136", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ZM543HEyl0G6n7P5rDMEWw", + "EquipmentPrefabName": "[Sandbox_D10]", + "FriendlyName": "D10 (Pink)", + "GiftDropId": 2137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D10 Pink Debug: 2137", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "GjQwBmNnK0ukv0hEEHK8tw", + "EquipmentPrefabName": "[Sandbox_D10]", + "FriendlyName": "D10 (Bone White)", + "GiftDropId": 2138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D10 BoneWhite Debug: 2138", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "SnSOf-GZ2kastpF5KWxT-Q", + "EquipmentPrefabName": "[Sandbox_D10]", + "FriendlyName": "D10 (Turquoise)", + "GiftDropId": 2139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D10 Turquoise Debug: 2139", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "I161QAym2kqPi5wXIHCt8A", + "EquipmentPrefabName": "[Sandbox_D10]", + "FriendlyName": "D10 (Pewter)", + "GiftDropId": 2140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D10 Pewter Debug: 2140", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "EoV2ZoLR2UWY898p8j7qGQ", + "EquipmentPrefabName": "[Sandbox_D12]", + "FriendlyName": "D12 (Pink)", + "GiftDropId": 2141, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D12 Pink Debug: 2141", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2141, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "heFLfpPNd0-nhLOFpUCnpA", + "EquipmentPrefabName": "[Sandbox_D12]", + "FriendlyName": "D12 (Bone White)", + "GiftDropId": 2142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D12 BoneWhite Debug: 2142", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ub6apg3zEUiCp3k81JjQGw", + "EquipmentPrefabName": "[Sandbox_D12]", + "FriendlyName": "D12 (Turquoise)", + "GiftDropId": 2143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D12 Turquoise Debug: 2143", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "2gYYjbVGqkiOefY2xjOxiQ", + "EquipmentPrefabName": "[Sandbox_D12]", + "FriendlyName": "D12 (Pewter)", + "GiftDropId": 2144, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D12 Pewter Debug: 2144", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2144, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "Des7txtX0EO-7NiooR0-ow", + "EquipmentPrefabName": "[Sandbox_D20]", + "FriendlyName": "D20 (Pink)", + "GiftDropId": 2145, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D20 Pink Debug: 2145", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2145, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "gXOOKrQEYE-FmS3uXWj1hA", + "EquipmentPrefabName": "[Sandbox_D20]", + "FriendlyName": "D20 (Bone White)", + "GiftDropId": 2146, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D20 BoneWhite Debug: 2146", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2146, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "DrG0ntsyPUSv8ra0m-Hhaw", + "EquipmentPrefabName": "[Sandbox_D20]", + "FriendlyName": "D20 (Turquoise)", + "GiftDropId": 2147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D20 Turquoise Debug: 2147", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "H3vrSi45AU6lshChLnr19Q", + "EquipmentPrefabName": "[Sandbox_D20]", + "FriendlyName": "D20 (Pewter)", + "GiftDropId": 2148, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Sandbox D20 Pewter Debug: 2148", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2148, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "c458a6ae-a1ea-468a-89b8-4c9a85cd3cde", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Caution)", + "GiftDropId": 2150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle Caution Debug: 2150", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "m_qzPvDPF0KPhLd59wzr5A", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Fall)", + "GiftDropId": 2151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle Fall Debug: 2151", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "996662ad-631d-4a81-8a8b-74ace4833279", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Pirate)", + "GiftDropId": 2152, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle Pirate Debug: 2152", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2152, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "3aaef60d-142f-4a0a-bea3-f5d99ab62dd5", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Plaid)", + "GiftDropId": 2153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle Plaid Debug: 2153", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "49d88b73-3c8a-4f4d-8a69-128fa5474e82", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (PS Plus)", + "GiftDropId": 2154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle PSPLUS Debug: 2154", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "357fe573-fee7-467f-93a7-5e61afb024b8", + "EquipmentPrefabName": "[PaintballAssaultRifle]", + "FriendlyName": "Paintball Burst Rifle Skin (Wood)", + "GiftDropId": 2155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "PaintballAssaultRifle wood Debug: 2155", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "y_FesIT5jkmb61JIu7tfsw", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Wood)", + "GiftDropId": 2157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower Wood Debug: 2157", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "GbHNkVbVgUCoirMhOGkSTA", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Plaid)", + "GiftDropId": 2158, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower Plaid Debug: 2158", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2158, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "qhhhJeHVx0KLnGJrAGIn9g", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Caution)", + "GiftDropId": 2159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower Caution Debug: 2159", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "OFEdf4dRC0a3nHugXVOXnA", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Fireworks)", + "GiftDropId": 2160, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower Fireworks Debug: 2160", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2160, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "VTVy8cweC0K2ca1nTXMu0g", + "EquipmentPrefabName": "[Paintball_PaintThrower]", + "FriendlyName": "Paintball Paint Thrower Skin (Double Drencher)", + "GiftDropId": 2161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Paintball PaintThrower DoubleDrencher Debug: 2161", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "ou23DX__T0qFPjAXC5WrOQ", + "EquipmentPrefabName": "[Bucket]", + "FriendlyName": "Bucket Skin (Fashion)", + "GiftDropId": 2164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 5, + "SubscribersOnly": false, + "Tooltip": "Bucket Fashion Debug: 2164", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 3500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "frOMH6WxDEG1fBqC4_83vg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Black & White)", + "GiftDropId": 2168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some black and white photos. Debug: 2168", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "m0bVLwWGj0GuIBSb6wCk6Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Dawn)", + "GiftDropId": 2169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some sun-soaked photos. Debug: 2169", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "A5M-yf9tgUihq1uab3v58g", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Film (Sepia)", + "GiftDropId": 2174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Take some old-timey photos. Debug: 2174", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 20, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "-hy0qD-iUk-v4NHxNzanmg", + "Context": 4004, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Five Potion (Golden)", + "GiftDropId": 2176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Give golden high fives for a time. Debug: 2176", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "VQSgL2pTLkWx4B3kwYG7UA", + "Context": 4014, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Five Potion (Magic)", + "GiftDropId": 2179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "Give magical high fives for a time. Debug: 2179", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 30, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "xwQWBB_fekmTqRc2LB92cg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "87 Flavor Cake", + "GiftDropId": 2181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2181", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "ZuvkidodzkuOfGLDnTOFyg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Assorted Donuts", + "GiftDropId": 2182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "A dozen assorted donuts to share with friends. Debug: 2182", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "iiGTvhOCHkOTNJhb16Zbyw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Bubbly", + "GiftDropId": 2183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": " Debug: 2183", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 1000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "EmPvh3I6L0uK_1i8Wy_ylQ", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Candy Apples", + "GiftDropId": 2184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": " Debug: 2184", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "Sk_1sm88ZU2zpWn01Lv7hw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Celebration Cake", + "GiftDropId": 2185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2185", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "5hIAZ9wg5EyG1cILf4FS2A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheese Pizza", + "GiftDropId": 2186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A cheese pizza to share with friends. Debug: 2186", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 85, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 85, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "BbJb1_0g4EGJP_CeNrjpew", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chocolate Cake", + "GiftDropId": 2187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2187", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "mMCGPgK3tki5S_15q2Z81A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chocolate Donuts", + "GiftDropId": 2188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A dozen chocolate donuts to share with friends. Debug: 2188", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "K9RbXo-4U0q6NbGu8VL1Sw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Assorted Chocolates", + "GiftDropId": 2189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Assorted chocolates to share with friends! Debug: 2189", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "7OZ5AE3uuUyqa0P-2W1ptg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glazed Donuts", + "GiftDropId": 2190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A dozen glazed donuts to share with friends. Debug: 2190", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "_jnjYGBcyEWY5Ub4OezXcA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hawaiian Pizza", + "GiftDropId": 2191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A ham and pineapple pizza to share with friends. Debug: 2191", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "P15H1ONBhk-5DYYjid1ttg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tray of Lattes", + "GiftDropId": 2192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "Four hot lattes to share with friends. Debug: 2192", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "mq23W-RSP0G8iGNLdrcpUw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pepperoni Pizza", + "GiftDropId": 2193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "A pepperoni pizza to share with friends. Debug: 2193", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 90, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "QRx0aSTT9keMFdAJMQHdTg", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Popcorn", + "GiftDropId": 2194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": " Debug: 2194", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "LwaotjVEBUir0-w8126n_g", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Velvet Cake", + "GiftDropId": 2196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "Eight slices of tasty cake to share with friends. Debug: 2196", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "JfnVXFmilU6ysv-VbTAe3A", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Root Beer", + "GiftDropId": 2197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A sixer of root beer to share with friends. Debug: 2197", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "InQ25wQMGkG_bvuD5rf2Ag", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Salted Pretzels", + "GiftDropId": 2198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "A great snack to share with friends! Debug: 2198", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 75, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 75, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "wUCIKdJSvEmiQHYMyx4X4w", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Supreme Pizza", + "GiftDropId": 2199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "A supreme pizza to share with friends. Debug: 2199", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 95, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "4My42w1D1Uu3-98pXB-x_Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sushi", + "GiftDropId": 2200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "15 piece premium sushi set to share with friends Debug: 2200", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 750, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "ZtZnYBpKkECJlhHmkj4MiA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Bear Claw", + "GiftDropId": 2201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2201", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "EAhk3ZZdXEmH5wRAXXT24Q", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Grenade", + "GiftDropId": 2206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2206", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "5AJin8T2iEG7BzOPOgx2HA", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Sword & Shield", + "GiftDropId": 2208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2208", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "U38Qe6rhEk6mFvArHfYjng", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Winged Skull", + "GiftDropId": 2209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2209", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 100, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "yvqSbK2czkS2sUCRdrGaEw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Star Power", + "GiftDropId": 2210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2210", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "J1WqFNUWo0OBi4LGKPDHWw", + "Context": 110000, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KO Icon - Tire Track", + "GiftDropId": 2211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "When you KO someone this will appear over their head. Debug: 2211", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Common Random box", + "GiftDropId": 2454, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "a random box of Common quality Debug: 2454", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 50, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Uncommon Random box", + "GiftDropId": 2455, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "a random box of Uncommon quality Debug: 2455", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 200, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rare Random box", + "GiftDropId": 2456, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "a random box of Rare quality Debug: 2456", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 500, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Epic Random box", + "GiftDropId": 2457, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "a random box of Epic quality Debug: 2457", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Legendary Random box", + "GiftDropId": 2458, + "IsQuery": true, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "a random box of Legendary quality Debug: 2458", + "Unique": false + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0RUmjv2bL0ydbKU61dlqlg", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (PVPeach)", + "GiftDropId": 2554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2554", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "H65ddsxAY0m2sccMrF48Aw", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Standee Sandy)", + "GiftDropId": 2555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2555", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "yejur5BbR0mevbH-rzgXYA", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Recreational Raspberry)", + "GiftDropId": 2556, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2556", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2556, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Bjsgo9ddeUCk3zW1-DdJbw", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (H2Oasis)", + "GiftDropId": 2557, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2557", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2557, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8k_gZA_lrEyJxI19GrcAZg", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Mousebot Magenta)", + "GiftDropId": 2558, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2558", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2558, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1I8AD333gku-iOQlS6WWlw", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Bucket Orange)", + "GiftDropId": 2559, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2559", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2559, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "aziIarpSREmcT6vihduPwA", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Rebel Rose)", + "GiftDropId": 2560, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2560", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2560, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "yTdx1nVVtECU8Vh7EC8dGA", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Butterfly Blue)", + "GiftDropId": 2561, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2561", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2561, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "XCwNFMT1i0i9Q9gJYTLPUQ", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Cauldron Crimson)", + "GiftDropId": 2562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2562", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QmgjYhH_L0q58eF5SWeDhQ", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Gizmo Grape)", + "GiftDropId": 2563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2563", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "53y1prYATU2drZDS-jpaqg", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Propulsion Purple)", + "GiftDropId": 2564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2564", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TylV8M6zjUaadhxHPWAS-w", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Goblin Green)", + "GiftDropId": 2565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2565", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "xyHGGFKNWEOTnXloDFahPQ", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (KREQ Red)", + "GiftDropId": 2566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2566", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LBz3a9520kiOOMMOwsTExg", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Frontier Forest)", + "GiftDropId": 2567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2567", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "G129V_kVXkSLN2OG8EjSqQ", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Maker Mauve)", + "GiftDropId": 2568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2568", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_2QGtfHzuUSq0eyI84rImw", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Paula's Periwinkle)", + "GiftDropId": 2569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2569", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQNfh-3DsEGWfiIls6Qf6g", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Pirate Gold)", + "GiftDropId": 2570, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2570", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2570, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qp_vRXZQPU2rlx_IU1Vr8Q", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Lounge Lavender)", + "GiftDropId": 2571, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2571", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2571, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ksu_FLaukeJ-YE90jb4Ow", + "AvatarItemType": 1, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Permanent hair dye (Ranger Roy-Al Blue)", + "GiftDropId": 2572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "hi Debug: 2572", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3044adce-90c0-4f66-81f5-39c4fca86fdf,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 2, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Lasertag Glove", + "GiftDropId": 2764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": -1, + "SubscribersOnly": false, + "Tooltip": "laser the tag Debug: 2764", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 2764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 250, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Gloves (Blue)", + "GiftDropId": 10000, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10000, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,D0tP58wC30mJ00vNxw8hqA,N5wN1l0tYEau5np-9PoIiA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Gloves (Leather)", + "GiftDropId": 10001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,iJW8XGJfU0G12iXarjxhdQ,N5wN1l0tYEau5np-9PoIiA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Gloves (Red)", + "GiftDropId": 10003, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10003, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_OWVy3z6iU-M3-zbQgSLig,Vxq6v55a_kGPODzwB5MC1g,N5wN1l0tYEau5np-9PoIiA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Gloves (Midnight)", + "GiftDropId": 10004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "_qXaNbm4yEeyalo372QbvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Goggles", + "GiftDropId": 10005, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10005, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "002a0f2f-1a24-4439-b578-470818ef8325,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turkey Sweater", + "GiftDropId": 10006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "002a0f2f-1a24-4439-b578-470818ef8325,d-scjeOeCESC0rQMKsozsA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Turkey Sweater", + "GiftDropId": 10007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0058a7c6-04ca-4931-b2ff-03c46f99079f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Eggshell Chick Beanie", + "GiftDropId": 10008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0088603e-ec3b-4478-8694-e6fb1989b3f2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angled Bob Hair", + "GiftDropId": 10009, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10009, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "00f0b914-aa22-4d14-9af1-996e1af61f4d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Crown", + "GiftDropId": 10010, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10010, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01107a3f-9a4c-4fb9-8918-e6195e346d42,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Karate Wrist Wrap", + "GiftDropId": 10011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Blue)", + "GiftDropId": 10012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,357eb160-360b-4a63-840d-65d11cc8ffc2,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Green)", + "GiftDropId": 10013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Black)", + "GiftDropId": 10014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,a38254c0-00e3-429b-9d5d-b9e6a9812e69,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Red)", + "GiftDropId": 10015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3a9b576-5433-4305-bd96-b08820c09212,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (White)", + "GiftDropId": 10016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,d3KmqVuMQkCYK6sVTMOTOA,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Purple)", + "GiftDropId": 10017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01689baf-405e-4b38-9f09-b624e03865b8,RKmRHk2N_U2gd91nybo6vg,abdf525b-b871-41be-a1c8-810f49740ad4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Hat (Yellow)", + "GiftDropId": 10018, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10018, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "01d0fc12-3ebe-42e1-8caa-5513a40436c1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Bowtie", + "GiftDropId": 10019, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10019, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Shirt (Gray)", + "GiftDropId": 10020, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10020, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,17b16982-871c-476a-860f-f6953c89ee8c,5a6db6ba-2a0f-4399-b537-dd78db94bf90,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Shirt (Red)", + "GiftDropId": 10021, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10021, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02077915-57d3-4e26-b4fe-8e0399cbb293,8c94e45c-6605-4b4f-9ba4-2c6c6e557228,5a6db6ba-2a0f-4399-b537-dd78db94bf90,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Shirt (Blue)", + "GiftDropId": 10022, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10022, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "022ce375-ed02-479d-b87d-9d72d126bbd4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Wings", + "GiftDropId": 10023, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10023, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "022ce375-ed02-479d-b87d-9d72d126bbd4,H6fcuLxeBUSY3oERFc-plA,oGrNKZLpMU2bLwNEe4MPnw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Wings (Lilac)", + "GiftDropId": 10025, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10025, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "02a5b48c-abba-4385-967b-ba900424829e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Monocle", + "GiftDropId": 10026, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10026, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Tan)", + "GiftDropId": 10027, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10027, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,msOFHoFN9UORkeXXtdqBsw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Grey)", + "GiftDropId": 10028, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10028, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "033e328f-d9d2-4e53-af20-44f18e3ea208,Z1Ib9r_fkUqgoZk0uid_Xw,9ZP617DQk0mZ10J3d5q9oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Coat (Black)", + "GiftDropId": 10029, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10029, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03ce3b52-0d0c-4b72-a027-ade53b7a5cc5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Helm (Forbidden One)", + "GiftDropId": 10030, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10030, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03ce3b52-0d0c-4b72-a027-ade53b7a5cc5,GhulL0k9q0euEooMTUKTHQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Helmet (Invasion 2)", + "GiftDropId": 10031, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10031, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Brown)", + "GiftDropId": 10032, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10032, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,225209dc-3afc-40cf-858e-89f7afa00c0d,efeb07ab-6253-436d-bb66-991ddad72e58,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Gray)", + "GiftDropId": 10033, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10033, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,3f6c8bd2-2c1d-4c8c-a9de-16600fee9645,efeb07ab-6253-436d-bb66-991ddad72e58,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Tan)", + "GiftDropId": 10034, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10034, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,d7f0ffd3-ccf9-465e-8afe-4d7efb78dd2c,efeb07ab-6253-436d-bb66-991ddad72e58,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Blue)", + "GiftDropId": 10035, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10035, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "03f8c394-28fa-4087-978b-8d108f0bd969,G7p-E7TJHkSojZtj_5pDXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Hat (Red)", + "GiftDropId": 10036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "04e348b7-107f-47b4-9331-ae3b9fa184ca,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Braided Bun Hair ", + "GiftDropId": 10037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ab6e79-1198-49f2-945b-528523e306bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Amulet", + "GiftDropId": 10038, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10038, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ab6e79-1198-49f2-945b-528523e306bc,aUsPNgV2c0u15VhGBAIyvg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Necklace (Ruby)", + "GiftDropId": 10039, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10039, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05b7af56-71f2-45ba-a377-c105bf6a6f7a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Werewolf Wrist", + "GiftDropId": 10040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Gold Sequins)", + "GiftDropId": 10041, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10041, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05ec4e87-088f-4281-a118-2e63c2585200,Wm30oV5BtEuFQZFk3dPK_w,tfiSfpRez0y_R4QjAhO0bQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Red Sequins)", + "GiftDropId": 10042, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10042, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Red)", + "GiftDropId": 10043, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10043, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,cypMpMaVeUuRjm4FLH4czQ,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Teal)", + "GiftDropId": 10044, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10044, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,LTXy6g4xe0abuFzOLpVDUg,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Dark Red)", + "GiftDropId": 10045, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10045, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,tMsCUhDslkmdNBfogeSz7w,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Black)", + "GiftDropId": 10046, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10046, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06306723-ca20-4aa6-b7b3-917113f41ac3,whWKAUSGp0qprsJomq9Nwg,PIjEKhXiCUqtA8FBhLBcmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat-Eye Glasses (Pink)", + "GiftDropId": 10047, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10047, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06475461-f3ab-4e92-ad92-243c00b19ff0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prodigy Princess Armor", + "GiftDropId": 10048, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10048, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "06adb976-ca7f-4b8b-8b72-2e03c8bc10b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clover Head Bopper", + "GiftDropId": 10049, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10049, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07023692-97e1-4a65-a881-64ca6b4ae08e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbarian Helm ", + "GiftDropId": 10050, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10050, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07116e9b-b182-40b4-90c2-99738e7aedd6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Parrot Purse", + "GiftDropId": 10051, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10051, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Beige)", + "GiftDropId": 10052, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10052, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,_T4zEki_wk-UIPdhSaBr_Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Green)", + "GiftDropId": 10053, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10053, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,5z3jZhYvq0CGmdJ9IcUUsg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Brown)", + "GiftDropId": 10054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,EgEoJzG7A0aJ92qfInbX7g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Orange)", + "GiftDropId": 10056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,NETGR8iysUyxcZM_oGmrwQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (White)", + "GiftDropId": 10057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,OlfQDuz1NUOr88AL2n0jXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Red)", + "GiftDropId": 10058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "071f179a-dde2-407f-92b2-f0c16fcb4e39,VudVdOAjZUibHmtFeNkvSw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf (Blue)", + "GiftDropId": 10059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Black)", + "GiftDropId": 10060, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10060, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,e-oZt-PbKEOfawVammBQTA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Striped)", + "GiftDropId": 10061, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10061, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,jwXdjDbEmkOFyKZHT_RYOw,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Blue)", + "GiftDropId": 10062, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10062, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07205057-0804-41de-abe4-bd4027fee1df,LdKaVAveokmp3qRwVBxnFA,YJGsYfwkik2lp7qWqXyXTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Hat (Green)", + "GiftDropId": 10063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0736e71b-a32b-4485-bedf-6fde8fe3b09f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Hair Bow", + "GiftDropId": 10064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0753d7a4-8247-4fca-a6fc-359c26086140,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fonzie Hair", + "GiftDropId": 10065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "076e98b6-dc1b-48f8-bb02-aa65d26b33d1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prodigy Princess Bracelets", + "GiftDropId": 10066, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10066, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07bebdb7-bbe1-49ea-a746-c1d00e11f174,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Earrings", + "GiftDropId": 10067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "07bebdb7-bbe1-49ea-a746-c1d00e11f174,ciwVtCaRHEO72BFPe4Ujmg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack-O'-Lantern Earrings", + "GiftDropId": 10068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poodle Skirt", + "GiftDropId": 10069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,tPAJqFHiX0yUQpDOE0MJ6A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Planetary Dress", + "GiftDropId": 10070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Pinstripe)", + "GiftDropId": 10071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,46970903-9799-4d25-b90a-7162c1f5dbef,05cff8b8-d437-485a-b4b8-41d35becd022,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Creators Contest 2)", + "GiftDropId": 10072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,531b4297-b38b-4362-9854-4f2139ea43be,c2a9c007-2748-4fa2-ab9b-0081eef792f1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Herringbone)", + "GiftDropId": 10073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08d56627-4500-4724-8692-a23c96ddb3ec,newGzX_zA0eGUX3Iayq5Ag,QBzMp7MdAUOLIofvddui1A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Cuffs (Purple)", + "GiftDropId": 10075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Armor (First Release)", + "GiftDropId": 10076, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10076, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,a9oUAXZpHUaW1_ncqhkYZg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Armor (Invasion)", + "GiftDropId": 10077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,CeebPv2TZUixq8cmVD5lUA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Armor (Invasion 2)", + "GiftDropId": 10078, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10078, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08dfa3f9-d545-4707-be94-6342db90c17c,eG1Lf1vG60qNQiCBRsAhqA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Armor (Forbidden One)", + "GiftDropId": 10079, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10079, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "09177621-9ecd-4f6a-b6a5-64490139141d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Top Hair", + "GiftDropId": 10080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Mastermind)", + "GiftDropId": 10081, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10081, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,bQyNgFWAe0SPttPri6hxyg,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Rogue)", + "GiftDropId": 10082, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10082, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,wRPoHTsXFESK5pjkxVMqGA,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Outlaw)", + "GiftDropId": 10083, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10083, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "097a3266-4aab-4b23-8f56-373c9b1bc837,YB7kXMyLJ0mF_5WidhmH8A,SeA8s77hr0K6DRZyVlRTCg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Spy)", + "GiftDropId": 10084, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10084, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Black)", + "GiftDropId": 10085, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10085, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,-HYrY2A5Tk2UWMi4_hmYbg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Orange)", + "GiftDropId": 10086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,IjRMopsYlUqSE6327I9TIQ,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Purple)", + "GiftDropId": 10087, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10087, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,j3I0vVz0yUOYLX9wCOMyyA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Coat (Invasion)", + "GiftDropId": 10088, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10088, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,QBglgj80zkuvUkk55Y5Feg,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Green)", + "GiftDropId": 10090, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10090, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab5790f-a537-4306-ba66-5eb87c02ec7d,zTsJHduQ5kirH9-6mewV4g,ACrBLiAIgEur9V6l_B0CvA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quilted Vest (Yellow)", + "GiftDropId": 10091, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10091, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Blue)", + "GiftDropId": 10092, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10092, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,0ps19D7b_U2iejdKQFORyA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Red)", + "GiftDropId": 10093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,pjkTGVHkIE-BzCVi1KAesQ,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Black)", + "GiftDropId": 10094, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10094, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,QP38EMygY0S-KIvdGatARA,m5Vw_MMCWUiSOOCL94QO0w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (White, 2019 Fantasy Contest)", + "GiftDropId": 10095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0ab6c95c-e157-48bd-a172-2642896b4ffc,t1MeoroFOUioYmPfT9mCeA,PoMG28QAskagun1LSd4C_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Dress (Green)", + "GiftDropId": 10096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0abb6b08-20ce-444f-879e-0d1344df096c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Earrings", + "GiftDropId": 10097, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10097, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White, Red)", + "GiftDropId": 10098, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10098, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,27af51bc-8226-4911-8d47-22d28ea8e378,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White, Blue)", + "GiftDropId": 10099, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10099, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,3df5d13b-ba77-4b51-90b2-7a946e4d0be7,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, Blue)", + "GiftDropId": 10100, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10100, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,6145292a-9002-41c6-8cd5-43679b6f542f,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Grey)", + "GiftDropId": 10101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,7c1aaa7e-503b-46ef-b1c5-0c61a75b916e,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Blue)", + "GiftDropId": 10102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,857fdcd8-704f-43d0-92b9-bca26619b153,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Blue, White)", + "GiftDropId": 10103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b5d62931-e756-4a8a-8f3b-760beba49319,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White)", + "GiftDropId": 10104, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10104, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0bc6bd1b-8b7e-4945-a1d6-c26b9c043318,b9f51861-ad10-4878-a9b1-d849bccf532a,8ec5de40-73fc-4f09-9bf3-ddf4701107bc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (Black, White, Red)", + "GiftDropId": 10105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Hat (Blue)", + "GiftDropId": 10107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,24zVmiGiaESrM5qcRfF6gA,3pdsIrhM9EW-y-LNnjbFxg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Hat (Orange)", + "GiftDropId": 10108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,C9cPjOoiCUCHrCBi809CMQ,3pdsIrhM9EW-y-LNnjbFxg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Hat (Red)", + "GiftDropId": 10109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0c537a84-9095-406f-8c87-1464f3a774ba,LOeHr4xoik6VOv1fOeImjA,3pdsIrhM9EW-y-LNnjbFxg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Hat (Green)", + "GiftDropId": 10110, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10110, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0d1ae26e-aaa4-4914-ad70-c9ab8cfabc61,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Box Braids with Cuff Hair ", + "GiftDropId": 10111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0d4e7ebe-efd9-4e68-9900-5645916e7596,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Silver Sequins)", + "GiftDropId": 10112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Hat", + "GiftDropId": 10113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,7Rw_gt9IUEOYsvVcOTbVBw,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Hat (Red)", + "GiftDropId": 10114, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10114, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,aiBfwCNwpUyJ0rYKCMa7qw,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Hat (Yellow)", + "GiftDropId": 10115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,B6qNcZQ770eJel13RskuIg,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Begonia)", + "GiftDropId": 10116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,cSFt9MWLj06CDzIzATqrTg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Poppy)", + "GiftDropId": 10117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,LEUQnDz-k0m-hY-AX3Z9Sg,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Paradise)", + "GiftDropId": 10118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Mt2a9ygWPkS-DyXj1q-Kvw,znNiHfNdTE-szOIAnIWFQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Lily)", + "GiftDropId": 10119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,p3g8YAOhTUKAiE-Wh-X-aA,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Dahlia)", + "GiftDropId": 10120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,Pu_1I6Zq-0G1HBMHa5MrKg,Cjy-bE0PikWLCRrL4U2NGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Hat (Green)", + "GiftDropId": 10121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0QOlT9c5xUuinpfZaoEe8Q,SqHAYcqBXU2PtF2urWGruQ,sIP83lqv3kG31TH5Rw4gqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Hat (Primrose)", + "GiftDropId": 10122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0yFzgVESokC3gFd3hrS8bg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Gown (Doctor)", + "GiftDropId": 10123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0yFzgVESokC3gFd3hrS8bg,GK3yolCNlEm3B_5DtHkE8w,yKb2A8M_m0GQDhFWCRUHTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Gown (Level 3)", + "GiftDropId": 10124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Mastermind)", + "GiftDropId": 10125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,9SAPupKy_EO6YeG0SMkI5A,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Rogue)", + "GiftDropId": 10126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,DtFYrQwaCky5C1ZycqZbiQ,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Spy)", + "GiftDropId": 10127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1014dded-3bbc-479b-a6cb-afa7413de2da,hiMYlmk5sEqh-sElOY3A9g,egpzBs77Q0CpDndZHqXOog,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Gloves (Outlaw)", + "GiftDropId": 10128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Black, Red)", + "GiftDropId": 10129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,DzgN67HoikexE2rTlZLdYQ,vm1ESK9ls0SaxSwHplNALQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (White)", + "GiftDropId": 10131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,Em__GeYWaU2pAEqWYCBKpA,DG83ruIdI0Wu-GSRg4icYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Gold)", + "GiftDropId": 10132, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "For earning $10,000", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10132, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,n8t0gIYFbUaPMhyQeWkPSQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Galaxy)", + "GiftDropId": 10133, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10133, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "102c625b-b988-4bf8-a2aa-a31ad7029cdc,xeK_acj2hE-sYGhsMRwjhw,HwhHShudGkGjXagJxCN2uA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Patchwork)", + "GiftDropId": 10134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Shirt (Tan)", + "GiftDropId": 10135, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10135, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1041d745-c5e9-4218-a3e1-198f5c9c418c,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,84c016ad-133f-45e3-a412-cac35612540b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Shirt (Green)", + "GiftDropId": 10136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "105a5100-cb57-410f-a26b-1ee21002f067,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Coat", + "GiftDropId": 10137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "105a5100-cb57-410f-a26b-1ee21002f067,prEZHWvOM0ysaNfAe06ywA,q0nBwoIx_UWPe93wHDWTYA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Coat (Lilac)", + "GiftDropId": 10138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "11b3413f-2c18-41cb-8ef2-55fb825ed476,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plush Bunny Backpack", + "GiftDropId": 10139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "11b3413f-2c18-41cb-8ef2-55fb825ed476,DNGqrCGe8kKrNmJaGzjjew", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plush Bunny Backpack (Pink)", + "GiftDropId": 10140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "11cec676-0ec3-4778-abe4-a9d399900b54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Belt", + "GiftDropId": 10141, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10141, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "11e508a7-fe7d-470e-b270-2dba33e2f7a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Goggles", + "GiftDropId": 10142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Brown)", + "GiftDropId": 10147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7fb8496f-0e6c-4e48-b8fa-5709ebbf4820,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Tan)", + "GiftDropId": 10148, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10148, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,7nRz9Jmnn066_PzngkhfFA,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Red)", + "GiftDropId": 10149, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10149, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "125a3a62-1005-47dc-9fd8-ee09ea803e9f,97bbb384-b37e-4ea1-902c-88fbd6854ab5,5659ce2c-9cb0-49da-8c39-4b7df0f8deec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Gloves (Black)", + "GiftDropId": 10150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Black)", + "GiftDropId": 10151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,6fmUy748hU2dgwgaijSkUA,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Green)", + "GiftDropId": 10152, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10152, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,buuNFd8sK0eap78TL1gMNQ,-UFHTNvJs0CGDStb0PFkbQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Blue)", + "GiftDropId": 10153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,dBR1uNgk206eVoWntVzVAg,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Brown)", + "GiftDropId": 10154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,LIgagNf4gk68EYQdlDruxg,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Red)", + "GiftDropId": 10155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "12ec292f-0ccd-4c8a-a49c-3598f827659d,zPGCmxM_b0yTt7tqMaomcw,rL9p5JY83Eyxj00Dieg7oA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basic Belt (Tan)", + "GiftDropId": 10156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Hat", + "GiftDropId": 10157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Doo doo doo doo doo doo", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "13e70c80-69a4-4ad5-90e5-4dd5e03da677,ln5aTG458UOVh4sR820FJQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Hat (Tiger)", + "GiftDropId": 10158, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10158, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White)", + "GiftDropId": 10159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Black)", + "GiftDropId": 10160, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10160, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,484b6c13-af22-4ad5-8c43-34c0de095d49,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Light Blue)", + "GiftDropId": 10161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Orange)", + "GiftDropId": 10162, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10162, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Buckaneer)", + "GiftDropId": 10163, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10163, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Yellow)", + "GiftDropId": 10164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White))", + "GiftDropId": 10165, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10165, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Red)", + "GiftDropId": 10166, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10166, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,cfiCxhJZ20u07X1x93tNZQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Hat (QuinnXCII)", + "GiftDropId": 10167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Blue)", + "GiftDropId": 10168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,M8IYDK6aTUyn5mRhr51GtA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Orange, Black)", + "GiftDropId": 10169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,mdSSJyipq0KvjDNQ2NyUaw,LQheTa-EvUaAonSyoWNmXg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Holographic)", + "GiftDropId": 10170, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10170, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nzFUAOCAFUCd9S-x4EKRwQ,Qx7nrZH-K06CgIoJYfFCCQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (Heart)", + "GiftDropId": 10171, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10171, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,nZor-clxlkm8EO9Gco0Otg,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Red, Blue)", + "GiftDropId": 10172, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10172, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Goblins)", + "GiftDropId": 10173, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10173, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,VB_2uEBs70-9MnLn3__upw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skater Hat (Checkerboard)", + "GiftDropId": 10174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,Vk1n941ZgkKrhrL9mh18oA,lxmw7EbzsUuoy0roRy5McQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Minitron)", + "GiftDropId": 10175, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10175, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,XLYLo5qgW0eociGDgQ16PA,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Yellow, Blue)", + "GiftDropId": 10176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,xPs8BvGgdUC1i_luWAfSFA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NBA 75th Anniversary Cap", + "GiftDropId": 10177, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10177, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,yxWEn-oaYE2YvvnrTVV5WQ,r_GLekt6mkWxXw8zPPR8Mg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Cap (White, Turquoise, Grey)", + "GiftDropId": 10178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "155c13b9-3c72-4314-85ac-6fbac19cdc76,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rogue Shirt", + "GiftDropId": 10179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Green)", + "GiftDropId": 10180, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10180, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Blue)", + "GiftDropId": 10181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,5_UnQ7vZ9E2T-EhJ7M-mQw,jL-LAsd03EeN1J-Zp8opew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Green Lightning)", + "GiftDropId": 10182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,916384ca-e209-42a0-bd64-c64f5a40b56f,96b36c98-cba1-4337-91dd-c74c00316f97,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Red)", + "GiftDropId": 10183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1596c113-aa3a-4f5c-b398-e5c3575548e7,RA7cizxxYE6J8yV_0XwPxA,VSLcLM0TJU2kJU5gS4KZGw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Mask (Pouncing Tiger)", + "GiftDropId": 10184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skateboard on Back (Skull Pink)", + "GiftDropId": 10185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,7WzGZTf51EWClLTLNhhGVg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skateboard on Back (Checkerboard)", + "GiftDropId": 10186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,RDkLPQ8OukGIuLgTwnyqfw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skateboard on Back (Vaporwave) ", + "GiftDropId": 10187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1631eb78-6718-478c-9b62-abbb0537e09c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Hat", + "GiftDropId": 10189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1631eb78-6718-478c-9b62-abbb0537e09c,9Yj55hS4gEOB34bggoRnzw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Hat (Mardi Gras)", + "GiftDropId": 10190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1633766e-fa77-48f3-8c6c-a233e56bf320,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Cape", + "GiftDropId": 10191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mermaid Crown", + "GiftDropId": 10192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16707919-756d-45ae-95fc-cfb6715b8ae6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Helm", + "GiftDropId": 10193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16f4dc71-d35a-4269-b925-1a0cd85a43dd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Werewolf Shirt", + "GiftDropId": 10194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Yellow)", + "GiftDropId": 10195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,3frH6KxZ9kGUYkjeCDpylQ,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Green)", + "GiftDropId": 10196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,6t2rCb6WWEW6pJbcjsAFCw,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Fuchsia)", + "GiftDropId": 10197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,i1XbjBqTu0CILIuJClWimA,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Pink)", + "GiftDropId": 10198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,Lf4FjROSAEqXedFxpXFQfg,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Red)", + "GiftDropId": 10199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17236d76-e3b6-42f6-9179-6fcf0479436f,zu0Jk24WTkan6XWSwGU1Uw,B-sIpWNOfEigMeQF-WVR1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Singlet (Blue)", + "GiftDropId": 10200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1736a60b-6fb6-49bd-948a-fd3f3fc1be50,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Neutron)", + "GiftDropId": 10201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Beret (Black)", + "GiftDropId": 10202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,14b43bf9-5ba0-484e-ae5d-55cfeb09a70d,3485a30d-27f8-450b-b5aa-1ff3cd227d19,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Beret (Blue)", + "GiftDropId": 10203, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10203, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17aed0a0-70ed-49da-ad09-5bc4746f7718,5c8f36c5-07da-49f4-af02-d23207a43216,3485a30d-27f8-450b-b5aa-1ff3cd227d19,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist Beret (Red)", + "GiftDropId": 10204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17e64798-f6ca-47b9-84ed-0c83b8678056,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Karate Gi", + "GiftDropId": 10205, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10205, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17f275d7-c5b1-4a0c-857f-8fb7a5d7c57a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Helmet", + "GiftDropId": 10206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "184368a6-17fa-4cfd-bb57-a2862f6e17bd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yeti Wrists", + "GiftDropId": 10207, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10207, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "187569d3-23b4-4118-862a-ace7f50fec45,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rammy Floatie", + "GiftDropId": 10208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Red)", + "GiftDropId": 10209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,a5925738-a451-4f25-b622-ccbfa12bd88c,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Black)", + "GiftDropId": 10210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18cd3470-2dd9-4a0a-98bd-eae2d5f5d522,c64ac7a9-7fd4-4587-8626-0413a190b706,15edb8d7-2ff6-4170-a7e6-acd9e965cab5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Shirt (Green)", + "GiftDropId": 10211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Silver)", + "GiftDropId": 10212, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10212, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,565c17e0-496d-45bd-a2c3-564e118c06cc,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Black)", + "GiftDropId": 10213, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10213, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18feb3c2-049f-4f91-9f4e-6b5fcb4ab70c,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,d9be3a98-9da9-419e-9dce-fe58a3ad9c4e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Headband (Gold)", + "GiftDropId": 10214, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10214, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "193a3bf9-abc0-4d78-8d63-92046908b1c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Emo Hair", + "GiftDropId": 10215, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10215, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Untucked Tee", + "GiftDropId": 10216, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10216, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,_aQEMQzp20eMT_Izfc64wA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Cassette Tee", + "GiftDropId": 10217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,42YaouiGVEe3zSjTsvyfoA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Tee (Clinton Kane)*", + "GiftDropId": 10218, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10218, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,Eh1jgOjxpE-AEModcPAFMg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazz Fluence T-Shirt", + "GiftDropId": 10219, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10219, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,fzQzxcpDNEW8Rx122zmjAw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Tee (Charlie Curtis-Beard)*", + "GiftDropId": 10220, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10220, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,g_f9bH8tykGq3yRwWuQPOA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "KREQ Shirt", + "GiftDropId": 10221, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10221, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,GU267AQ5T0m1jco3mNw_uw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Maker Pen Shirt", + "GiftDropId": 10222, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10222, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,hbF6ChMyEk-L8O4f6o_l6A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sports Fan Shirt", + "GiftDropId": 10223, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10223, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,JpaGA1tG6U-VLsHH_vklzA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fourth Friday Tee", + "GiftDropId": 10225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,mzu-a8fcsUCW591ENABAgg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Tee (Haven)*", + "GiftDropId": 10226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,QQVh8FdTakO26iOFdzGoBQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Tee (Akintoye)*", + "GiftDropId": 10228, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10228, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,rQaQALql2E-zdM8072gfCg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prom T-Shirt", + "GiftDropId": 10229, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Rocked out at Rec Room's Prom!", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10229, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,S_dLd3dzvk2hM6ZA2DKTWg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Ball Shirt", + "GiftDropId": 10230, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10230, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,SV2UmeQDjEaMK_A2Q4tt3w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Royale Shirt", + "GiftDropId": 10231, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10231, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,vjO5ctMe0UC8GN6p61IC4A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "MrBeast T-Shirt", + "GiftDropId": 10232, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Mr Beast's shirt", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10232, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,V-vCW0ICl0Ke3QPAGo9GSg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bee Yourself Shirt", + "GiftDropId": 10233, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10233, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Black)", + "GiftDropId": 10235, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10235, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,64545dcc-a8eb-4c69-a539-78ee73a2d327,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Green)", + "GiftDropId": 10236, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10236, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Purple)", + "GiftDropId": 10237, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10237, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,909ed249-ce09-4304-8b02-56794fa7567d,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Red)", + "GiftDropId": 10238, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10238, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,aBQ3R9boek-mYeSYSNvDbQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Blue)", + "GiftDropId": 10239, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10239, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,e02838f8-4029-455a-b35c-dd40f972b05b,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (White)", + "GiftDropId": 10240, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10240, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1974dd48-aa44-434f-879a-eaff0c7c06e6,Tbrc2MlSlE6mKua8qSoluQ,5b8d9490-e5bc-480e-91bc-65d1797b52ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Gloves (Leather)", + "GiftDropId": 10241, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10241, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor", + "GiftDropId": 10242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,_C4RxcDBQE-mHh2oyL9vGw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor (Pink)", + "GiftDropId": 10243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,bhYZTPD1nEaEercLIZRucw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor (Black)", + "GiftDropId": 10244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1988692c-aae3-450b-acd6-e9015b831f5c,zw-evwOmg0q14P040EYYiA,a3I7EyRNVUilLfE6hriYtw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Gal Armor (Green)", + "GiftDropId": 10245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "19984948-b6b9-4d3b-8562-d0624930df6e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alloy Armor (Red)", + "GiftDropId": 10246, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10246, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "19984948-b6b9-4d3b-8562-d0624930df6e,Owi_JROR80-apNHw-4KNcg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alloy Armor (Black)", + "GiftDropId": 10247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Red)", + "GiftDropId": 10249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,5a614f97-ef7f-4b70-afff-9ed837a86407,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Green)", + "GiftDropId": 10250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,8053b5e5-0f67-4329-a45d-1ee9fc830820,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Yellow)", + "GiftDropId": 10251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a028850-64ee-40ab-b547-ebbcfa1b04b3,b444ed0a-eab5-4bd6-af34-d080de74a149,a8a91216-0fcc-461e-a682-95ee82509cce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Hat (Orange)", + "GiftDropId": 10252, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10252, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a0319e4-24e7-40b3-9976-70bff2c7ff23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Neck Tie", + "GiftDropId": 10253, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10253, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a71064b-794f-40fa-9109-8ad36602b6e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shagg Hair", + "GiftDropId": 10254, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10254, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1a742ff9-c4f7-45d8-8e24-8f24aa021db2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Demon Horns", + "GiftDropId": 10255, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10255, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Jacket", + "GiftDropId": 10256, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10256, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1b37d6cd-0a89-4604-a046-e5cff55b0cf6,0x7a3hV5XUyzyf8cUuzVtQ,vYAcZMymO0m6bCNQIsI8rQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Jacket (Tan)", + "GiftDropId": 10257, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10257, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1bd891b1-6ec0-4227-9ed8-73c59af4f819,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cleric Armor", + "GiftDropId": 10258, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10258, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Blue)", + "GiftDropId": 10259, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10259, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,AC3zfm38JEyBZWuXDh4Ukg,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Purple)", + "GiftDropId": 10260, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10260, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,dyEaPloE8kazWC7Zblv8uQ,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Red)", + "GiftDropId": 10261, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10261, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,RfZNDPUok0WyQEa3Ko08ow,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Pink)", + "GiftDropId": 10262, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10262, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,sX0ZZDcCUkyFSJISfvq0vg,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Green)", + "GiftDropId": 10263, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10263, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,TnEDe1QoMUCUdqPL_7CxTA,rgzG7sfrlkqd9EO13LNmpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Wrist Guard (Lavender)", + "GiftDropId": 10264, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10264, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1c89e162-fbce-45e2-a158-6bf0c4f5e52b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Festive Antlers", + "GiftDropId": 10265, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10265, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1c89e162-fbce-45e2-a158-6bf0c4f5e52b,1LtCxaCDjUmg62fYCjNUSQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Festive Antlers (Red)", + "GiftDropId": 10266, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10266, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1d27b674-f9e2-4ffc-9d8c-a58a1be06457,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Afro Hair", + "GiftDropId": 10267, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10267, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Orange)", + "GiftDropId": 10269, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10269, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Pink)", + "GiftDropId": 10271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1e504fee-b593-4037-bd8f-b88025147991,c9589974-c261-485e-b571-cb2f34fb178f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow (Green)", + "GiftDropId": 10272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (White)", + "GiftDropId": 10273, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10273, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,1919d319-6cce-4500-8766-15fed6a13fa8,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Gold)", + "GiftDropId": 10274, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10274, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,lBe3yxuE40eBmTrnEHBqQQ,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Purple)", + "GiftDropId": 10275, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10275, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1ebbfdfc-f72b-4d70-99d4-4d527f896aa7,oZ8k0Qv3SkG-DkY0_dP7UA,afd88a79-7f03-40f6-bcb4-c247dd86edc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Suit (Teal)", + "GiftDropId": 10276, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10276, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fab9cd8-257e-4825-8b7d-bd8bd281d362,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Shovel (Invasion)*", + "GiftDropId": 10277, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10277, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fab9cd8-257e-4825-8b7d-bd8bd281d362,q9hshPgwT0ijshnbKEBKWw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Shovel (Invasion 2)", + "GiftDropId": 10278, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10278, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fcaf4fd-9012-407e-b691-fbc3ccf22421,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Overalls", + "GiftDropId": 10279, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10279, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fcaf4fd-9012-407e-b691-fbc3ccf22421,S0AKRB_m2k-I7snHnUigtw,uTkbswCedUGyuZcaX0W6Ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Overalls (Creators Contest)", + "GiftDropId": 10280, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10280, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fd69ef8-0b74-4962-af5a-67f0bf0358f2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ponytail Hair", + "GiftDropId": 10281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1fed823a-22bb-4225-bdc4-491da6eba875,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Gloves", + "GiftDropId": 10282, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10282, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Red)", + "GiftDropId": 10283, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10283, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,b7oobDcDtE-69fhM-5g5AQ,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Yellow)", + "GiftDropId": 10284, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10284, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,Blev_VFjRUysY_nymGWAVg,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Green)", + "GiftDropId": 10285, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10285, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "204bc384-e6d2-41b8-8ce9-0b26be5d85b7,HdwZhjrqxE6wuf68MnDhDw,f5z_jhdcqEGjo-1WUmldaw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Apron (Blue)", + "GiftDropId": 10286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Hood", + "GiftDropId": 10287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20b424a9-861a-4d39-a583-22d7b7348c14,afnIqin4lkKKqWrvBvVagA,bCuW1YadE06p6v1dBHsx4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Hood (Movie Magic Contest)", + "GiftDropId": 10288, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10288, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Ferret) ", + "GiftDropId": 10289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,0wRS4Rs4ykqjJE_5Fk-Flg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Friendship Sweater (Oliver Otter)", + "GiftDropId": 10290, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10290, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,6dzz5ZcGtE6bEjQHxWmo0A,2cSC290cPkCOrW5vtlVUxw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Penguin)", + "GiftDropId": 10291, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10291, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,azbt5pgvrUS4LQwhndFeJg,cHZ4lDnSoUypIXCiRRowzg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Axolotl)", + "GiftDropId": 10292, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10292, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,oIVUmOrjjUysnN4XoWvJSA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Friendship Sweater (Olivia Otter)", + "GiftDropId": 10293, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10293, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,qzvnj7D1tUuf01HvpiIvqw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweater (Cow Face)", + "GiftDropId": 10294, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10294, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,yXVeN9SzQUKE_6u_2KPzgw,sWgRczvpUU6ZHeoMrMD_yw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Animal Sweater (Toucan)", + "GiftDropId": 10295, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10295, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "21599b51-c50f-43d8-ac5f-62c30cd02ca5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lori Hair", + "GiftDropId": 10296, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10296, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "21caa68e-c3fa-474c-af5e-af1e742b7a60,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Skirt (Blue)", + "GiftDropId": 10297, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10297, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "21caa68e-c3fa-474c-af5e-af1e742b7a60,758752bd-db2f-43d2-b580-55b3e1efffd5,b75ef67d-00c3-4ac1-9b72-212032460294,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Skirt (Red)", + "GiftDropId": 10298, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10298, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "21caa68e-c3fa-474c-af5e-af1e742b7a60,c5deba2a-6e35-4b13-8e94-8ba5457f39df,b75ef67d-00c3-4ac1-9b72-212032460294,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Skirt (Yellow)", + "GiftDropId": 10299, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10299, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zipper Dress (Yellow)", + "GiftDropId": 10300, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10300, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,6d703981-2734-4c45-8983-cdd5f328902f,cfabdefe-0890-436e-b2a3-b5c712e22955,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zipper Dress (Green)", + "GiftDropId": 10301, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10301, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,830be2fa-60a5-48cc-931f-34b670eae4bd,cfabdefe-0890-436e-b2a3-b5c712e22955,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zipper Dress (Purple)", + "GiftDropId": 10302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2296ed0d-df56-4d46-b33a-aae9230a47fc,bbfa08e3-8e6b-4e0f-b264-1b398d7cd44a,cfabdefe-0890-436e-b2a3-b5c712e22955,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zipper Dress (White)", + "GiftDropId": 10303, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10303, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Turquoise)", + "GiftDropId": 10304, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10304, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,0p_eXn2gXUKrshSEmrQx6Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Red)", + "GiftDropId": 10305, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10305, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,3cPbhpDX-EqDQy6eN1E5Ug", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Blue)", + "GiftDropId": 10306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10306, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,fAmEEm6ziUO2ZXTscQWtSg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (White)", + "GiftDropId": 10307, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10307, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,gEuE-X67b0-q5C0Tv11_nA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Green)", + "GiftDropId": 10308, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10308, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22a857bb-270a-4278-adbd-2df41181b36f,gk_mQ-jsakmxhZYYNlRl_w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Halo (Orange)", + "GiftDropId": 10309, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10309, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Blue)", + "GiftDropId": 10311, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10311, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,357eb160-360b-4a63-840d-65d11cc8ffc2,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Green)", + "GiftDropId": 10312, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10312, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Black)", + "GiftDropId": 10313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,a38254c0-00e3-429b-9d5d-b9e6a9812e69,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Red)", + "GiftDropId": 10314, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10314, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3a9b576-5433-4305-bd96-b08820c09212,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (White)", + "GiftDropId": 10315, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10315, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,d3KmqVuMQkCYK6sVTMOTOA,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Purple)", + "GiftDropId": 10316, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10316, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22ef1089-d073-4fe8-b038-6f34adf0b85f,RKmRHk2N_U2gd91nybo6vg,47514b9b-0d17-4727-97ed-dab67e7fe031,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Bracers (Yellow)", + "GiftDropId": 10317, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10317, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22pyI3Kz-UullhcebC6DLQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snorkel", + "GiftDropId": 10318, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10318, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23767c66-31de-4e6f-81f5-b17769a0fd5b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Neighborly Cardigan ", + "GiftDropId": 10319, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10319, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23944856-b567-4075-815f-261cb4655cff,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Jacket", + "GiftDropId": 10320, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10320, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Leathered Iron)", + "GiftDropId": 10321, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10321, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,GfC01_o8QkGTbnGNjv_DSw,7mLb5jMJMUug7Nzwxv6D4A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Wolf Steel)", + "GiftDropId": 10322, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10322, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,rFCKF2ku1UWj-TF-VClPRg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Cricket)", + "GiftDropId": 10323, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10323, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "23b97189-b49f-477b-8a22-0903b3d236f4,zld80uf3y0uu__Yejms-3Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Backsword (Galaxy)", + "GiftDropId": 10324, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10324, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "241506f6-bf88-4b46-b5fe-513a225421f4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Half Up Hair", + "GiftDropId": 10325, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10325, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24781418-38ad-411f-925e-2321fe616b51,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Cloud Hat", + "GiftDropId": 10326, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10326, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24a240f4-1574-420b-b898-a7e91f170759,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Bun Hair", + "GiftDropId": 10327, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10327, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Green)", + "GiftDropId": 10328, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10328, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,09Cg6dOq2kC2-tI5yyGSYg,YFZimVHKuk--lXS8RCrZTA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Snowman)", + "GiftDropId": 10329, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10329, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,3UxfTkPsEkezOXO__wz_mg,nalaCGqtL0SFA4Itwqmp8g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Vermont)", + "GiftDropId": 10330, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10330, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,6vjA_vHq70Gclypll_GS_A,nalaCGqtL0SFA4Itwqmp8g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Red)", + "GiftDropId": 10331, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10331, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,mraJrTA4V0eARb_Kq7yYVw,NH0L99bd00OVKMyltuSnHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Pine)", + "GiftDropId": 10332, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10332, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,u1JNHHTxSU-N53Bs9pRCoQ,0zHD3DaMAUOogqOqyd59SQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Ugly Ham)", + "GiftDropId": 10333, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10333, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,w7ybaJQVo0WCZFDPCJAtWw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Reindeer)", + "GiftDropId": 10334, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10334, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "24c4404a-839f-46bd-98b6-6848d747a98b,xVwzV9-m6E-8PVpkg4D-AQ,NH0L99bd00OVKMyltuSnHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Hat (Frost)", + "GiftDropId": 10335, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10335, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Zonked)", + "GiftDropId": 10340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,2vawoQvJPUegnClmr2RNAQ,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Zzz)", + "GiftDropId": 10341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,kIcd-yEnsEqxoeogquvmRw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Dozy)", + "GiftDropId": 10342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,qHyKfCsrbUqSWomjLXf7Hw,RR69IGV4j0Sd2xtmyN5wFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nightcap (Sandman)", + "GiftDropId": 10343, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10343, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "250bbb53-1fae-440d-b25a-46a16c271367,ZvUwd0aVfk6SjA7oyouXUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Starry Night Cap", + "GiftDropId": 10344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2565d597-9d17-4c47-a66f-b683583f0cf8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Bunny)", + "GiftDropId": 10345, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10345, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25769d1f-4ecb-4d92-b692-322b38c013b5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Strength) ", + "GiftDropId": 10346, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10346, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Brown)", + "GiftDropId": 10347, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10347, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,002b07bb-4256-44ce-8ca4-25510e70b6b5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Yellow)", + "GiftDropId": 10348, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10348, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Green)", + "GiftDropId": 10349, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10349, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,90869e86-cbc5-4024-9d08-fcdc41c64eb5,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Grey)", + "GiftDropId": 10350, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10350, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,bzYdPb8GWUS-CgT4wrziIA,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Shirt (Orange)", + "GiftDropId": 10351, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10351, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,e821aa74-2d47-4388-bcfb-1893b8a83a52,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Black)", + "GiftDropId": 10352, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10352, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25d4c652-1730-4925-925e-31a290a2272a,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,970a8c7e-d091-4719-bb9c-e3be8d46ee68,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Vest (Cherry)", + "GiftDropId": 10353, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10353, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "25e76b00-4c56-4259-968f-046c14fb36fd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Earrings (Musical Note)", + "GiftDropId": 10354, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10354, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "26f5e849-14b3-4cb3-ab92-673c94b37c51,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Demon Wings", + "GiftDropId": 10356, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10356, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "26f5e849-14b3-4cb3-ab92-673c94b37c51,CwObTyhghkWonhm5nTnAaw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flying Machine Wings", + "GiftDropId": 10357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "274cb9b2-2f59-47ea-9a8d-a5b656d148c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Saija Helmet", + "GiftDropId": 10358, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10358, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2786fc22-3d6c-440d-afcc-15890c061577,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bee Antenna", + "GiftDropId": 10359, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10359, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2786fc22-3d6c-440d-afcc-15890c061577,dXz9B9OH2UuLNV35u8KB-A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ladybug Headband", + "GiftDropId": 10360, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10360, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27c2eb7f-9fac-4c42-90c7-44e7a33d5303,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (The Blue One)", + "GiftDropId": 10361, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10361, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27cdecd2-88f1-40a8-80a9-87abd827c3c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Beard", + "GiftDropId": 10362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27e742bf-3081-4274-ba70-301f0edeb4f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Coat", + "GiftDropId": 10363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Towel Cape", + "GiftDropId": 10364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,GAzH2pThjECghCmCwKJPrQ,4T-xj-xtSEiv1PDYv30URg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "The Defenders Cape", + "GiftDropId": 10365, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10365, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,Hae8Pfe8mEWeF8mL9hC9dw,Vat8nL4ZBEK9mLABJiXS6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "The Amazings Cape", + "GiftDropId": 10366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,kE9vr2bKoUSFm7AkcXSmew,5o-249dUdUOhW28lrJY82A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Valor Society Cape", + "GiftDropId": 10367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,pEWioft3gkOMWS4tZFping,gOw6NOX-QUegt4mxjtfpfA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Masterminds Cape", + "GiftDropId": 10368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,SN8HDRADZ0GvrFgEHKMhWQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Towel Cape (Rainbow)", + "GiftDropId": 10369, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10369, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2822aa50-4344-434d-b46f-fd9443f865b9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Curly Bob Hair ", + "GiftDropId": 10370, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10370, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Black)", + "GiftDropId": 10371, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10371, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,a6796264-9c7e-4605-830c-06db8d0dc780,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Blue)", + "GiftDropId": 10372, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10372, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,baffdefe-de21-4551-9330-b50873965bdd,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Red)", + "GiftDropId": 10373, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10373, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28374ebc-4050-4ea0-b3b6-41ebe75cedf7,f3b2330a-b981-4c7e-902f-1f57382f2388,dd7472ed-bdcb-4811-81ba-5ed682fb7675,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Wristbands (Pink)", + "GiftDropId": 10374, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10374, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Vest (Blue)", + "GiftDropId": 10375, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10375, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,AcLApWMhAU6tK10O7KoOog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Vest (Green)", + "GiftDropId": 10376, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10376, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,dhJm0moskU6urIwG1TXs_A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Vest (Purple)", + "GiftDropId": 10377, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10377, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,J8z15LYBak6jHu3ZaaKAXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Vest (Red)", + "GiftDropId": 10378, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10378, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "283e98dd-1ba7-4997-858f-96046e0ac431,QSXXWZrS6UaoAUn3u7hXFw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Frantic Rabbit Shirt", + "GiftDropId": 10379, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10379, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask (White Glow)", + "GiftDropId": 10380, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10380, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,7BrllPDzNEyD9UZgdgM1Dw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Green)", + "GiftDropId": 10381, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10381, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,DJnKyNXtuEW1tbKBFscIng,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask (Pink Glow)", + "GiftDropId": 10382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,FO32QjZ17E66PiSEDyf0xA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Pink)", + "GiftDropId": 10383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,Ftonil9tzEWQnmRQuTxwxQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Orange)", + "GiftDropId": 10384, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10384, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,jhPUIkf5bkinMSsqPTK3fg,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask (Yellow Glow)", + "GiftDropId": 10385, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10385, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,kHPSqeM7JUqzMDtVxBGyBg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Blue)", + "GiftDropId": 10386, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10386, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,rv8cpfd8kUCK5NbwjNmExg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Mask (Purple)", + "GiftDropId": 10387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,s6DQxJ3gY0CG8L7JmcmRTQ,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask", + "GiftDropId": 10388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28e5dd74-7963-42cf-aa68-f8005aaf312e,ZY0rVNemjEuEMGMjuPNZyA,DfyODsHfIESXxVjcfZmBOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Mask (Blue Glow)", + "GiftDropId": 10389, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10389, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "28f00eee-d3d1-4cac-ac70-fca064fcbaf0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "He-Man Armor", + "GiftDropId": 10390, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10390, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Blue)", + "GiftDropId": 10391, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10391, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Green)", + "GiftDropId": 10392, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10392, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "293e7ad3-01c9-43af-96e3-06c34145ff12,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,FVdDQFOMQ06teQm2ANDPng,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Helmet (Red)", + "GiftDropId": 10393, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10393, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2a61c844-81c6-4f82-9c75-66cf308ed4e1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowgirl Hat", + "GiftDropId": 10394, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10394, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2af73868-b619-43f7-9b7a-37a8fe2502bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Edgy Earrings (Spiked)", + "GiftDropId": 10395, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10395, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Pink)", + "GiftDropId": 10396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,827a1538-51bb-4fef-99c1-7f1bebd9866c,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Red)", + "GiftDropId": 10397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,c5884778-a87f-4612-9717-86fbb65d440f,7d040391-03f7-4b3d-bcfd-a1278ff459c9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Headband (Blue)", + "GiftDropId": 10398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b2eb9e5-d52e-4004-bdb2-0bcf6910992d,rZOgFhv59UKssAH7k-UDyQ,eVl7mLA1VkmnR81YLF-ZNg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Crown", + "GiftDropId": 10399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b325613-84c1-46d8-86b4-a167d79661da,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sports Scarf (Buckateers)", + "GiftDropId": 10400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b325613-84c1-46d8-86b4-a167d79661da,ggpNxFtZMEaHlvWXsDl9Tw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sports Scarf (Goblins)", + "GiftDropId": 10401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b325613-84c1-46d8-86b4-a167d79661da,Jd_ahlwRskehLggn1T-GdA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sports Scarf (Shamrock)", + "GiftDropId": 10402, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10402, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b7a32da-eda1-45e1-b28a-f9f882cda7fa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Toy Jetpack", + "GiftDropId": 10403, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10403, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2b7f4dae-51da-4af0-b009-12d6005c85c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mullet Hair", + "GiftDropId": 10404, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10404, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Yellow)", + "GiftDropId": 10405, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10405, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,kX7ocqn8X0-4M1nw-KrwFQ,qC66Hu6yKEu2Res2o2z1Kw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Getaway Contest)", + "GiftDropId": 10406, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10406, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2bd53190-46f8-4956-9388-87c5a04efc4f,v3af60p1Q02NpdCqIRO9lw,1hVOI7IuY0mKvtr2PZXLww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rain Hat (Red)", + "GiftDropId": 10407, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10407, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c3773a5-a0b4-41c5-a4df-6572dff516c9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "2020 Glasses", + "GiftDropId": 10408, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10408, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c679f89-c76e-4cfb-94e9-448c8fd44d55,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Saija Shirt", + "GiftDropId": 10409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Calico)", + "GiftDropId": 10410, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10410, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,V1M2-FXZSEG782d6D0AhUg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Burmese)", + "GiftDropId": 10411, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10411, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,NaXiRmxgkkGK1U7IQ4yn8w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grinning Cat Hat", + "GiftDropId": 10412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,T-JZqXUd3kC1P8L5Pu4ZmA,ao-eeUnb8ECcW2IFGuk76w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiger Hat", + "GiftDropId": 10413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,VeZQlPI72E6e57IQqAOq6w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grinning Cat Hat (Pink)", + "GiftDropId": 10414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2c7f90ab-53f7-4579-bf5b-a1c0a6d49e37,wNde5lsob06eQxEH2t-zUw,5KeLrnvaKEWnEiap1xzmjw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Hat (Tabby)", + "GiftDropId": 10415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Spirit)", + "GiftDropId": 10416, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10416, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,FNe9LkWJMUeC3frYJMyEaQ,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Harmony)", + "GiftDropId": 10417, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10417, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2caHvVQ1vECrPv-YcdxdyA,mudt-Z5-5USdnIq-xaDgOw,nW_fBsuZA0OfIjTMXm6ZCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Unicorn Horn (Joy)", + "GiftDropId": 10418, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10418, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2cb4f372-3372-4583-8b57-c4e3988e3c28,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punky Hair", + "GiftDropId": 10419, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10419, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Atlanta Hawks T-Shirt", + "GiftDropId": 10420, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10420, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,2MUexARJAU-Vc-Qebqqepg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "LA Clippers T-Shirt", + "GiftDropId": 10421, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10421, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,49mpP0duKEylQ2v5ZU9SYg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Portland Trail Blazers T-Shirt", + "GiftDropId": 10422, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10422, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,4UTuNYISo0OP70FuGzmOsg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brooklyn Nets T-Shirt", + "GiftDropId": 10423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,9bQaIrqI00qtjdtkIkj_3g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Los Angeles Lakers T-Shirt", + "GiftDropId": 10424, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10424, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,a4r3MYNjT0Ok0uQX9BYH6w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "New York Knicks T-Shirt", + "GiftDropId": 10425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,B3wjSG3Ui0ipGgN3h7BFiw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orlando Magic T-Shirt", + "GiftDropId": 10426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,clStIXndXk2ayewq-1LKng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Miami Heat T-Shirt", + "GiftDropId": 10427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,dpxEW-2Un0eeVIsg5_o6Xw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boston Celtics T-Shirt", + "GiftDropId": 10428, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10428, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,eAq9xK51mE-Nu4RQY0ds4Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detroit Pistons T-Shirt", + "GiftDropId": 10429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,eCEF5P5N7EC_cEjM9-5iUA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golden State Warriors T-Shirt", + "GiftDropId": 10430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,H_lV3FQG0EC4ebW5vfnRIA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Philadelphia 76ers T-Shirt", + "GiftDropId": 10431, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10431, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,hE5scNMqJ0igY_jhufvNmg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicago Bulls T-Shirt", + "GiftDropId": 10432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,hoXpo41nnEOPGq20Tq-t9A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sacramento Kings T-Shirt", + "GiftDropId": 10433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,hU2rt41rvUqulLM1H5NX4g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Phoenix Suns T-Shirt", + "GiftDropId": 10434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,ibmxOUIFs06gOpRYLe58xg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cleveland Cavaliers T-Shirt", + "GiftDropId": 10435, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10435, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,j3S5Gk92mEOKlD424seciA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Minnesota Timberwolves T-Shirt", + "GiftDropId": 10436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,JBFu1kZ8C0ya5JZLDh0ynw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "New Orleans Pelicans T-Shirt", + "GiftDropId": 10437, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10437, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,kk271nI1MUu-gZjec9djrQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Toronto Raptors T-Shirt", + "GiftDropId": 10438, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10438, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,LpUOG6fHz0uQPtmOLtUlKw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dallas Mavericks T-Shirt", + "GiftDropId": 10439, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10439, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,M3vXSuDRw0GLNh9A4dF4vA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Washington Wizards T-Shirt", + "GiftDropId": 10440, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10440, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,nEBw9Nh1-kWcOynsm7P8Pw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NBA 75th Anniversary T-Shirt", + "GiftDropId": 10441, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10441, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,oflbr1qvHUyvwUxdFZMcmA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Milwaukee Bucks T-Shirt", + "GiftDropId": 10442, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10442, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,OpWc8pumTk6M6x1WSw3a6Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Houston Rockets T-Shirt", + "GiftDropId": 10443, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10443, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,ow_9g2xNj0G33-zWIhjW-Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Indiana Pacers T-Shirt", + "GiftDropId": 10444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,pvnZdyL9NEaYYX8T12AgVA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Memphis Grizzlies T-Shirt", + "GiftDropId": 10445, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10445, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,RddbstjtZ0ClxgY-s66tTw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "San Antonio Spurs T-Shirt", + "GiftDropId": 10446, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10446, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,sVeZH49mP0yBRKrbVr-0LA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Denver Nuggets T-Shirt", + "GiftDropId": 10447, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10447, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,tkHJl8TQHEiSeD-seDV4jg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Utah Jazz T-Shirt", + "GiftDropId": 10448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,yVNoqFjSeU6mPJxEJnzRLg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Charlotte Hornets T-Shirt", + "GiftDropId": 10449, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10449, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ce4ce1e-92a8-4868-8402-c6a1a995292d,ZDsylFpkEUi5PijTLSfYNg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oklahoma City Thunder T-Shirt", + "GiftDropId": 10450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2cf6ceee-4c45-4fb4-b9df-cb8437742e85,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doubloon Necklace", + "GiftDropId": 10451, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10451, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2d07c0d0-b277-46dd-8980-382bdaa4749e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angel Halo", + "GiftDropId": 10452, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10452, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2d07c0d0-b277-46dd-8980-382bdaa4749e,f6O5cw0vc0ineEptRysocg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Halo (Invasion)*", + "GiftDropId": 10453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2ddd2c2b-596c-4022-a488-655b0db1c265,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Glove", + "GiftDropId": 10454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Blue)", + "GiftDropId": 10455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,HWc25-d8dUmNN2F3n8mV5A,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Red)", + "GiftDropId": 10456, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,MS7EPNLJEEyMLC6_yHQYtA,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Purple)", + "GiftDropId": 10457, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,UUyjVU4mvECPhI9xTMYR1Q,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Green)", + "GiftDropId": 10458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2dFMy4zc7ky_Fd5fzfgInw,Y0e7o0_BKUm7XJSLediN5w,4EHIyZkOOEqnM-PuD_a5xw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket Cuffs (Black)", + "GiftDropId": 10459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e31fd6c-dffa-4571-8e53-fc28fd0c98e0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Apron", + "GiftDropId": 10460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Plaid, Blue)", + "GiftDropId": 10461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,071d1bf3-86dc-4a31-b54a-e6579fab8649,d015cae7-a905-49e4-8823-6dec069689a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Purple)", + "GiftDropId": 10462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,0iSsaY-HgkmLaRHCn5vEdw,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Blue)", + "GiftDropId": 10463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,55901f12-d5b5-4fa8-b4c8-e479689ee39d,f600037d-c9c0-43fa-b45b-02f456f9dd5f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Denim)", + "GiftDropId": 10466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,bf82f2f6-9af8-431e-a296-0890dea48ba7,d015cae7-a905-49e4-8823-6dec069689a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Argyle)", + "GiftDropId": 10467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,EfdMcnfHt0mr0PQ_maaYOg,DRJcNhkqvkKFEaZpOguR6w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Flowers, Green)", + "GiftDropId": 10468, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10468, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,FAviMCQ_EE2Mpt6QPo5OEw,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Red)", + "GiftDropId": 10469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,jGj28vhq8EGwP2RuM074aQ,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Yellow)", + "GiftDropId": 10470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,kmj5zOjcwku_WWKroCeiVQ,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Pink)", + "GiftDropId": 10471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,MFrcSQ1DYUm8imvy4ypgvw,PioQ0o3yP0a6szPZ4EKs2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (White)", + "GiftDropId": 10472, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10472, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,n4SdiVms4kaqdjXdbjRBbw,YEMLBlOWsEO4tELHseZ7LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Referee Shirt (Gold)", + "GiftDropId": 10473, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10473, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e59d8d0-91a0-4449-bfdc-a5d663fd9343,ojvIFCTpJkeegestF065wA,10fYSIBytk-yUjveDa407w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Shirt (Plaid)", + "GiftDropId": 10474, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10474, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Red)", + "GiftDropId": 10475, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10475, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,22dc463a-a89b-46ad-9a0d-557c742b4a80,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (White)", + "GiftDropId": 10476, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10476, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,59866578-d4e0-417b-9483-233ab108b1ac,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Cherry)", + "GiftDropId": 10477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Black)", + "GiftDropId": 10478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ed134bee-d199-43eb-98bd-206571603f40,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Blue)", + "GiftDropId": 10479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,ITH2OpzjP022vZ5JgxV_iQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Yellow)", + "GiftDropId": 10480, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10480, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e5afc40-7e25-418c-8b1b-316b8ef479a7,PMa9370LPEig_7pKwCceEQ,15099be7-38b7-4b0b-ac13-1bacedbf5fb2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Cape (Green)", + "GiftDropId": 10481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e7cbdb0-cf22-4938-964f-acca57d221b7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE Earmold - Red)", + "GiftDropId": 10482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e7cbdb0-cf22-4938-964f-acca57d221b7,aEsXeTI_SEOclbm82n17tg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE Earmold - Gray)", + "GiftDropId": 10483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2e7cbdb0-cf22-4938-964f-acca57d221b7,pZDvYABTN06KdJ5Ck60XLA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE Earmold - Blue)", + "GiftDropId": 10484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f77696c-618c-4fb8-9220-33839cd3bfcd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Top Hat", + "GiftDropId": 10485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Blue)", + "GiftDropId": 10486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (Green)", + "GiftDropId": 10487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (Red)", + "GiftDropId": 10488, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10488, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,de0a5a3a-8aff-4799-8269-9efa3aeb383a,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Red)", + "GiftDropId": 10489, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10489, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8518fc-c989-40de-98b4-c6f09b304166,e5de2e45-207c-46af-9a5e-eb01a0c621fe,ca37823a-b8f3-4414-b38b-de0dc7fa4295,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Jersey (White, Green)", + "GiftDropId": 10490, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10490, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,hPVbRnQq-EW3g0q17N6G5w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski's on Back (Orange)", + "GiftDropId": 10492, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10492, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,HQ1M8kINaEu-0HJtz7f8Gg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Ski's on Back", + "GiftDropId": 10493, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10493, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,OScwXIzJHUKzb-NC6gUnxw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski's on Back (Black)", + "GiftDropId": 10494, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10494, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,QVsGyxlefEeomtJO-dFAOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski's on Back (Yellow)", + "GiftDropId": 10495, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10495, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2f8ba691-4508-4254-adb1-c2b554db4925,sNtmG8EODkOoiAdOi5Hetg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski's on Back (Blue)", + "GiftDropId": 10496, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10496, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Hat (Tan)", + "GiftDropId": 10497, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10497, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,2Mgx6S9f8k2H1AAYbkzjQg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Hat (Red)", + "GiftDropId": 10498, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10498, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,48c18418-01dd-40ff-9dfe-c4cf5f4e1245,ddf429fd-a883-48a5-869b-bc12e44d30bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Hat (Gray)", + "GiftDropId": 10499, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10499, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2faa26b6-f7c3-4b0d-8f70-1f9454e64a54,6584dada-499e-4d7c-958d-466955b20640,ddf429fd-a883-48a5-869b-bc12e44d30bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Hat (Blue)", + "GiftDropId": 10500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2fadddc1-babd-4cb3-8f5a-0e7c889c3785,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Helmet", + "GiftDropId": 10501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3028ba83-0c85-4e27-a47a-56609fa58b33,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dirt Bike Chest Protector", + "GiftDropId": 10502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Red)", + "GiftDropId": 10503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,ktnYOVEhtEmuxmjM1TjIOQ,EqNosRGf5U-5P1nKIRV3fw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hallow's Dress (Patchwork)", + "GiftDropId": 10505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,oM7qz730lke-off_cQw-cA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Fancy Dress", + "GiftDropId": 10506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "30380607-8b54-4b63-81d3-cb3f08e452c1,rcdwgNvO30Cvx2ycE1GfHw,JmFzNL5v_0q1p0bgoOlBpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Black)", + "GiftDropId": 10507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (June Pearl)", + "GiftDropId": 10512, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10512, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,46f7Ewe99E6tF2qFaMtQ0g,8IK1U23XlUOV-2ibVznkDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (April Diamond)", + "GiftDropId": 10513, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10513, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,adwzLAQEykK8D5hZGQ6yiA,0Nca5nBUpUquFhExd5dxcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (July Ruby)", + "GiftDropId": 10514, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10514, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,C9CZUwEZeUiuOue4CK4luA,gUxl7WNXlUqFYHZ9eGq1cg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (February Amethyst)", + "GiftDropId": 10515, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10515, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,FgLAEMh1e0GyHO8J8_xj5Q,iM-04HpG6k2N8n-P3XS22w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (January Garnet)", + "GiftDropId": 10516, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10516, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,imOiYzABkUm9C5EVzvjXgg,0eZVIsv7wUyZ0ohLmF1jGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (December Turquoise)", + "GiftDropId": 10517, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10517, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,kQD41xK4dU6dI_6pRkP0qA,aSeusgYlPE6vOBu9Ua_dWA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (September Sapphire)", + "GiftDropId": 10518, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10518, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,mM7I9kDTx0ut243UkWKXvw,YKaJjmMHo02FWwem8nw1yw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (March Aquamarine)", + "GiftDropId": 10519, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10519, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,R0f3hHGY9UqUEW4aR1fssA,KSqfmVTiGUKOKijwGDSwgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (May Emerald)", + "GiftDropId": 10520, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10520, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ro4sD9txVE29_eT2jK-wEg,0YF5bACMsk2sN4tixbJbKw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (October Opal)", + "GiftDropId": 10521, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10521, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,-YsxhNXLAk2qbeXMqwAqng,aNOhXS4nuUeqs0CVw6K7Hg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (November Citrine)", + "GiftDropId": 10522, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10522, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "308171c3-cfd1-4ff2-8593-856e8de7071a,ZsWc8wRafEGl3B7cr6UkzA,ByIfwCtDwU-p9rEfqpjfGg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthstone Earrings (August Peridot)", + "GiftDropId": 10523, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10523, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears", + "GiftDropId": 10524, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10524, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,A-xoYdSUF0aEr_XZ9Me-3Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears (White)", + "GiftDropId": 10525, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10525, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,db-JiDmRhUKX69weDLiHsQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears (Black)", + "GiftDropId": 10526, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10526, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "31bb82db-cd30-4988-a8bf-3ce55a12a4c9,UZY81cnsV0meMp2lg3_UaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fox Ears (Brown)", + "GiftDropId": 10527, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10527, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "32b7a724-1112-476d-9ddc-2d04655c9df0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leaf Backpack", + "GiftDropId": 10528, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10528, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hiker Shirt", + "GiftDropId": 10529, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10529, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Ears", + "GiftDropId": 10530, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10530, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,85pvpo4QqUSrdsbofGkoWg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Bat Costume Ears", + "GiftDropId": 10531, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10531, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,f6XXbe_mhEuZJ9in5vDRGw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Ears (White)", + "GiftDropId": 10532, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10532, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "336aeb24-33a1-4aae-82e6-4fdbd1330452,mnYzlq3Rw0-Q89gmc5f9XA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Ears (Black)", + "GiftDropId": 10533, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10533, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Goggles", + "GiftDropId": 10535, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10535, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,3HAMDzfFO06jtYNXm2Bsjg,_Jx5VqGbVUCPwl_SaUCTRA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Goggles (Red)", + "GiftDropId": 10536, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10536, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34144f4c-f6ef-49e5-a286-1781e82e6782,kS7jek5tPkSkIgjIF369Vg,_Jx5VqGbVUCPwl_SaUCTRA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Goggles (Blue)", + "GiftDropId": 10537, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10537, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "341dcb4a-818c-4d7c-9ae3-1dabbb79519a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Solar System Hat", + "GiftDropId": 10538, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10538, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34654303-9760-447f-8614-1c26506db994,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Hat", + "GiftDropId": 10539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Blue)", + "GiftDropId": 10540, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10540, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,4effd67c-a52f-4b41-a5b0-04287f91a7bc,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Purple)", + "GiftDropId": 10541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,59a62fa3-9e15-463e-9bd5-3aecdf604c1b,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Black)", + "GiftDropId": 10542, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10542, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,ojTIShRZHEOV1qQRfhwvTA,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Green)", + "GiftDropId": 10543, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10543, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,RU-B71GUF0WPduoSOI1XMg,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Yellow)", + "GiftDropId": 10544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "348ac48b-986e-4d42-a0f7-1aea16b88271,se0-2ylLD0u6sqCVPkeP6A,54a5c055-f757-4c00-a1e1-8b0b6552c608,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Jersey (Red)", + "GiftDropId": 10545, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10545, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (White)", + "GiftDropId": 10546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,32dde6dc-e3dc-43ee-9b7c-987bc6778c17,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Orange)", + "GiftDropId": 10547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,88c3ed05-ce41-4a9d-a4a7-8a428d240b3f,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Black)", + "GiftDropId": 10548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,kCqthBeVvUKZA9b76kxuVQ,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Gray)", + "GiftDropId": 10552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34d45669-b319-4c7d-bd05-078961d70d0b,vMqhT19x302aYEo6E9HhOA,e17481fc-b2b6-47a5-91e5-7205f45a3247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Shoulder Pads (Red)", + "GiftDropId": 10553, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10553, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34f45c5b-fea7-40b4-add7-bc7a37000ab5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Captain Hat ", + "GiftDropId": 10554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34fa5014-e516-42a1-aaa8-91d2b6f59727,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bladed Wings", + "GiftDropId": 10555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "34fa5014-e516-42a1-aaa8-91d2b6f59727,fWZekjhIxUWhxgVGTWrVsg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Bladed Wings", + "GiftDropId": 10556, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10556, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Shirt (Red)", + "GiftDropId": 10557, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10557, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,7amHTgEv-UOJSGl0ofo4mw,CUCKsNVnIkavHjcspWAv_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Shirt (Green)", + "GiftDropId": 10558, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10558, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "350c5c1e-318b-4233-a7e5-1f49909d8e65,cKHAetNcgUOxFfDkAPPF9w,CUCKsNVnIkavHjcspWAv_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Shirt (Blue)", + "GiftDropId": 10559, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10559, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "352b49fc-99a2-4f05-a688-866ade1cd394,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Shirt", + "GiftDropId": 10560, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10560, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "352b49fc-99a2-4f05-a688-866ade1cd394,PabSuDB_GEejMahhLvLkJg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Shirt", + "GiftDropId": 10561, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10561, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overcoat (Blue)", + "GiftDropId": 10562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,_3hxdSy9wU6OUPZJA9kGmA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brown Turtleneck Coat", + "GiftDropId": 10563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,B5t5RbzKdEObKDlXLcRp7Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Turtleneck Coat", + "GiftDropId": 10564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,J36t8RwGPUqtLBsF-_UtEw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Purple Turtleneck Coat", + "GiftDropId": 10565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35d67043-ca27-4b8a-a893-2d42674e6e68,OaOC278jEE-owjtDP9ZLow", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Yellow Turtleneck Coat", + "GiftDropId": 10566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Skirt (Green)", + "GiftDropId": 10567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,2bb65868-ee12-4871-b50d-64bbc9066f0b,e65530f7-543c-43e9-bf12-b6cda2bc755c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Skirt (Red)", + "GiftDropId": 10568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,VL_OnsbYNkGgGAV16x5tQA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Girlscout Shirt (Mutant)", + "GiftDropId": 10569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "35f60d27-22cf-4e17-8f39-c9e3a9fa2291,XxVqGAlweUKta__sKdMP3Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Girlscout Shirt", + "GiftDropId": 10570, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10570, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "36b2ccf4-4f42-4dc4-aeaf-f3d10b2a6d30,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Etched Fade Hair ", + "GiftDropId": 10571, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10571, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3739a9e1-6dfa-45d2-af54-cc83a58d436a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cosmic Hero Suit", + "GiftDropId": 10572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3739a9e1-6dfa-45d2-af54-cc83a58d436a,GpYghupLTUK9cuiL-0uHYg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cosmic Hero Vest (Rhythm and Rooms Contest)", + "GiftDropId": 10573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Green)", + "GiftDropId": 10574, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10574, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,09Cg6dOq2kC2-tI5yyGSYg,3fQj_7meDEeQqm_7RfEfxQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Snowman)", + "GiftDropId": 10575, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10575, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,fq0xC9BjLECbsQIZfAvK9A,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Vermont)", + "GiftDropId": 10576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,fTWOc1eEl0aVKXwTYYjA9Q,31nK13dsTkaIf3tGFrZlJQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Ugly Ham)", + "GiftDropId": 10577, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10577, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,i33RmJJCwUem-ADkOwMNQQ,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Pine)", + "GiftDropId": 10578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,LDqcPkvNXE2gFXxbpNkfhA,Too5jpb1w0iQenkjRRS-QA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Red)", + "GiftDropId": 10579, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10579, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,PG6H6px5HkO4X_xPRd1idA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Reindeer)", + "GiftDropId": 10580, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10580, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3757149b-f478-4975-81e5-d808a1bed8d5,XOBIPrKCr02xa4tKj8wN9g,Yn1uv3Y8JE6VSxsf0LOBvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Sweater (Frost)", + "GiftDropId": 10581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "37668d3d-c9f4-4bd6-81d4-a4f64ba2d61b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bee Wings", + "GiftDropId": 10582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "37668d3d-c9f4-4bd6-81d4-a4f64ba2d61b,USdUyjIzY0q5af3AeTFCOQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ladybug Wings", + "GiftDropId": 10583, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10583, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "37b68987-73d9-4aae-8e3a-edd24ae890a9,UCxz68a5E0WaZkocDfEf5A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silver Slugger Necklace", + "GiftDropId": 10585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "37f7b94a-92ba-4f5e-b94c-de00acfa4722,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Etched Flattop Hair ", + "GiftDropId": 10586, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10586, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "380a5e35-b4d0-4119-9721-8ce4c0840fbd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Starship Helm", + "GiftDropId": 10587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "383d4bb7-1ffc-4b40-9b7e-cfeaf9ac5fdd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thick Shades (Gold)", + "GiftDropId": 10588, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10588, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Belt (Black)", + "GiftDropId": 10589, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10589, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,0f71b9a2-dd88-435c-a571-4503d12dcf2d,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Belt (Red)", + "GiftDropId": 10590, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10590, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "38b38e24-d636-41c6-b80e-a285ae3106dc,f4ad4b9e-dd42-4711-9437-5beae51966f6,9b2102f0-e16b-464f-9f1c-f068de52bb89,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Belt (Gold)", + "GiftDropId": 10591, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10591, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "38e7e182-5166-42d9-9ed3-b525b98579c1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teela Armor", + "GiftDropId": 10592, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10592, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3916a22b-ef4b-4ecc-9945-fd57867af597,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hiker Backpack", + "GiftDropId": 10593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Shirt (Purple)", + "GiftDropId": 10594, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10594, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39278302-b52a-48a8-a566-ed756a5fa1a9,e3454bc7-c88d-4958-8b81-db3fe5472a1e,da36bbcc-2a9a-4ba2-9e4a-6f52c9b1ef74,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Shirt (Pink)", + "GiftDropId": 10595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39854685-4793-439b-9c64-c98825456a03,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweet Tooth Shirt (Milk Choco)", + "GiftDropId": 10596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39854685-4793-439b-9c64-c98825456a03,qVeFYveZQEmobBTEMg1RTw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweet Tooth Shirt (White Choco)", + "GiftDropId": 10597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39dde11e-7aa1-4bd2-8532-62665e8d8dd3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gentlelady Dress", + "GiftDropId": 10598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Green)", + "GiftDropId": 10599, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10599, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,09Cg6dOq2kC2-tI5yyGSYg,xq7bizx6UEGaMTHB9zI3pw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Snowman)", + "GiftDropId": 10600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,83jS7d-cUUC_GNDcGpiDxw,jQjfiz2i6kaPfrkjnBGxBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Vermont)", + "GiftDropId": 10601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,afWY5VGiF0isGn6qpo4KeQ,_yvss6L59US4-8QYZgcCdA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Frost)", + "GiftDropId": 10602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,e6hTzFc-fEiJe0L4jDVxRQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Reindeer)", + "GiftDropId": 10603, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10603, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,MmGNESXgOkiZ0xCG41E9ig,Nc6jwNeK_kyajH5xKzCNVw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Ugly Ham)", + "GiftDropId": 10604, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10604, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,SWvJWvMDpE-it5PFoPgERg,jQjfiz2i6kaPfrkjnBGxBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Red)", + "GiftDropId": 10605, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10605, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3a790be3-2937-44d4-be01-b5d65353bd3d,tyzdtSkR9k-YCnjNvPAT6w,_yvss6L59US4-8QYZgcCdA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Mittens (Pine)", + "GiftDropId": 10606, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10606, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Yellow)", + "GiftDropId": 10607, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10607, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,09zFwIT2AEaQsijLJR2aSw,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Beige)", + "GiftDropId": 10608, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10608, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,g4_xqu9o9US9lIiBsn2BKQ,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Olive)", + "GiftDropId": 10609, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10609, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,mtIyC_me2EuHSur1ghsKDA,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Red)", + "GiftDropId": 10610, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10610, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ad53d67-e89e-47eb-94ee-bbd054652815,RvVVu7gWUEmofuJiZqevlg,i0itjI0qz0Cdn-es5NBScw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Scarf (Purple)", + "GiftDropId": 10611, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10611, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ae0eb82-13ce-43a2-bbc2-99a1cdbec63f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Crab Hat", + "GiftDropId": 10612, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10612, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Belt (Black)", + "GiftDropId": 10613, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10613, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,53dd9e44-7096-438e-a7c3-11d7c307426f,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Belt (Brown)", + "GiftDropId": 10614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3af4c506-d49c-4126-9437-1d3bb1658863,c3c9f89c-580c-43c4-b38b-07394044e0e1,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Belt (Red)", + "GiftDropId": 10615, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10615, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Jacket (Blue)", + "GiftDropId": 10616, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10616, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,556141f7-6fbc-4065-9faa-8d8240a93d7f,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Jacket (Red)", + "GiftDropId": 10617, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10617, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,d81d0b62-e052-46c2-9252-4bc5fb219f53,00ac4e37-6eac-4ed5-b46c-2c075038bc3f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Jacket (Gold)", + "GiftDropId": 10618, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10618, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b00c71f-79c2-4a04-9fc0-a23b4c85562f,xGmnUGF-Ck-jP43r8tVVjg,52053afd-9f12-4fec-a358-7eb3fe8c19bb,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Jacket (Green)", + "GiftDropId": 10619, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10619, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b30adc7-a1ad-46ff-96ff-08e656396c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boombox*", + "GiftDropId": 10620, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10620, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b792b59-50c0-4c28-b367-fc694b1d65d1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Belt", + "GiftDropId": 10621, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10621, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b792b59-50c0-4c28-b367-fc694b1d65d1,0Ua_WtxcNEWc_KoRuuHhtg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Utility Belt (White)", + "GiftDropId": 10622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3b792b59-50c0-4c28-b367-fc694b1d65d1,PXssHhcJsUmUKGA8T4u85A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Belt (Yellow)", + "GiftDropId": 10623, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10623, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3bb50a88-09ae-48c7-a42c-df5879680eff,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Construction Gloves (Yellow)", + "GiftDropId": 10624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3bceb51c-ef29-4942-8b8b-a15ed4a41451,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moon & Stars Earrings", + "GiftDropId": 10625, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10625, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3bceb51c-ef29-4942-8b8b-a15ed4a41451,4lwF00Rvb0Kr3FJz07HlOQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moon & Stars Earrings (Gold)", + "GiftDropId": 10626, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10626, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3c2ed30c-ca2a-4f9f-9bfa-ffe561c4a686,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Layered Jacket", + "GiftDropId": 10627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3c9acb9e-3353-4359-aa5a-ae9512b086b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Wrists", + "GiftDropId": 10628, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10628, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3c9acb9e-3353-4359-aa5a-ae9512b086b4,dro7VLV8BkGjqpPAbJheYA,bNA44H2wzUy-FkWgyOq1Kw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Wrists (Creators Contest)", + "GiftDropId": 10629, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10629, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3cd52c5d-0c46-41c0-8254-c4542805da31,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pioneer Bonnet", + "GiftDropId": 10630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ce86805-987e-4958-bcc9-57d89c4a5b1a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Glasses", + "GiftDropId": 10631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ce86805-987e-4958-bcc9-57d89c4a5b1a,PGZihr096kC4XZvHfmVMzA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Glasses (Popstar)", + "GiftDropId": 10632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10632, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Black)", + "GiftDropId": 10633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10633, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,37f8378b-b98c-477a-b8c9-9340772800b5,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Creators Contest)", + "GiftDropId": 10634, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10634, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,713781e5-ce47-41c6-a24f-94d42a565e30,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Brown)", + "GiftDropId": 10635, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10635, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,96e42c7a-2881-4299-a2fe-80c0d4d5ca26,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (Grey)", + "GiftDropId": 10636, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10636, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d5184e1-0201-4476-bf4b-4eb28190de62,c1e430c5-fd8d-4032-9e3f-8d87cc8784da,1e3195ab-f7f6-41f4-a5ec-378d09ecdf69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ears (White)", + "GiftDropId": 10637, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10637, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Black)", + "GiftDropId": 10638, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10638, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,9RPbhHJWBkqwpDbMg-QumA,Qzklnrvw0EOiZ1mrj_nAYw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Premium)", + "GiftDropId": 10639, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10639, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,bJXcVtY7qUK101QUAgr05A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Gilded Vest", + "GiftDropId": 10640, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10640, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,ffHKr5EcIU24PbAtWSnalw,bVrkIyADCUiGNYWdmP_HPw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Red)", + "GiftDropId": 10641, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10641, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3d9d52cb-6a3d-436b-90e7-e76f238329ee,m4W5D0Oa9kaWa-8I96YYzA,WF_fg80f30qvHit0vGBwCA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Vest (Green)", + "GiftDropId": 10642, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10642, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Blue)", + "GiftDropId": 10643, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10643, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,5fb2e235-8c67-4335-b432-edb10db2b139,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Tan)", + "GiftDropId": 10644, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10644, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,67fc9269-8dd8-4d6f-b594-c77e716f2482,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Green)", + "GiftDropId": 10645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,b539777f-48b2-44a2-9d63-17ac703e4d57,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Yellow)", + "GiftDropId": 10646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dc003c5-428b-47d6-80fb-6520b63119e8,b995b419-1897-4c1d-98be-83d551f7ba71,daa38a31-fb7b-4e26-a2f5-728d6dcec81a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electrician Shirt (Grey)", + "GiftDropId": 10647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Brown)", + "GiftDropId": 10648, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10648, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,002b07bb-4256-44ce-8ca4-25510e70b6b5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Yellow)", + "GiftDropId": 10649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Green)", + "GiftDropId": 10650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,90869e86-cbc5-4024-9d08-fcdc41c64eb5,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Grey)", + "GiftDropId": 10651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,bzYdPb8GWUS-CgT4wrziIA,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Orange)", + "GiftDropId": 10652, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10652, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,e821aa74-2d47-4388-bcfb-1893b8a83a52,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Black)", + "GiftDropId": 10653, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10653, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3dec4865-cf23-4c19-a460-dd2db80ee851,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,8ffce0d6-d03e-4097-bc46-09b8894bc1d3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Gloves (Cherry)", + "GiftDropId": 10654, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10654, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Hat (Black)", + "GiftDropId": 10655, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10655, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,17040a88-87f1-4613-b439-3316e33dbd48,71fd06e3-cac8-4923-a09c-ef91183712d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Hat (Red)", + "GiftDropId": 10656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,f9aaa7c5-59bc-486c-9a6e-27a8ac618f84,4cc0ea9f-65af-486f-8319-02b85ab5197f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Hat (Gold)", + "GiftDropId": 10657, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10657, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3df394de-9c3e-4141-aba4-12eac4742102,jQwNBXyoU0Gk4FyNw6jFxg,4cc0ea9f-65af-486f-8319-02b85ab5197f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Hat (Green)", + "GiftDropId": 10658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e139dd9-4757-43a8-8546-8da70dc17f0a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Stache", + "GiftDropId": 10659, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10659, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e307eca-0850-4d85-8cc1-f5c176bfa7e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Apocalypse Scarf", + "GiftDropId": 10660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Blue)", + "GiftDropId": 10661, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10661, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,4Eck_dNL1UKlIZWsA1YppQ,WeyKw_WS70Cx3NZdOaxGeA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Grey)", + "GiftDropId": 10662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Green)", + "GiftDropId": 10663, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10663, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, Black)", + "GiftDropId": 10664, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10664, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,wMo3Bq1aXkCMFSRJft81BQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Punk Jacket", + "GiftDropId": 10665, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10665, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3e3f5ed5-d810-4054-b648-d93167b90033,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Sleeveless, White)", + "GiftDropId": 10666, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10666, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Primrose)", + "GiftDropId": 10667, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10667, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,Asfe0ZRi50eryD5wlJzgzA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Dahlia)", + "GiftDropId": 10668, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10668, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,B9DJPqTeYUuPnPHRbKzEJA,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Poppy)", + "GiftDropId": 10669, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10669, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,fV4H_1ZXx0-OVtlasI-xGQ,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Lily)", + "GiftDropId": 10670, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10670, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,J5VsmblfWU2MeUjNo0fz1Q,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Begonia)", + "GiftDropId": 10671, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10671, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eb14fcf-5d20-47d3-b991-97808798a225,yXZO-donI0SHB9-TT0jUdw,5ekjxLQZwUm7-iXJ0bYSiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Headband (Paradise)", + "GiftDropId": 10672, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10672, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3ec19cb7-d0a3-4c35-a7e0-dc1f8609d373,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pretzel Vendor Tray", + "GiftDropId": 10673, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10673, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Guitar Pick Necklace", + "GiftDropId": 10674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,0FlA_T8GsUe9PdiZamlP_g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Guitar Pick Necklace (Green)", + "GiftDropId": 10675, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10675, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,2r_gYLhQrkS0bjwaxLecfw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grey Guitar Pick Necklace", + "GiftDropId": 10676, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10676, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,dtuR9xLXVUGzSi2G1DMh7A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Guitar Pick Necklace", + "GiftDropId": 10677, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10677, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,Gct9Vt-L4UiTjAl61hsebQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Guitar Pick Necklace (Orange)", + "GiftDropId": 10678, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10678, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3eda64ab-2a11-4976-a253-bef7ac36ba5e,U8ZZiMEeZ0-qJfcpqBP72A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Guitar Pick Necklace (Purple)", + "GiftDropId": 10679, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10679, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3R_zf8xliEiurVU8GwaItg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Gown", + "GiftDropId": 10680, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10680, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3R_zf8xliEiurVU8GwaItg,iqSyLD37IUejWYa8ndvqnQ,qrXO8rdEaUqUCXC1QVkhsw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Gown (Lilac)", + "GiftDropId": 10681, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10681, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40258a3d-0d5b-4b67-bb99-4bafc6410311,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Helmet (Invasion)", + "GiftDropId": 10682, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10682, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (White)", + "GiftDropId": 10683, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10683, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,1919d319-6cce-4500-8766-15fed6a13fa8,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Gold)", + "GiftDropId": 10684, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10684, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,lBe3yxuE40eBmTrnEHBqQQ,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Purple)", + "GiftDropId": 10685, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10685, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4025e4c4-abaa-4729-a2a3-a7175313e5ed,oZ8k0Qv3SkG-DkY0_dP7UA,1f18670d-df52-4d2b-8009-a32cf7c67b40,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Gloves (Teal)", + "GiftDropId": 10686, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10686, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (White)", + "GiftDropId": 10687, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10687, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Grey)", + "GiftDropId": 10689, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10689, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Black)", + "GiftDropId": 10690, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10690, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,484b6c13-af22-4ad5-8c43-34c0de095d49,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Light Blue)", + "GiftDropId": 10691, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10691, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Orange, White)", + "GiftDropId": 10692, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10692, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Orange)", + "GiftDropId": 10693, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10693, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Yellow)", + "GiftDropId": 10694, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10694, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,6dd95046-acf8-42fe-ab78-80a334096a9d,56a92c8d-af53-413e-929e-4a9a3cfad780,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Red, White, Blue)", + "GiftDropId": 10695, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10695, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,7d8e55fe-3c34-4b4b-9753-0021f6cc6454,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Cream)", + "GiftDropId": 10696, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10696, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,8377ab96-c908-457f-9fee-b784c9a759f3,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Red, White)", + "GiftDropId": 10697, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10697, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Red)", + "GiftDropId": 10698, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10698, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Pink, White)", + "GiftDropId": 10699, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10699, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Pink)", + "GiftDropId": 10700, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10700, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,018a5c07-e956-457d-a540-a5e2cd68da09,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Blue, White)", + "GiftDropId": 10701, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10701, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Blue)", + "GiftDropId": 10702, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10702, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Green)", + "GiftDropId": 10703, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10703, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,RnrXuIRvMkeW5w1lcNiuaQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Print Headband", + "GiftDropId": 10704, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10704, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40528de7-38a3-4a7c-8f93-6d3bfa5573f2,TeSudgm-NEy3DXe3z_VRqg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headband (Retro)", + "GiftDropId": 10705, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10705, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "405f20aa-f888-4e21-b322-34d11017ff16,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frog Backpack", + "GiftDropId": 10706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "405f20aa-f888-4e21-b322-34d11017ff16,f-RfHoCWik6QgNKDhCs7Vw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frog Backpack (Pink)", + "GiftDropId": 10707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Gold)", + "GiftDropId": 10708, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10708, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,E1GfXDLUaUKaG9hTLAfFPA,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Silver, 2019 Fantasy Contest)", + "GiftDropId": 10709, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10709, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,QkfA71-1z0qOiZAVrbzhtA,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (Black)", + "GiftDropId": 10710, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10710, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40734c4d-e1fe-426c-8921-930f7463d8e8,wCe2yC2U1kyYvPd8Z1rX2w,hCeaYHy1TE2s6rTPxAQP9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Crown (White)", + "GiftDropId": 10711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4095a06c-ccdb-41a0-ac95-5a97372c9a02,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disco Ball Earrings", + "GiftDropId": 10712, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10712, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "40c1f20f-182c-4751-afd1-b572b0fd061e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dirt Bike Gloves", + "GiftDropId": 10713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Black)", + "GiftDropId": 10714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,64545dcc-a8eb-4c69-a539-78ee73a2d327,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Green)", + "GiftDropId": 10715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Purple)", + "GiftDropId": 10716, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10716, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,909ed249-ce09-4304-8b02-56794fa7567d,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Red)", + "GiftDropId": 10717, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10717, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,aBQ3R9boek-mYeSYSNvDbQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Blue)", + "GiftDropId": 10718, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10718, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,e02838f8-4029-455a-b35c-dd40f972b05b,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (White)", + "GiftDropId": 10719, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10719, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418db0e0-c7af-40c2-9cac-d461ce41e210,Tbrc2MlSlE6mKua8qSoluQ,0f49ac81-63bd-4845-8bdc-1944181a8aa3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Torso (Leather)", + "GiftDropId": 10720, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10720, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Hat (Tan)", + "GiftDropId": 10721, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10721, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "418ed21e-766f-4c69-9d57-6f866dcc7feb,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,0dabda0d-842c-4d39-a6b9-a8ca3ec20825,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Hat (Green)", + "GiftDropId": 10722, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10722, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Tan)", + "GiftDropId": 10723, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10723, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,_fBrHCkTKUe82QgxCyI-Kw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Black)", + "GiftDropId": 10724, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10724, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,58YffnGSUU6umcI1i0RvZw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Purple)", + "GiftDropId": 10725, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10725, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,c24f1DNZjEmqkt-FibKUjQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Brown)", + "GiftDropId": 10726, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10726, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,CJKB3OO2CkeEVsAK0jeeDA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Pineapple)", + "GiftDropId": 10727, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10727, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,F5vJzMfNB0Ob6Abjadho7Q,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Pink)", + "GiftDropId": 10728, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10728, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,fLWfBSEO6U6aHrDm3nKFEQ,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Green)", + "GiftDropId": 10729, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10729, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,Iezz6gCFfkKdVcmPXIhunw,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Orange)", + "GiftDropId": 10730, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10730, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,k-WZIhNJAkSpIWLxC2D40Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Beanie (Orange)", + "GiftDropId": 10731, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10731, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,SeVmHtrMS0y7gKCYkHcrOA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Gray)", + "GiftDropId": 10732, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10732, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,uDcJZClcFkiNdkEEh9IIyA,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Blue)", + "GiftDropId": 10733, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10733, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,vbOUaJsGHEaSfQCivNcMWg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (White)", + "GiftDropId": 10734, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10734, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,VE_cHMHKBE2Wuugoqj4rZg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Beanie (Black)", + "GiftDropId": 10735, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10735, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,wbFPXIg5gUK3QK6YycZexg,uWXtz0WaO0qJ1W4TfWnLqg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Red)", + "GiftDropId": 10736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Brown)", + "GiftDropId": 10737, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10737, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,2APfqVnnQUaDYKi-fQg8jg,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Red)", + "GiftDropId": 10738, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10738, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,bea795cc-aabd-4229-84dd-49ab4f91a445,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Tan)", + "GiftDropId": 10739, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10739, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42aa7888-f0b9-4584-9cc1-966585c6b36e,da185fbb-ad2b-4f30-87a2-491f24b78ebb,9009bcdf-b6f7-4dae-b2ec-895511d118ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Coat (Black)", + "GiftDropId": 10740, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10740, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42f1a780-1fe1-402e-bf11-176b768e33b9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Strawberry Side Purse", + "GiftDropId": 10741, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10741, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "42f1a780-1fe1-402e-bf11-176b768e33b9,jzGTu3tSB0WM430AiMGAAw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Strawberry Side Purse (Pink)", + "GiftDropId": 10742, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10742, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Pinstripe)", + "GiftDropId": 10743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,46970903-9799-4d25-b90a-7162c1f5dbef,c2052d8c-fbcd-4462-8f08-bcf5b3dfde2f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Creators Contest 2)", + "GiftDropId": 10744, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10744, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,4VkPVbBVLE-eJHilwGMAbQ,HTjlzAlWZ0ezY6w3ngSQSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Hearts)", + "GiftDropId": 10745, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10745, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,531b4297-b38b-4362-9854-4f2139ea43be,33ee376a-586e-4aff-a7e4-4213445a3e92,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Herringbone)", + "GiftDropId": 10746, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10746, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308da04-af84-40bb-845a-7a9e1a2726ec,newGzX_zA0eGUX3Iayq5Ag,6Jv4AJGBYUGP_n4sDcz2Kw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Suit (Purple)", + "GiftDropId": 10747, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10747, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "43354e59-4938-44bc-81e0-4fba47d0ac12,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Mask (Carnival)", + "GiftDropId": 10748, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10748, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "43354e59-4938-44bc-81e0-4fba47d0ac12,4xp-xZyNWEi_jJCIhAPI3g,Ulie-RkcJEmblLyoucx-JA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Mask (Revelry)", + "GiftDropId": 10749, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10749, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Black)", + "GiftDropId": 10750, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10750, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,BLgkgLeS-EyazgPQxGcavg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (White)", + "GiftDropId": 10751, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10751, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,eb3SmJTIh0628LrZUkI4KQ,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Pink)", + "GiftDropId": 10752, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10752, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,NpvUosaJTECohTIAR38egg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ladybug Dress", + "GiftDropId": 10753, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10753, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,QzjakcO8tUaPeiI5KBLKtg,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Blue)", + "GiftDropId": 10754, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10754, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,Yr0mF1EWzEaIyRMOWFiY6w,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Red)", + "GiftDropId": 10755, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10755, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "439d1e24-d67f-4b8a-8fb3-8bf589d5a8ee,ZvPidQ57rUS50Qz89ERmLw,Rk18_7icF0Srgh7M1_G-hA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Halloween)", + "GiftDropId": 10756, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10756, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45695fba-5abc-4c5b-b9eb-949d5174d1f5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Gloves (Blue)", + "GiftDropId": 10757, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10757, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45695fba-5abc-4c5b-b9eb-949d5174d1f5,oFjt2tSsa0CJ7j0s3P6b4Q,XD9dH8LF_ECmL0TwXJW1zg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Gloves (Red)", + "GiftDropId": 10758, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10758, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Blue)", + "GiftDropId": 10759, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10759, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Euf1h1qsZ02evDsyoHYbPQ,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Orange)", + "GiftDropId": 10760, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10760, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,JVZHZm6nGEqE2zEEPoHbwA,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Green)", + "GiftDropId": 10761, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10761, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,L2iFQcL170OajqfW7t6sVw,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Yellow)", + "GiftDropId": 10762, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10762, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,lsyYlxY9o0a3TbUrHkxeyQ,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Purple)", + "GiftDropId": 10763, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10763, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,zlqLrGEa8E2WW9ey_szREA,PZHohDVX0U2frX13N4KYDQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Helmet (Pink)", + "GiftDropId": 10764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ff0a0-ad68-4337-9399-57e3b03e4bf6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yeti Hat", + "GiftDropId": 10765, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10765, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Skates on Neck (Slate)", + "GiftDropId": 10766, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10766, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,ENYQugZRP06SDh6d-oJcjQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Skates on Neck (White)", + "GiftDropId": 10767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45e31b92-0cc5-4841-9c3b-74b3f1830435,KdsZQVCA-E2TiEozsSUv7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Skates on Neck (Brown)", + "GiftDropId": 10768, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10768, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45eaab67-19c2-4601-8f80-3565a4dceba4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pompadour Hair", + "GiftDropId": 10770, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10770, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "45f5e714-8a5f-4385-a97f-675066167011,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Seventies Stache", + "GiftDropId": 10771, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10771, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Grey)", + "GiftDropId": 10772, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10772, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,bTAQ-CkyRUOZoXqXuap2Ig", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Basketball)", + "GiftDropId": 10773, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10773, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,crl8VlZ59kGxG01noGEWmA,EckOEU0mJkGIVDvYoKBN9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Gilded)", + "GiftDropId": 10774, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10774, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,l2BbgbHCe0S_SDUbfmpSeQ,XHJ0lW4zYkGcL5UyI1HfEg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Premium)", + "GiftDropId": 10775, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10775, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "46cde502-86d6-4061-a80c-67458ffd4d60,WqX8pAB7LkyPKEzIUCtnNg,8Y2F-cVStkSn9YB47VCoKA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fancy Cape (Holiday)", + "GiftDropId": 10776, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10776, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Black)", + "GiftDropId": 10777, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10777, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,2cf2b644-3fa6-449c-9fe8-d0ab917f3106,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Gold)", + "GiftDropId": 10778, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10778, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "473c672d-2b79-48a2-a49d-fd68160c5bde,30c61e63-5e09-4a6f-8915-1e1fe4d55cf0,0e42108e-3b08-49b4-86c0-7984719e8380,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Gloves (Silver)", + "GiftDropId": 10779, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10779, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (High Fashion)", + "GiftDropId": 10780, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10780, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,5iCrYb8MBkqN6IBEe3IipQ,SroEVC6vBkG42ILwCtKB9w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Buckaneer, Collector's Edition)\t", + "GiftDropId": 10781, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10781, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,-C1ui-T280GEfW6-vPQ-ig", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Brim Hat (Basketball)", + "GiftDropId": 10782, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10782, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,cpTKHXjj0kulivZCKVQqiA,Mrf17aidXEeCF-fFURUUcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Hyper Ramen)", + "GiftDropId": 10783, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10783, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "474db08a-d4dc-4625-9f5a-1a6ae0b70827,pqLkLbri9Eu48eryQIFGMg,_yznwUwL80ejrS3vki0IKg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graphic Cap (Sticker, Goblins)", + "GiftDropId": 10784, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10784, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Brown)", + "GiftDropId": 10785, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10785, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,23428ca9-be75-4146-b400-df01d1dadac9,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Tan)", + "GiftDropId": 10786, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10786, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,7b82c3c5-fd1f-45ec-b83f-e32668aa8dce,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Black)", + "GiftDropId": 10787, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10787, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "47629ed1-5378-427c-ad61-4b44d2fe90cc,qJGX62O_HUiZWN61NAc1Lg,556f876a-70da-4104-b792-fca8ad67be0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Goggles (Red)", + "GiftDropId": 10788, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10788, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Orange)", + "GiftDropId": 10789, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10789, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,4ElTihrMA0ipcgeb9UG01Q,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Purple)", + "GiftDropId": 10790, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10790, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,68273c9e-96d6-4ddb-aaab-d99229e864d5,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (White)", + "GiftDropId": 10791, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10791, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a089bcc6-798d-4777-98e2-7afd290dc6b6,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Black)", + "GiftDropId": 10792, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10792, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,a36d252b-16ac-4a82-bece-de145147e7d9,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Pink)", + "GiftDropId": 10793, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10793, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Blue)", + "GiftDropId": 10794, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10794, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7634b7ef-9607-497a-b41f-c0191dc75998,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Gloves (Red)", + "GiftDropId": 10795, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10795, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,LVnNy7-nFkyvi19nNcdFgQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Gloves (Invasion)", + "GiftDropId": 10796, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10796, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4763436c-2dcc-482a-bf37-a6b16d7aae6e,uWe5nxA4qkaicmXm3tMw9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Gloves (Invasion 2)", + "GiftDropId": 10797, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10797, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Armor", + "GiftDropId": 10798, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10798, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "485bbda2-37e8-45a7-90db-7c35518dcdd0,M5QwJJRRBUy42HLyp6ghtg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Armor (Jade)", + "GiftDropId": 10799, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10799, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4885683e-a87e-4d27-990a-c16f1df7a28f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Gloves", + "GiftDropId": 10800, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10800, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4885683e-a87e-4d27-990a-c16f1df7a28f,hKBSHovOeUy84yCbvutkOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Gloves", + "GiftDropId": 10801, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10801, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Black)", + "GiftDropId": 10802, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10802, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,3Xlg70ev6UqdcIAmJ9hmlA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Yellow)", + "GiftDropId": 10803, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10803, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,9tTuREkoQkW0ycqOjWXsiA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (White)", + "GiftDropId": 10804, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10804, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,gT0WA7Y1H0my5uMlteIMMg,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Red)", + "GiftDropId": 10806, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10806, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,m7KXVnULz0iHvKfCFzFoyw,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Pink)", + "GiftDropId": 10808, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10808, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,MVkY4sU5BkGC4QhweRiyIA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Orange)", + "GiftDropId": 10809, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10809, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,QCOMyeCUK0Gudx4ljBmAdw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Musical Notes)", + "GiftDropId": 10810, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10810, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,RL6HkufaJ0yubTpCGVI9eQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Green)", + "GiftDropId": 10811, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10811, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,t2bByt5oUEG90PMMePCP6A,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Gray)", + "GiftDropId": 10812, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10812, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,ux9DQVSRyU-_5GA-t197OA,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Purple)", + "GiftDropId": 10813, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10813, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48ec7a6a-0c31-40d4-9179-66e3ba6505a1,-XSM6ZcSjE-vrWL7jyF4fQ,7nBHNMZhAE-t9rLCYO_STA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimmed Beanie (Blue)", + "GiftDropId": 10814, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10814, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Black)", + "GiftDropId": 10815, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10815, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,COZbkLDc20mdUlWSkqMX-w,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Blue)", + "GiftDropId": 10816, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10816, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,gsHBUqA1gE2XNTPA3VvBLQ,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Brown)", + "GiftDropId": 10817, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10817, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,JUQn0_PLIkytCrkAg0FflQ,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Tan)", + "GiftDropId": 10818, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10818, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,SDbpnjVYmEGQneK5fhZ0Cw,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Red)", + "GiftDropId": 10819, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10819, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "48fdfbc6-fca4-424c-aa57-3fcea41e23dc,uwoWPY4YjEmZSQcNCrx1Gg,FwjsTo0nb0uNU6l8XvllNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leather Necklace (Green)", + "GiftDropId": 10820, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10820, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49397e16-1027-4286-9bc4-b59eae565ff0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Side Pony Hair", + "GiftDropId": 10821, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10821, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Folded Bandana (Red) ", + "GiftDropId": 10822, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10822, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "49800740-33d6-4280-aefb-3497597c6366,0oMo4q5cLEi9LGpkOFIlkA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Riveter Bandana", + "GiftDropId": 10823, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10823, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "FNAF Hoodie", + "GiftDropId": 10824, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10824, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,a2mUuKOr-UOM5nPpR8dSMw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoodie (Em Beihold)", + "GiftDropId": 10826, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10826, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,bS-St6XLHkSwKt41J7BmKw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alo Yoga Hoodie", + "GiftDropId": 10827, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10827, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,DOY6LpHq8kui8yDWGsNgZw,48yVsRt8sU6jf3P4wlPA8Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Hoodie (2020)", + "GiftDropId": 10828, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "2020 Rec Con", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10828, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,G_QPd8YBe0-n8ywAGLMKBg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoodie (Jessia)", + "GiftDropId": 10829, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10829, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,HUxqkzeE-Umq96TgSn0Hbg,48yVsRt8sU6jf3P4wlPA8Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Hoodie (2021)", + "GiftDropId": 10830, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "2021 Rec Con", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10830, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,Kuh-HrhzTUmuGaw7cpLUMg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Broken Heart Hoodie", + "GiftDropId": 10832, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10832, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,QMScBauef0uOE48-YcDcCg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dino Hoodie", + "GiftDropId": 10833, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10833, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,tkuP0sNwjEO3XH5Lf_KqkA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Hoodie (Black)", + "GiftDropId": 10835, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10835, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4abc2ac4-e60c-49b1-9ac8-4d4751ed78ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dino Hat", + "GiftDropId": 10836, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10836, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4b4d239a-ddf3-4f8c-a58a-b8f4c031ae26,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Cuffs", + "GiftDropId": 10837, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10837, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4b51679e-96e4-4a11-96fe-1d2754d12481,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clock Chain (Gold)", + "GiftDropId": 10838, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10838, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4b72736e-6fca-4961-98f2-1d4e199eb1e0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rogue Gloves", + "GiftDropId": 10839, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10839, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c032271-a0db-47b0-bfc6-4c330c2c4b21,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alpaca Lights Sweater", + "GiftDropId": 10840, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10840, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c52478a-b2c9-4520-8f88-52f2262cc6bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hot Dog Suit (Mustard)", + "GiftDropId": 10841, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10841, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c52478a-b2c9-4520-8f88-52f2262cc6bf,YR7P-KQLGUKPF7JbW85K7g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hot Dog Suit (Ketchup)", + "GiftDropId": 10842, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10842, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c673a35-c10f-4a8c-b8e0-96a50fe5b97f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pegasus Wings", + "GiftDropId": 10843, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10843, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Orange)", + "GiftDropId": 10844, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10844, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,1pJN1AfxgUmUN_bTaH3rng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Iso Suit (Invasion)", + "GiftDropId": 10845, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10845, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,4ElTihrMA0ipcgeb9UG01Q,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Purple)", + "GiftDropId": 10846, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10846, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,68273c9e-96d6-4ddb-aaab-d99229e864d5,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (White)", + "GiftDropId": 10847, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10847, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a089bcc6-798d-4777-98e2-7afd290dc6b6,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Black)", + "GiftDropId": 10848, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10848, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,a36d252b-16ac-4a82-bece-de145147e7d9,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Pink)", + "GiftDropId": 10849, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10849, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,c8cc9589-4831-4e73-a865-ef8c139a2ba7,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Blue)", + "GiftDropId": 10850, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10850, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ce7a70f-15a0-4cad-98ee-5cbb40827338,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,7ac81d60-05b8-4a85-982c-f69213a93818,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Armor (Red)", + "GiftDropId": 10851, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10851, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d507dfa-4a99-4ac0-8537-229e9dc0eb4a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Tank Top (Orange)", + "GiftDropId": 10852, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10852, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Red)", + "GiftDropId": 10853, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10853, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,8053b5e5-0f67-4329-a45d-1ee9fc830820,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Yellow)", + "GiftDropId": 10854, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10854, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,b444ed0a-eab5-4bd6-af34-d080de74a149,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Orange)", + "GiftDropId": 10855, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10855, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4d533b3a-b5fa-446a-842d-92798ad5b493,fe5288bc-0e02-4ea3-b17d-dee0e576979d,6b38ab79-142b-446e-978c-ad829ade8823,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Gloves (Green)", + "GiftDropId": 10856, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10856, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4e42e02e-33fd-4ff9-b74e-9bde26253c35,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Wrist", + "GiftDropId": 10857, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10857, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4eaaad39-aa44-4791-8b67-2eafa8305850,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Afro Puffs Hair", + "GiftDropId": 10858, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10858, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4ee2133d-c419-4fbc-9117-746d756a250d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt Bag (Cosmic)", + "GiftDropId": 10859, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10859, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Triton)", + "GiftDropId": 10861, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10861, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,CahBzgN3D0y46AQsvGC14A,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Leviathan)", + "GiftDropId": 10862, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10862, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fcb5b84-13a9-43e6-9680-72b17874ae53,Su7kiW24d0KapNns96JoFQ,a3Er_BCApUiPtBaGkSH9LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Helmet (Kraken)", + "GiftDropId": 10863, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10863, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "50c9c6f8-2963-4ef3-95d5-e999a898269f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Saija Gloves", + "GiftDropId": 10864, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10864, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5154be09-bb8a-4917-95a0-51c91b6a4e09,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hatter Suit (Wonderland Contest)", + "GiftDropId": 10865, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10865, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Red)", + "GiftDropId": 10866, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10866, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,1acb1f56-4509-449f-9c6a-065bdeaa9ee3,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Grey)", + "GiftDropId": 10867, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10867, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515dfc36-7f7b-47bc-abee-380d68f41be6,e98c3f98-7844-4d6e-a21c-05027033c18c,2d7361d2-31a2-404b-90da-10e89114e1f2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowered Dress (Yellow)", + "GiftDropId": 10868, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10868, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "51b85276-3a40-4c40-93a1-9df307c3e78e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Messenger Bag", + "GiftDropId": 10869, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10869, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "51e5467f-d310-44f8-80c3-17d7e27450bf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Belt", + "GiftDropId": 10870, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10870, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "51e5467f-d310-44f8-80c3-17d7e27450bf,pue_FwobQEiaVubgc5eMUg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Belt", + "GiftDropId": 10871, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10871, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52268f02-b8ba-4a8e-ab3a-7d5928f637a6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Armor", + "GiftDropId": 10872, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10872, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52268f02-b8ba-4a8e-ab3a-7d5928f637a6,RjX1VTHHoEiNBfXkkniDgw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Torso (Folklore Contest)", + "GiftDropId": 10873, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10873, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Brown)", + "GiftDropId": 10874, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10874, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,002b07bb-4256-44ce-8ca4-25510e70b6b5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Yellow)", + "GiftDropId": 10875, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10875, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,076c96ae-9f9b-45bf-9dc7-ce73d5ddf422,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Green)", + "GiftDropId": 10876, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10876, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,90869e86-cbc5-4024-9d08-fcdc41c64eb5,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Grey)", + "GiftDropId": 10877, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10877, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,bzYdPb8GWUS-CgT4wrziIA,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Orange)", + "GiftDropId": 10878, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10878, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,e821aa74-2d47-4388-bcfb-1893b8a83a52,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Black)", + "GiftDropId": 10879, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10879, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "529015c7-3b4a-4a73-b2c3-33103339b6e3,fed760b2-15e2-46b2-b1e3-cc3c8d780d5d,fe01b6ed-3c36-47b6-bcfa-47864ef9d610,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Smuggler Goggles (Cherry)", + "GiftDropId": 10880, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10880, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Keytar (Teal/Pink)*", + "GiftDropId": 10881, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10881, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,GCwZMIr720iH3TszOb6SQA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Keytar (Black/Red)*", + "GiftDropId": 10882, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10882, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,LmMg-y8w8kiXdre4vUJrZA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Keytar (Silver)*", + "GiftDropId": 10883, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10883, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52ea64e5-f062-4683-a380-4f8a48938686,ze-eTUX6WUqE-n5nIcH0aA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Keytar (Lime)*", + "GiftDropId": 10884, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10884, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Teal)", + "GiftDropId": 10885, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10885, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,42ZNGHXMvU29yo9s9tVpOQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Blue)", + "GiftDropId": 10886, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10886, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,6c-AhDM6K0iHbNMf4BNiUg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Purple)", + "GiftDropId": 10887, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "Breakdance inspired colorway", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10887, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,FvEjo9let0e_Sr-kWq5AvQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Orange)", + "GiftDropId": 10888, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10888, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,HncURj5yi0ykk2cVyCZ4Sw,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Red)", + "GiftDropId": 10889, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10889, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "52VsI_lKlkSUAOJlfDnyrQ,VDo682NvSUa8xYn8zTX-AQ,MV1HW2x43kG4rrhyoC6mmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker Cuffs (Yellow)", + "GiftDropId": 10890, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10890, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5362d685-fc55-4b43-85a5-cc3d6cad3f69,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Galaxy)", + "GiftDropId": 10891, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10891, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "54ab4eb0-e28a-438f-9977-1ae8d642d136,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (S.)*", + "GiftDropId": 10892, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10892, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "55b1ada2-aa1a-4b8a-bbeb-f10ba77c8318,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Hat", + "GiftDropId": 10893, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10893, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "55b1ada2-aa1a-4b8a-bbeb-f10ba77c8318,ZYjUekG8JkC9uPkm4xH8ww", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Hat", + "GiftDropId": 10894, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10894, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Cape (Rouge)", + "GiftDropId": 10895, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10895, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,eEsEJ78Me02dXnp6gTuZRw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Cape (Blanc)", + "GiftDropId": 10896, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10896, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,gYXppJSpDUG9MB0xej4-kQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Cape (Jaune)", + "GiftDropId": 10897, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10897, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "56da4739-f628-4894-95cf-e21a600f2124,VF7QrfNdC0ex5p62bkdt7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Cape (Vert)", + "GiftDropId": 10898, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10898, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (Orange)", + "GiftDropId": 10899, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10899, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,J-K34UX_B0yObjQI9tn0vQ,m0R4Jtf4HES8krxMnwIWFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (High Seas Contest)", + "GiftDropId": 10900, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10900, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57552652-d902-43b7-a68e-5c7da87582bc,VqtOYBiKRkaSW4xAlBxQgg,xTqtLPQVyEKjAQZYl6HGow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Wetsuit (Blue)", + "GiftDropId": 10901, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10901, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (White)", + "GiftDropId": 10902, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10902, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,18b52db5-0261-46a0-9214-ff510d455ed9,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Orange)", + "GiftDropId": 10903, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10903, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,55b4e661-43e1-4708-82d5-2dd2bebd4f45,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Blue)", + "GiftDropId": 10904, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10904, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5800d2b5-75b8-442f-8b10-63bd3d73a1b8,8c74ee27-3d56-401b-8a8c-7868a80770e8,7869b2a5-cd89-4033-b9f7-4f1451ecb47b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Gloves (Black)", + "GiftDropId": 10905, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10905, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5873814e-c9a1-4042-b96d-2aa0e0d52e2a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Coat (Mystery Contest)", + "GiftDropId": 10906, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10906, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "587ca2bb-dd42-42bf-833f-4e2a97349866,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Stethoscope", + "GiftDropId": 10907, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10907, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "591af332-a01c-454d-89dd-5ed6ae3ed09c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lucky Clover Top Hat", + "GiftDropId": 10908, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10908, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5944a66e-b386-43d9-a4b6-7b4a8e987fd8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Heart Sunglasses", + "GiftDropId": 10909, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10909, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "594a69fb-9f76-4f83-b2aa-94f0e72e996c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Helmet", + "GiftDropId": 10910, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10910, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "594a69fb-9f76-4f83-b2aa-94f0e72e996c,GL6frGGo2E25VLcw61otXA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gladiator Helmet (Folklore Contest)", + "GiftDropId": 10911, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10911, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59bbb9d4-4fdb-4400-90d5-244643dca4ce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Toy Helmet", + "GiftDropId": 10912, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10912, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Orange)", + "GiftDropId": 10913, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10913, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,4ElTihrMA0ipcgeb9UG01Q,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Purple)", + "GiftDropId": 10914, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10914, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,68273c9e-96d6-4ddb-aaab-d99229e864d5,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (White)", + "GiftDropId": 10915, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10915, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a089bcc6-798d-4777-98e2-7afd290dc6b6,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Black)", + "GiftDropId": 10916, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10916, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,a36d252b-16ac-4a82-bece-de145147e7d9,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Pink)", + "GiftDropId": 10917, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10917, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,c8cc9589-4831-4e73-a865-ef8c139a2ba7,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Blue)", + "GiftDropId": 10918, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10918, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "59d9560d-e5af-4205-b860-3afea1cc31a9,d78643e4-c0d2-4836-bf22-b5a0e2d65b28,b94411f6-5b71-48d0-ace1-ac6f63167065,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Marine Helmet (Red)", + "GiftDropId": 10919, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10919, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (White)", + "GiftDropId": 10920, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10920, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,61ff7a02-50ff-49ea-b95e-c31b95a30c8e,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Black)", + "GiftDropId": 10922, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10922, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,d8d490aa-7088-4163-9305-1441367f490c,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Orange)", + "GiftDropId": 10923, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10923, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,UfhOpLemQ0ypYh7CIC3W1Q,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Gray)", + "GiftDropId": 10925, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10925, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5a38f864-7d1c-4989-8558-40b9668f78ef,X24EvVokeUqyDNdqevV2EA,7660e11a-7ef0-43d3-bc02-76b3a4aab064,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Football Helmet (Red)", + "GiftDropId": 10927, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10927, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5ac25e5a-8c8e-445c-82a4-7272baec1eb5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Doctor's Head Mirror", + "GiftDropId": 10928, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10928, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Orange)", + "GiftDropId": 10929, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10929, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Green)", + "GiftDropId": 10930, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10930, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Green)", + "GiftDropId": 10931, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10931, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,40ldoL7MAUKnb5JA68CMBA,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Green)", + "GiftDropId": 10932, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10932, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, White)", + "GiftDropId": 10933, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10933, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, White)", + "GiftDropId": 10934, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10934, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, White)", + "GiftDropId": 10935, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10935, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,6o6sNWyPoUCcKJBHW0KC9w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Yellow)", + "GiftDropId": 10936, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10936, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Red)", + "GiftDropId": 10937, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10937, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Red)", + "GiftDropId": 10938, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10938, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Red)", + "GiftDropId": 10939, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10939, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Blue)", + "GiftDropId": 10940, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10940, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Dots, Blue)", + "GiftDropId": 10941, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10941, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Plaid, Blue)", + "GiftDropId": 10942, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10942, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Black)\t", + "GiftDropId": 10943, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10943, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Polka Dot Cowboy Scarf ", + "GiftDropId": 10944, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10944, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,J1bmomo_3Ume0KR2Yh46Uw,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Plaid Cowboy Scarf", + "GiftDropId": 10945, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10945, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,X1OFXyDyXES3CgMpIyV3nQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Pink)", + "GiftDropId": 10946, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10946, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,27a5df72-4095-4837-bf24-cdd3d95a43e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bandana (Flowers, Purple)", + "GiftDropId": 10947, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10947, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5accb7dc-90a3-46ee-bad2-8fd1861d50f1,Z9H3wUn3_kS6pPehL74aHg,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Scarf Mask (Plaid/Purple)", + "GiftDropId": 10948, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10948, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Green)", + "GiftDropId": 10950, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10950, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,0c433086-9501-48c4-8d0e-4474eb420c61,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Red)", + "GiftDropId": 10951, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10951, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,1VGZ1QCvcU6rsKVkUDBNjQ,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Blue)", + "GiftDropId": 10952, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10952, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,2be2f040-68e4-44dd-9099-29f11110f3a4,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Black)", + "GiftDropId": 10953, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10953, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,47da86b9-4e6e-423c-b8c4-ea6bf8472509,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Yellow)", + "GiftDropId": 10954, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10954, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,8hUBfmq28EixYjv92Xcrgg,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Grey)", + "GiftDropId": 10955, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10955, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b01eaa3-0cac-40c0-b72a-b3f6a868ae0c,d5987fee-e3cc-4336-853a-5df57f73df05,7b187c06-7ba2-4f3c-bca9-fdf98146f385,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Gloves (Tan)", + "GiftDropId": 10956, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10956, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Jacket", + "GiftDropId": 10957, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10957, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3cae00-88bd-4179-b75a-9444c5a52fa5,ZM6W70pGt0aAPLYf4DykeA,icHpJch4uUeGdhoLkawyyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Jacket (Green)", + "GiftDropId": 10958, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10958, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (Orange)", + "GiftDropId": 10959, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10959, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,GWi1rEebqkCV_TS2WzQhcA,4zPm9miF5UOouEWFpOxYZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (High Seas Contest)", + "GiftDropId": 10960, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10960, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b3dc472-773e-4714-a9d0-7e7bbf6bc695,V_duN2oWaUmmao1xHhzCJA,Uvarm_CwTUWWQYZvzI8OaQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Tank (Blue)", + "GiftDropId": 10961, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10961, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Green)", + "GiftDropId": 10962, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10962, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,29EZ6r2SsUakWjzuevxeoA,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Blue)", + "GiftDropId": 10963, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10963, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,7221132e-053a-4c58-b719-ed3c8558907d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Red)", + "GiftDropId": 10964, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10964, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,74b009f4-e128-4c59-8a6a-4c0ba6119bde,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Black)", + "GiftDropId": 10965, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10965, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,d1eb3573-672c-4bb4-9ec5-7c81e6a38d3d,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Tan)", + "GiftDropId": 10966, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10966, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,e548124c-d7f3-45de-aaa0-f66130eca576,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Yellow)", + "GiftDropId": 10967, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10967, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5b6535f0-86cd-417a-bcce-a1ace9a5f260,imDGL6dhrka-KliYlfpdgw,6094370d-5e28-473a-b422-f3f1c75d5db8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Quiver (Grey)", + "GiftDropId": 10968, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10968, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Tan)", + "GiftDropId": 10969, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10969, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,fEPwvuJCWkGBe4IekXpmLw,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Black)", + "GiftDropId": 10970, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10970, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5bde836f-9343-4934-b01a-606f707020ef,MQOxmUk-mUG-Ee9m9nX31Q,axPBGoqorEe77Oqqjfzb5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Detective Cap (Grey)", + "GiftDropId": 10971, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10971, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5beeb4c4-f276-4eae-87aa-9302e45b05b7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cornrows Hair", + "GiftDropId": 10972, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10972, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5cd08cfb-c729-4c30-96d9-6a99bb934d91,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Sash", + "GiftDropId": 10973, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10973, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d13a7a2-8213-40e6-90a6-efdd76a3fdcb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowing Hair", + "GiftDropId": 10974, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10974, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Striped, Red)", + "GiftDropId": 10975, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10975, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, White)", + "GiftDropId": 10976, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10976, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, White)", + "GiftDropId": 10977, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10977, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, Red)", + "GiftDropId": 10978, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10978, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,827a1538-51bb-4fef-99c1-7f1bebd9866c,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, Red)", + "GiftDropId": 10979, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10979, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Dots, Blue)", + "GiftDropId": 10980, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10980, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d1c42a0-7e36-431a-8e78-a8b74046d153,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Scarf (Plaid, Blue)", + "GiftDropId": 10981, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10981, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d2a0b8a-10f0-4f09-b145-84a4b4dc58f9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Bloom Antlers", + "GiftDropId": 10982, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10982, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d2a0b8a-10f0-4f09-b145-84a4b4dc58f9,MtbewwIGSEu-F9Ks_Ibb4g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Bloom Antlers (Solstice Contest)", + "GiftDropId": 10983, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10983, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Hat", + "GiftDropId": 10984, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10984, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,3oar1K99PU2OTGaT0i7Hag", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Hat (Vert)", + "GiftDropId": 10985, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10985, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,RTrcYpLtukm83lwAfWi5WA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Hat (Purple)", + "GiftDropId": 10986, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10986, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5d4b097b-2850-4a13-b26b-280be7ad3f57,T5z4W4H8sU-2NxpepVH0Qg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "King Rat Hat (Noir)", + "GiftDropId": 10987, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10987, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5da97d5c-0d1b-4b0d-a2be-d255871d833d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turkey Backpack", + "GiftDropId": 10988, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10988, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Grey)", + "GiftDropId": 10989, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10989, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,0ba92db2-690a-44ce-92f4-130e9503b6c1,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Blue)", + "GiftDropId": 10990, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10990, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,-7uPJmO-wUu3cUhqo0caPg,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Tan)", + "GiftDropId": 10991, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10991, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9967ce54-c2b7-437a-946e-11f8ee6d6fdd,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Green)", + "GiftDropId": 10992, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10992, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,9aYT6E9sd0OSavlmkhtkGw,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (White)", + "GiftDropId": 10993, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10993, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e3929d3-d291-4e91-a0ba-2ef203e407d3,H-ypJNyVSka9as7rDFRZ_A,73fc2e2a-a036-410b-bafa-3a07658245b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flat Cap (Red)", + "GiftDropId": 10994, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10994, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5e9bbda6-d681-42b1-9cc4-5758acf34bc0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Necklace (Gold)", + "GiftDropId": 10995, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10995, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f1bc3c2-dfbb-4258-9b10-608535e34db2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Hands", + "GiftDropId": 10996, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10996, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Book of Elseware Vol I* (Cursed)", + "GiftDropId": 10997, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10997, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,14Gft1zCQECXPxPmiUc5VQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cosmic Cultist Book", + "GiftDropId": 10998, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10998, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,7ziZgKKqXkuyo9v77chIlA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cipher of Elseware (Uncursed)*", + "GiftDropId": 10999, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 10999, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,bpzKQ-B4_0KpMPf4ixTumw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Book of Elseware Vol III (Cursed)*", + "GiftDropId": 11000, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11000, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f2992a0-08a2-4638-83a2-11658c51681c,hKkdXrgEQ0SStVnZsXu0uQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Book of Elseware Vol II* (Cursed)", + "GiftDropId": 11001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (Teal)", + "GiftDropId": 11002, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11002, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,3b2cfc85-4e2a-4e0d-b738-c296ae8692f8,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (Pink)", + "GiftDropId": 11003, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11003, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,78eb0969-f246-4cac-acd6-295df7c092e4,f6f26e2b-657b-454a-8663-55d6b9b6e50c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jazzercise Shirt (White)", + "GiftDropId": 11004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f492f8f-ab61-484a-9587-747132b54309,zwKRET9pP0O5uhPU_yHrlg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ballerina Leotard", + "GiftDropId": 11006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Silver)", + "GiftDropId": 11007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,565c17e0-496d-45bd-a2c3-564e118c06cc,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Black)", + "GiftDropId": 11008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f600892-aa67-484a-afc7-14c219d89c52,b6c25a3b-125b-4aab-bed0-e6e5ced2c21c,a240d44f-963d-4d35-b22f-980938c7788d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flapper Dress (Gold)", + "GiftDropId": 11009, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11009, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5f6a7dee-0b44-4138-b3a7-a079dbc63e83,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Monkey Backpack", + "GiftDropId": 11010, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11010, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fb2ea11-cd9c-45cb-be1e-e7ff3e0fd3c3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Helmet (Jade)", + "GiftDropId": 11011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fb2ea11-cd9c-45cb-be1e-e7ff3e0fd3c3,tdECtZp1UUuRRKHV60coyA,PIg3ywG2J0CiGUPpm1A6Kw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Helmet (Red, Gold)", + "GiftDropId": 11012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Summit)", + "GiftDropId": 11013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,fXNkMWFMV0aXalK_y_8SHw,SSY8ZYMgaE2Bl4oFmMjKQA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Chill)", + "GiftDropId": 11014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,iDnij3VaEkSAnpt5QRevig", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Ski Buddy Goggles", + "GiftDropId": 11015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,IQMO6E5ofkyC3S-IgrKyIw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Green)", + "GiftDropId": 11016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,n741vKj02kyt8B5fT6s2og", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Pink)", + "GiftDropId": 11017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5fwjFQoC_Uu9ChvF6uNGZw,oCB1ZeT0hU6uQGhHNsEvkg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Goggles (Slate)", + "GiftDropId": 11018, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11018, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Skirt", + "GiftDropId": 11019, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11019, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5PUja-WX00Sme9yBwvDq-g,FpvZjltPtU6AKTBphz3ZMA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Skirt (Burgundy)", + "GiftDropId": 11020, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11020, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "60cc933c-5bc8-49c1-aa6b-9c2adfef088e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Necklace (Musical Note)", + "GiftDropId": 11023, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11023, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,5Q9E76b580CnMWIg6zbPwA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blueberry Gamer Tucked Tee", + "GiftDropId": 11026, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11026, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,9lPZEIVbbUK1hdR1aVPLwA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Boots Shirts", + "GiftDropId": 11027, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11027, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,LXR5H_-7JUO7F3JkJh3ouQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Strawberry Gamer Tucked Tee", + "GiftDropId": 11030, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11030, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,mKWQMgBuTEq9EwXBTusuJw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tucked Gamer Tee (Pineapple)", + "GiftDropId": 11031, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11031, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,N2ofIXeSBECHTBAoP2yQ6w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grape Gamer Tucked Tee", + "GiftDropId": 11032, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11032, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,r4O0JuB0dke1IoOEqW4nkg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Art Festival 2022 Shirt (Gray)", + "GiftDropId": 11034, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11034, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,rg6sMjE1XkijY4Pq73pjcg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lime Gamer Tucked Tee", + "GiftDropId": 11035, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11035, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,t9-7AjmLgEWawcyWCD4xVw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raspberry Gamer Tucked Tee", + "GiftDropId": 11036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,UJRSCFfPq0K0yV0ETS3uSQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Art Festival 2022 Shirt (Orange)", + "GiftDropId": 11037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,vtXUyu-xmkaYtOCL9r3PsA,VtepaI2fvUWhcvNmpQ8r6Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2021 Shirt", + "GiftDropId": 11038, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11038, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "618b979e-c6e6-434e-98e5-9b51e117fb69,W_RwnySBMk2GlrknM7NDrg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2022 Shirt", + "GiftDropId": 11039, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11039, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "61969200-2790-41e0-bccb-d9feff8c7b7d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Holiday Elf Wrist", + "GiftDropId": 11040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "61ba3c90-c81e-4deb-bc79-50c0f1fe3e83,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Beard", + "GiftDropId": 11041, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11041, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho", + "GiftDropId": 11042, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11042, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,EmTrJKm8cUy8_BHAvP8Meg,kxkqq5UA_kCM6lFsFe3dvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho (Grey)", + "GiftDropId": 11043, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11043, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,Gep43Ix44EWybJ80XAyDbg,kxkqq5UA_kCM6lFsFe3dvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho (Teal)", + "GiftDropId": 11044, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11044, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62a28dea-adcc-40b3-9045-917ae4f38c63,T670e7nOakqKl3L6LTlTtA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Poncho (Steampunk)", + "GiftDropId": 11045, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11045, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62ce4109-8dee-4895-bf1b-bfa143db4c7e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Slim Blazer (Teal)", + "GiftDropId": 11046, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11046, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62ce4109-8dee-4895-bf1b-bfa143db4c7e,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,0f36bb97-c61b-4281-929f-ff1d0d11be86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Slim Blazer (Blue)", + "GiftDropId": 11047, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11047, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62ce4109-8dee-4895-bf1b-bfa143db4c7e,cd5d7285-202d-42d0-b93f-04245875793e,0f36bb97-c61b-4281-929f-ff1d0d11be86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Slim Blazer (Green)", + "GiftDropId": 11048, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11048, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "62e480de-27e9-4719-adac-360698c7a2c1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Hat", + "GiftDropId": 11049, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11049, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rogue Cape", + "GiftDropId": 11050, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11050, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,ay9ktLnHfUKdj0-q52Gvyg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Constellation Cape (Sunset)", + "GiftDropId": 11051, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11051, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,C64nh9MHv0mlUEP9-s7sJw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Constellation Cape", + "GiftDropId": 11052, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11052, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,WJ27X_UnfUmFKpY6mRk_Rw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Constellation Cape (Aurora)", + "GiftDropId": 11053, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11053, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "63b5196e-881a-4b96-82c8-9df54de4a506,YVkcCfJZekq7GvdMUy2IWg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Cape (Invasion)", + "GiftDropId": 11054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6423f23e-dde3-4428-96f5-6091027c92cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Cunning) ", + "GiftDropId": 11055, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11055, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (Black)", + "GiftDropId": 11056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,0Ytm7G4_lkmZWPA_YfaIeQ,KfM7veOVlE-dNZmsbDNZBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (Orange)", + "GiftDropId": 11057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6427bd57-fcb2-420f-8b3e-d1da43470b84,dZM1bs6_MU2F6Vz1mH0QKg,KfM7veOVlE-dNZmsbDNZBA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunglasses (White)", + "GiftDropId": 11058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Gloves", + "GiftDropId": 11059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,D-XJyw1BPE-m0gXpvcXrQw,FsirX90YM0y5lk7mnqDnEQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Gloves (Red)", + "GiftDropId": 11060, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11060, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64ad8789-1645-45f7-819a-a413ff7c9622,-Moek0heVkWtKpTw9oZ0EA,FsirX90YM0y5lk7mnqDnEQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Gloves (Blue)", + "GiftDropId": 11061, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11061, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Zzz)", + "GiftDropId": 11062, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11062, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,_jkPDSXFUkSU_yOfutQ7BA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Zonked)", + "GiftDropId": 11063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,j66We9SYr0SNQ2ufZqIqhA,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Sandman)", + "GiftDropId": 11064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,MLB_YJtNtUi2Qw9D4a5i2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Starry Night Robe", + "GiftDropId": 11065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "64fddd4e-3d59-43df-bb39-671e18953c0f,uDJ5ZqU1f0CiOAH8WY22Yw,KOCzRE4a6EKb3_NVOI_lcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Night Coat (Dozy)", + "GiftDropId": 11066, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11066, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Pride)", + "GiftDropId": 11067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,a0oe68pikUykAgrRo-axkQ,KFq8d1VsO0KDqBWUj4qRFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Rally)", + "GiftDropId": 11068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,cFQ1Z7_wp0meS8wdC1hemQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Suit Skirt", + "GiftDropId": 11069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "657efe89-620a-46a2-8b58-cafd855c7cd5,eWf2c62cqEOkRukLzhl_wQ,KFq8d1VsO0KDqBWUj4qRFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Skirt (Victory)", + "GiftDropId": 11070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Vest (Black)", + "GiftDropId": 11071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,39f04eee-3a58-4e53-9f5e-7e995d46ed71,005699fe-2c69-4bec-831f-031fe8ad7f0a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Vest (Red)", + "GiftDropId": 11072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,6y_fzLhG7E65Px3-CYiyXQ,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Vest (Crimson)", + "GiftDropId": 11073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "664485e9-a159-4fcb-b32c-2b114b4a1218,85eb7f47-bb31-4c66-a8b3-562d35028e6c,9f1dd474-34a3-47eb-bb72-dbfc8d2d6ecf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Vest (Brown)", + "GiftDropId": 11074, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11074, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "665d4fe9-88dd-4fae-97ad-201884a6ca02,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lasso Belt", + "GiftDropId": 11075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "66f8f55d-cad4-4afb-93e8-b6bdf04b37b3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Green Sequins)", + "GiftDropId": 11076, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11076, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Red)", + "GiftDropId": 11077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,_VfdBTi7PU276qzsYKayow,qSsEcadcm0-twR1TvVcgYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Pouncing Tiger)", + "GiftDropId": 11078, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11078, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Dtis2HpVzkelZb6M9mW5TQ,iqGv6iRJ-UGbofv8-aHKVA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Green Lightning)", + "GiftDropId": 11079, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11079, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,Kcyp8sv0202Puym1Wf86xg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Green)", + "GiftDropId": 11080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,r_QZLd-Aw0SsdQb_uYroog,eYGWiwqSGUG7Hx1R3I-11A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Shamrock)", + "GiftDropId": 11081, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11081, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,xNjX_6-aREm0cYZObVLiAg,OE-PtL0-0kWcJPwn1wvuVg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Cape (Blue)", + "GiftDropId": 11082, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11082, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67c0f944-2f70-46d2-8588-2f67028f8bed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowgirl Gloves", + "GiftDropId": 11083, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11083, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67d8d599-4611-428f-98cd-98d8a527ace5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Dress", + "GiftDropId": 11084, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11084, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67d8d599-4611-428f-98cd-98d8a527ace5,4qSWIO-cy0q5JWHp7tagHA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Dress (Red)", + "GiftDropId": 11085, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11085, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "686ac516-630f-4989-9c99-0b8d055a00f9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Holiday Elf Hat", + "GiftDropId": 11086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Quarter Zip Sweater", + "GiftDropId": 11087, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11087, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,p5zYbKLGU0m0ZutOicfjsw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Quarter Zip Sweater", + "GiftDropId": 11088, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11088, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,pqtwCB_c20yRmOEs6jlH3g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Quarter Zip Sweater", + "GiftDropId": 11089, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11089, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,SSstW2ZPk0SB47qYlgbZzg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Quarter Zip Sweater", + "GiftDropId": 11090, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11090, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "691b2198-2ee7-425b-b59f-bbadda1253e1,wgIwYsXqiUekieE6pSt1Ng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beige Quarter Zip Sweater", + "GiftDropId": 11091, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11091, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6936d8e0-9d4a-4e22-99b6-04e5182c1109,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeletor Armor", + "GiftDropId": 11093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a2fa2f4-d335-4349-88a4-49af251454fa,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electric Guitar (Blue)", + "GiftDropId": 11095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a2fa2f4-d335-4349-88a4-49af251454fa,liZWUNZih0iakAa7UJkk9A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electric Guitar (Green)", + "GiftDropId": 11096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a2fa2f4-d335-4349-88a4-49af251454fa,zBfCq7T69kqZPTz3P8KKhg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Electric Guitar (Red)", + "GiftDropId": 11097, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11097, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a51d8e1-8844-4999-ad8b-06f4d414571e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Eggshell Chick Costume", + "GiftDropId": 11098, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11098, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Gloves", + "GiftDropId": 11099, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11099, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,1sxxUbsQMki0sTwxEQIbtw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Gardener Gloves", + "GiftDropId": 11100, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11100, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,CEnWMDmcMEyjX5mRdhtXXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Gloves (Floral Orange)", + "GiftDropId": 11101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a7aae41-ae4e-42a2-a1df-2bc89ab11d3f,ySbPHkP8WEee2V_P8lt_RA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Gardener Gloves", + "GiftDropId": 11102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Glove (White Glow)", + "GiftDropId": 11103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,CsPK8sqkHUSV1u9d4LijHw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Green)", + "GiftDropId": 11104, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11104, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,DJnKyNXtuEW1tbKBFscIng,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Glove (Pink Glow)", + "GiftDropId": 11105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,dPM-UHMtSEKC3rN8l4JsUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Orange)", + "GiftDropId": 11106, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11106, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,GYeYHzKcekODxx_zbtk8Qg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Pink)", + "GiftDropId": 11107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,jhPUIkf5bkinMSsqPTK3fg,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Glow Skeleton Glove", + "GiftDropId": 11108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,KWYMlbpZiEWRUb0F7CYDjA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Blue)", + "GiftDropId": 11109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,lwyGrpMk-kGZwIkioHr8Sg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Gloves (Purple)", + "GiftDropId": 11110, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11110, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,s6DQxJ3gY0CG8L7JmcmRTQ,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Glove", + "GiftDropId": 11111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6a98bbb6-bbe0-4dc3-97a9-e253dc506a2b,ZY0rVNemjEuEMGMjuPNZyA,GXS9LQgPU0mJIEuXo_Oocw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Glove (Blue Glow)", + "GiftDropId": 11112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sarong Swimsuit", + "GiftDropId": 11113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ada01c9-3a82-4e21-be3f-70d6eeb24a8d,PNnfMibAUkqetPThlhtBgw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sarong Swimsuit (Cactus)", + "GiftDropId": 11114, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11114, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b337a35-95d9-4b3a-9891-d9fbb06262aa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Curly Mustache", + "GiftDropId": 11115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Scarf (Red)", + "GiftDropId": 11116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,5c4a2b35-0e1c-44de-8c3a-96d4a6458b1b,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Scarf (Purple)", + "GiftDropId": 11117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,6dd95046-acf8-42fe-ab78-80a334096a9d,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Scarf (White)", + "GiftDropId": 11118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,d6edbc00-3c1d-4f49-8412-3ef8c7c5f4c2,cf119781-5bd9-4b85-9a0b-12e82e988c23,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Scarf (Blue)", + "GiftDropId": 11119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6b9e022c-0b68-48fd-8eca-da8573c18900,WWVPdeMMi0S4_Dmn85yEqQ,FRUp0aYZTUmAXsybauOs7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Director Scarf", + "GiftDropId": 11120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Black)", + "GiftDropId": 11121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,64545dcc-a8eb-4c69-a539-78ee73a2d327,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Green)", + "GiftDropId": 11122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,71e5a0fe-fc8d-420b-af3b-e74160e0d1f3,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Purple)", + "GiftDropId": 11123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,909ed249-ce09-4304-8b02-56794fa7567d,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Red)", + "GiftDropId": 11124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,aBQ3R9boek-mYeSYSNvDbQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Blue)", + "GiftDropId": 11125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,e02838f8-4029-455a-b35c-dd40f972b05b,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (White)", + "GiftDropId": 11126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d36091e-7083-4e3d-8729-94612602c8cb,Tbrc2MlSlE6mKua8qSoluQ,32d91d32-b102-4093-927a-6dc3ac2e9e86,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hunter Hat (Leather)", + "GiftDropId": 11127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d3be838-85cf-46db-b33d-0985aec9609f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Cowl", + "GiftDropId": 11128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d3be838-85cf-46db-b33d-0985aec9609f,Vn2gH3yjiE6bwBRgh5ntZQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Cowl (Red)", + "GiftDropId": 11129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Dress (Red)", + "GiftDropId": 11130, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11130, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,6564acf1-4d70-4f92-92ac-08e2b76dbb6b,2c8924aa-68f8-4912-9759-18992f72f08a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Dress (Purple)", + "GiftDropId": 11131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,d66aa400-aa5a-4539-a25d-5f8ce94dc281,2c8924aa-68f8-4912-9759-18992f72f08a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Dress (Green)", + "GiftDropId": 11132, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11132, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6d815b35-6f68-4ed4-817d-70f141e1a571,f750de46-3758-4f7d-9709-0a84b1027009,2c8924aa-68f8-4912-9759-18992f72f08a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Collared Dress (Blue)", + "GiftDropId": 11133, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11133, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Gold Sequins)", + "GiftDropId": 11134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6dd261d8-9806-4dac-81c4-a58f6d6a7f9a,Wm30oV5BtEuFQZFk3dPK_w,0R3Mh96tS0631EZYs03dmw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Red Sequins)", + "GiftDropId": 11135, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11135, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6e48363d-cc62-40a8-87f9-a69fae90c002,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Box Braid Hair", + "GiftDropId": 11136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Red) ", + "GiftDropId": 11137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,tLbmGIoldE2CC5Qi1oyqyA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Winter)", + "GiftDropId": 11138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,v_5qFi-vAUSDd1fLNL7pvA,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Green)", + "GiftDropId": 11139, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11139, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6fccd476-c621-4f3f-b2e3-45c95be912b5,y5O8zRJy4kuhnXzATSWKew,X0_GvGrZGkSP9Ub81CHgqQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jacket Dress (Blue)", + "GiftDropId": 11140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chainsaw", + "GiftDropId": 11141, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11141, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,5p1Hwa8IE0KIuucb7hV16w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chainsaw (Gray)", + "GiftDropId": 11142, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11142, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,jCfhcP5ftk6_ruDnFjIhJA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chainsaw (Purple)", + "GiftDropId": 11143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,odtEahcf10isGbVQCyc2bg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Chainsaw (Restoration)*", + "GiftDropId": 11144, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11144, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,qWS_znZq2km_MUGvv5QDHg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Chainsaw", + "GiftDropId": 11145, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11145, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6ffb2d7e-d4ee-4de0-9ab8-b5eb093b9739,ZqWSyRnr9ECIvoU5yFyqXQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chainsaw (Pink)", + "GiftDropId": 11146, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11146, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Summit)", + "GiftDropId": 11147, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11147, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,1_vRe9nJMEWcNX8kAwgh9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Ski Buddy Ear Muffs", + "GiftDropId": 11148, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11148, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,KwCEye0nsESFs-yj4h9sjQ,c_t9XDbn-Eqml1O-wC5zJQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Chill)", + "GiftDropId": 11149, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11149, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,m2znGrdH-EOhrbLbFsmyOg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Pink)", + "GiftDropId": 11150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,ojrXnWkUkEOGM3_oT6V29w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Ski Buddy Ear Muffs", + "GiftDropId": 11151, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11151, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6QT99hx6DE6t9cKAs61i3w,sipxCGA1uUu72KV07vAWFA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Ear Muffs (Slate)", + "GiftDropId": 11152, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11152, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Summit)", + "GiftDropId": 11153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,0mwtvRpkmECaT5_4aqCttQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Ski Buddy Jacket", + "GiftDropId": 11154, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11154, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,1BQdC-mTdUqfm4vUf0lx-g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Pink)", + "GiftDropId": 11155, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11155, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,fXNkMWFMV0aXalK_y_8SHw,HQQWccdyakaEmntPhvC6CQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Chill)", + "GiftDropId": 11156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,S7C2A8nga0SlIeOEkeYaUw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Ski Buddy Jacket", + "GiftDropId": 11157, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11157, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6RhwWExXekaYpK0NGHSXGQ,vpxBkYv6LUSVV4NhYAS1Fw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ski Buddy Jacket (Slate)", + "GiftDropId": 11158, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11158, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703e486a-1329-4e7b-8f3b-d9db9b9db0b5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Gloves (Black)", + "GiftDropId": 11159, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11159, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703e486a-1329-4e7b-8f3b-d9db9b9db0b5,8NY4MevLp0C2lP178fIZ9w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Gloves (Red)", + "GiftDropId": 11160, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11160, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sun Hat", + "GiftDropId": 11161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,dzH_40F-MUCy_7gATqL4PA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sun Hat (Blue)", + "GiftDropId": 11162, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11162, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "703f1987-2b31-4b6f-bab7-1939b1105ac0,YS-fXtVLTkG-wl40HPBLOg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sun Hat (Black)", + "GiftDropId": 11163, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11163, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Blue)", + "GiftDropId": 11164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Orange)", + "GiftDropId": 11165, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11165, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,83522c12-9549-4d74-8c87-bae210bcd2bf,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Black)", + "GiftDropId": 11166, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11166, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71014872-d879-4858-9d68-58da3c673d8b,XNq4Cns4lEGydtktdsXlmQ,5fd9e83a-cfaf-4c98-bd31-91a7484c26dd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Helmet (Navy)", + "GiftDropId": 11167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Helmet (Purple)", + "GiftDropId": 11168, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11168, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7134c60b-0640-463a-8d97-caa9184bef93,e3454bc7-c88d-4958-8b81-db3fe5472a1e,7e688b30-ed13-4790-9ad8-c49885d1b7e8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lacrosse Helmet (Pink)", + "GiftDropId": 11169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71921831-ba6f-408b-a00e-2fd97663636f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Tape (White)", + "GiftDropId": 11170, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11170, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71921831-ba6f-408b-a00e-2fd97663636f,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Tape (Black)", + "GiftDropId": 11171, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11171, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71921831-ba6f-408b-a00e-2fd97663636f,7d8e55fe-3c34-4b4b-9753-0021f6cc6454,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Tape (Cream)", + "GiftDropId": 11172, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11172, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71afc215-3d18-4f36-a114-f11c453e46d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar (Wood)", + "GiftDropId": 11173, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11173, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71afc215-3d18-4f36-a114-f11c453e46d2,BPp9SkUpsE2PZlStZrIDIg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar (Black)", + "GiftDropId": 11174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71afc215-3d18-4f36-a114-f11c453e46d2,O38XfZ3gh0-ofqu36y3mAg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar (Cherry)", + "GiftDropId": 11175, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11175, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (White)", + "GiftDropId": 11176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,ss931x_Hy0-y1au-fT3zTQ,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (Brown)", + "GiftDropId": 11178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,UQfLaKHzo0WqlRul_O61xQ,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (Forbidden Purple)", + "GiftDropId": 11179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,wZC46s7Id0CUICN_XOK-Rg,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (Pink)", + "GiftDropId": 11180, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11180, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "71fd5353-b439-4a23-b471-bfb99b8154d7,yrR3ogjJ50q6ypAnCF-ctQ,knKB2ETYmUupbvBwlleZRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bunny Ears (Grey)", + "GiftDropId": 11181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "730453b8-a352-4e6b-9573-54294690c2ad,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Staff", + "GiftDropId": 11182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "730453b8-a352-4e6b-9573-54294690c2ad,4yMvQ3-hnU2zZQf_XT9r-A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wicked Sorceress Staff (Red)", + "GiftDropId": 11183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Grey)", + "GiftDropId": 11184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,22dc463a-a89b-46ad-9a0d-557c742b4a80,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (White)", + "GiftDropId": 11185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,59866578-d4e0-417b-9483-233ab108b1ac,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Cherry)", + "GiftDropId": 11186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Black)", + "GiftDropId": 11187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ed134bee-d199-43eb-98bd-206571603f40,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Blue)", + "GiftDropId": 11188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,ITH2OpzjP022vZ5JgxV_iQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Yellow)", + "GiftDropId": 11189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "739fd42a-8a8c-44a5-afa3-e0974802c6ae,PMa9370LPEig_7pKwCceEQ,51a1809d-becd-42e0-8dfb-188d6f07ba1c,f5270130-6634-4052-aa3e-9849ddf5314e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Armor (Green)", + "GiftDropId": 11190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "73a119ab-d2c8-4da9-98b2-29edbb38e2c2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Red Sequins)", + "GiftDropId": 11191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "73c0e2ba-cba1-482a-89d5-1508997aceeb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Silver Sequins)", + "GiftDropId": 11192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Bracer", + "GiftDropId": 11193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74042b5f-f29e-4e72-b3b1-04e6abaed4a4,MzNNQ6T1HEqbqcLXZIulLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Bracer (Jade)", + "GiftDropId": 11194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Gloves (Tan)", + "GiftDropId": 11195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74365234-cb72-409d-8cf5-9a7209f707e1,49bbd11a-e5c9-47ff-b04d-72eb321e8a57,fa9a3d8e-16c9-4a7e-9166-3226e0d13c39,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Gloves (Green)", + "GiftDropId": 11196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Arizona Cardinals Shirt", + "GiftDropId": 11197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,_BV42pO3n0e0V-eOf9CyGg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Los Angeles Rams Shirt", + "GiftDropId": 11198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,5mFA4uHLmku8oCc1rDJmXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Denver Broncos Shirt", + "GiftDropId": 11199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,84OVMNAiv0mQwX2bpkw2yg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Chicago Bears Shirt", + "GiftDropId": 11200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,cLswsDJEmkCqYDGI8DJmPQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Cleveland Browns Shirt", + "GiftDropId": 11201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,coRfJXTxhUKsFs1tzSBgUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New York Jets Shirt", + "GiftDropId": 11202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ebjoqQ_pnU2qdFVR1yDIzA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New England Patriots Shirt", + "GiftDropId": 11203, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11203, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,EziQI39wZUWqIy8zs5I7LA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Seattle Seahawks Shirt", + "GiftDropId": 11204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,fdmR0dt0hEakaNp8mpjGmg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Dallas Cowboys Shirt", + "GiftDropId": 11205, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11205, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Fr--3nBIUUuD6EYmj1iklA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New Orleans Saints Shirt", + "GiftDropId": 11206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,g6PcjAOH0UinJtrGmxVuyw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Miami Dolphins Shirt", + "GiftDropId": 11207, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11207, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,G9cFrBRvw0S-nDp-Fn494g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Atlanta Falcons Shirt", + "GiftDropId": 11208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,hrTGnJLb4U21P9PCi7u3xw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New York Giants Shirt", + "GiftDropId": 11209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,i1e3GavcdEu7EJFzwpBXvg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Minnesota Vikings Shirt", + "GiftDropId": 11210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ishXZTP3bkeVNk68PBZAiA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Cincinnati Bengals Shirt", + "GiftDropId": 11211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,KcsFLjkhCUmg8HbamtChbg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Baltimore Ravens Shirt", + "GiftDropId": 11212, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11212, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,kdExSysXREOAYqobK_Wzpw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Kansas City Chiefs Shirt", + "GiftDropId": 11213, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11213, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,nHa0WjWfl0-g-sknorb10g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Indianapolis Colts Shirt", + "GiftDropId": 11214, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11214, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,pcEwV_ZPxkSKP39UgPh6fw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Houston Texans Shirt", + "GiftDropId": 11215, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11215, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,PWMkuXHWFEKGKfSiT8rWNg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Tampa Bay Buccaneers Shirt", + "GiftDropId": 11216, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11216, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Rlxn533MdUqMefvUSoZrrQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Los Angeles Chargers Shirt", + "GiftDropId": 11217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ry0fWzcysk2fsr-zIvzjUg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Detroit Lions Shirt", + "GiftDropId": 11218, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11218, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,S9YQnGF2WkaFSG07d-5TUw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Green Bay Packers Shirt", + "GiftDropId": 11219, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11219, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,VExSaZXZ9kan-0qjP6YPzQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Pittsburgh Steelers Shirt", + "GiftDropId": 11220, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11220, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,vtQ3bx6n7kSFdES121M5IQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Washington Commanders Shirt", + "GiftDropId": 11221, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11221, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,w_8Bff5J_Uej5iCAz2WTBw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Jacksonville Jaguars Shirt", + "GiftDropId": 11222, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11222, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,xdO8lwFuG0e1v2FRmza4dQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Tennessee Titans Shirt", + "GiftDropId": 11223, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11223, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,XlkkIjP4EEKq0ObjXYGtBA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Las Vegas Raiders Shirt", + "GiftDropId": 11224, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11224, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,xVPRKfkYG0-u4MFhJYGe9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Carolina Panthers Shirt", + "GiftDropId": 11225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Y75a0D5Wj0qmpfxG18LvWQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Philadelphia Eagles Shirt", + "GiftDropId": 11226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,ye7GYcd6PkObqAsla6BJaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Buffalo Bills Shirt", + "GiftDropId": 11227, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11227, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745b4725-5bf2-4b78-9847-076f02eab97e,Yec2FLXhpEmrocbVUOkhhQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL San Francisco 49ers Shirt", + "GiftDropId": 11228, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11228, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Purple)", + "GiftDropId": 11229, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11229, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,657f28d5-672a-4f27-86c6-3cb00f25bb84,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Red)", + "GiftDropId": 11230, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11230, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,8cab8cc6-9a2d-434c-8b72-e66edbdd223c,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Black)", + "GiftDropId": 11231, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11231, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,b42d903b-b393-4f49-af5e-38d0fb6c42b0,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Blue)", + "GiftDropId": 11232, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11232, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745c5110-104e-4b37-aabf-7c690fd54811,w_aK2K9bHEeU6oSQ7BK0qg,3ba69a39-a4e7-4505-bae7-8db31360ec1c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Coat (Green)", + "GiftDropId": 11233, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11233, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "745fd5ef-705b-40f0-bfd7-dbf4af5a82e8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mighty Princess Armor", + "GiftDropId": 11234, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11234, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wedding Dress", + "GiftDropId": 11236, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11236, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,nuR8wvvCXU-EMXjBZuTXJA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sugarplum Dress", + "GiftDropId": 11237, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11237, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,SExtD3FBk0GwseMZDdGJlw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sugarplum Dress (Green)", + "GiftDropId": 11238, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11238, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,TqhSo1hbPE6wdB_6lvLhFw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sugar Plum Dress (Purple)", + "GiftDropId": 11239, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11239, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Shirt (White)", + "GiftDropId": 11240, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11240, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,304e5cf1-5c94-481f-8e49-e6a943e6b300,90e0da8b-1941-4ca8-b7e5-b4e31921873c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tennis Shirt (Pink)", + "GiftDropId": 11241, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11241, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,NpMkoIK62k63QoLVEXId6g,iT7UGMahoEu7BZZqeKXKww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Shirt (Green)", + "GiftDropId": 11242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,PLRhiOhhb0KhatFH7f3pwA,iT7UGMahoEu7BZZqeKXKww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Shirt (Orange)", + "GiftDropId": 11243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74b91f2b-d4d3-4e41-8946-b1296ab7a773,RwgnKTfMEkWrAp_OMGy__Q,iT7UGMahoEu7BZZqeKXKww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Shirt (Blue)", + "GiftDropId": 11244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Red)", + "GiftDropId": 11245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,GVoh3mdWf0WNA9lfqL1GEw,w9qG5gHlAUqh8f9ZgnezsQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Blue)", + "GiftDropId": 11246, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11246, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,kkvNbVRjcEKtChpy3W1bqQ,nbhzQy_Hdkeohh4S1IezwA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Black)", + "GiftDropId": 11247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74c65554-0d15-409b-b9a8-0b2620a7d7e2,x4PPvuhg6USE6GSFgZZnCg,w9qG5gHlAUqh8f9ZgnezsQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "RecFly Vest (Green)", + "GiftDropId": 11248, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11248, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7524b3f3-130b-41b1-83f6-9c241bd92bb4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yeti Shirt", + "GiftDropId": 11249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7553d851-1986-4325-870d-e425dfb7d007,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Farmer Beard", + "GiftDropId": 11250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back", + "GiftDropId": 11251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,2dGY5MHfxEunzr7jtSFRVw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back (Yellow)", + "GiftDropId": 11252, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11252, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,DSZKCNhXAEiAxMM1Gqfhsw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back (Orange)", + "GiftDropId": 11253, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11253, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,E6md4xTNYkS9geB8zkNRmA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Snowboard on Back", + "GiftDropId": 11254, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11254, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,K1-5YGg2rEiJFRWUKEfEMA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back (Pink)", + "GiftDropId": 11255, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11255, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75e51889-defa-4689-b3fb-32882e08e5d1,PI3_sfTcNEW5TcAmHbsUOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowboard on Back (Blue)", + "GiftDropId": 11256, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11256, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Creamsicle)", + "GiftDropId": 11257, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11257, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,1w_u4d4AjESxw5dxRkKHrw,CylZksC7KUGXF2VeJhlLSw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Cheeseburger)", + "GiftDropId": 11258, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11258, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,1Z24Obg1MEm6dC_blOy4IA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Premium)", + "GiftDropId": 11259, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11259, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,6wCu0bPODE6tayAY_aicRQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (SummerCamp Contest)", + "GiftDropId": 11260, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11260, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,7BMBl3iA6USKijNCKfCXqA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Neapolitan)", + "GiftDropId": 11261, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11261, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,akqD9mYQQ0qks9SJe80MbA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Floatie (Invasion)", + "GiftDropId": 11262, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11262, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,LRv1X0ZrjkqO7azGpZ7uMg,sx10-Hsfl0OS62pIFvHH8A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Donut)", + "GiftDropId": 11263, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11263, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,NMmOn0zQZ0mJLxCMnsbIVw,v1ZOE9G9gEWAqNJX1A9f2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Watermelon)", + "GiftDropId": 11264, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11264, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "75-HXZBOAEiDBqclnOn8YQ,RCit-BlLyE6cvzpbfCVShA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Floatie (Invasion 2)*", + "GiftDropId": 11265, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11265, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Black)", + "GiftDropId": 11266, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11266, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,1421caa9-9a0d-42c2-b847-1500ba2e483a,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Brown)", + "GiftDropId": 11267, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11267, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,390a476a-5545-48eb-955c-1bf1a16012bf,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Grey)", + "GiftDropId": 11268, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11268, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,40283127-2ffc-4989-82f6-29c3381bf9e2,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (White)", + "GiftDropId": 11269, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11269, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,46970903-9799-4d25-b90a-7162c1f5dbef,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Creators Contest 2)", + "GiftDropId": 11270, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11270, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,8XajS2adOEOqzqnLy6-zcQ,P12CUkIg8EuFihGQsvPlxg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Hat", + "GiftDropId": 11271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "A hat given to the ethical hackers of Rec Room.", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76369aef-aeda-46d2-996a-cd00594d0543,PZx7Iae0pkiDaxT9t3-vgg,d759c88d-a159-4c26-86dd-b054bb05b3ed,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mobster Hat (Purple)", + "GiftDropId": 11272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "764b4c4e-1009-4772-b01f-7b326dd77e8a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Vest", + "GiftDropId": 11273, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11273, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "764b4c4e-1009-4772-b01f-7b326dd77e8a,93vga8NJQEe5nWdqrroAaw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Vest (Shamrock)", + "GiftDropId": 11274, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11274, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7652db86-bc67-4665-8937-f5199d27b5c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mighty Princess Crown", + "GiftDropId": 11275, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11275, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "767684e7-0eec-4f6e-ad58-3d5ae715206e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Sunglasses", + "GiftDropId": 11276, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11276, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76a73866-5b60-424d-b751-a105e030f46e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Prankster Hair ", + "GiftDropId": 11277, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11277, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76f8f9b8-0793-4d98-962c-9e6a71979540,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Belt Sword (Jade)", + "GiftDropId": 11278, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11278, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "76f8f9b8-0793-4d98-962c-9e6a71979540,XIluUn9vQEabkEpqyYBG0g,9sSCSLRkYUCs4CCHK8FfAA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Belt Sword (Red, Gold)", + "GiftDropId": 11279, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11279, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask", + "GiftDropId": 11280, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11280, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,HWAWBHI3zkGsh06he9CoPg,UAeSz-XeZUaZsk9FNlPX5w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask (Raven)", + "GiftDropId": 11281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "771863b6-70d1-4f48-9c64-c621ce0fea46,I_3bHRSG_EmC6novYyy2dA,Cq8BOWcHb0GTDLvXl1iIcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Mask (Red)", + "GiftDropId": 11282, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11282, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (Brown)", + "GiftDropId": 11283, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11283, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (Black)", + "GiftDropId": 11284, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11284, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77c37481-a185-47ff-af55-65f9fdfcf9e5,643b5f2d-0666-4869-b699-03742de34d16,2c0d912d-c184-4eab-8ee4-73b90ba7b0a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fur Coat (White)", + "GiftDropId": 11285, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11285, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "77d3c585-4928-4471-a425-89036efe7299,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spiky Hair", + "GiftDropId": 11286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "79b90274-6eec-4664-acfb-4a123334661e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pig Tails Hair", + "GiftDropId": 11287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Blue)", + "GiftDropId": 11289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,4398ce1a-e6ee-4da4-ad0d-7abfab41020c,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Yellow)", + "GiftDropId": 11290, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11290, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,83522c12-9549-4d74-8c87-bae210bcd2bf,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Black)", + "GiftDropId": 11291, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11291, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,qspNifi92keI-XssPB5qDA,RVraJOPsOUqZjd8bEiPduQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Premium)", + "GiftDropId": 11292, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11292, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a6fe0e6-f930-4fb8-9b2f-4c857a273dd9,XNq4Cns4lEGydtktdsXlmQ,0XPd5RzNJEepHztqwAznHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Gloves (Navy)", + "GiftDropId": 11293, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11293, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Brown)", + "GiftDropId": 11294, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11294, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,a8de80d3-286a-4fdc-bed2-75d52f8c0964,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Black)", + "GiftDropId": 11295, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11295, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,c6cf096c-f0cb-4500-80a0-bc2916b5a426,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Tan)", + "GiftDropId": 11296, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11296, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7d8a06-7982-4bcb-b7bd-4d03b48889b4,FjnZ-D1hcESLOWL4Ukv7kw,ff5ae41e-e446-4a96-8c11-49d85556fa81,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aviator Hat (Red)", + "GiftDropId": 11297, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11297, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a97838f-24ac-41a0-8390-0c9308644eb1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Power Sword", + "GiftDropId": 11298, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11298, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a98503f-0460-4d25-a0d5-72a32db8f4c2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Turtle)", + "GiftDropId": 11299, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11299, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a98503f-0460-4d25-a0d5-72a32db8f4c2,A8ht7G1iqEeLvP0SW6SwyQ,QppxPdf550-jT7dK7XrTzw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Penguin)", + "GiftDropId": 11300, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11300, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Primrose)", + "GiftDropId": 11301, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11301, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,_OM7UNZENEejgO5h7H1ztg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Dahlia)", + "GiftDropId": 11302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,9Z95fSKS00GscDxK8-ARlA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blueberry Gamer Dress", + "GiftDropId": 11303, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11303, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,D9U3j_XgSUesfHtSNoAdLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Cow Print)", + "GiftDropId": 11304, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11304, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,I8SCbauJX0OLAKWOjy78yQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Strawberry Gamer Dress", + "GiftDropId": 11305, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11305, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,IzdUC8x0F02i3BhPfEUOYw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Poppy)", + "GiftDropId": 11306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11306, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,nPUQvBsxu0mzhQg9YnWEgw,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Paradise)", + "GiftDropId": 11307, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11307, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,P6w6X7-Dak2G6O8HDRwlVg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gamer Dress (Lime)", + "GiftDropId": 11308, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11308, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,RKftA1Fw30-hriuZNMGsoQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gamer Dress (Grape)", + "GiftDropId": 11309, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11309, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,SiraUm3ZaUOCeXCekunJuA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pineapple Gamer Dress", + "GiftDropId": 11310, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11310, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wLpOk1g2rUyDeCKb5uOeSg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gamer Dress (Raspberry)", + "GiftDropId": 11311, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11311, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,wyKAZSZwT0u9cuSaQ_-IHg,vUgpsaXrO0ak7huhkHqlUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Begonia)", + "GiftDropId": 11312, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11312, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7aa994d2-6499-4918-ab2a-2531c17e27a7,ZXeI9jooq0-dQaX-FlkNuQ,CAqT_iLfQ0qQ-GbIdAsZow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Dress (Lily)", + "GiftDropId": 11313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Suit (Blue)", + "GiftDropId": 11314, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11314, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,jGNpSO25HkO7KbR3v05nkA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Suit (Astronaut)", + "GiftDropId": 11315, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11315, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,lhqUg1VMNkC8nrsGZF4edQ,uFERkSfSl0i9BPFBVOICeg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Suit (Red)", + "GiftDropId": 11316, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11316, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7adae61e-cd62-46c3-ae42-83ef0bced5c7,yO5pgI2quE2i3tNBlvJPGA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Suit (Sponsored)", + "GiftDropId": 11317, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11317, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b568bd0-ce59-456f-af69-537364a52f69,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Suit (Black)", + "GiftDropId": 11318, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11318, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b568bd0-ce59-456f-af69-537364a52f69,_fabGqrxrkW2mfx0bejHsA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Suit (Red)", + "GiftDropId": 11319, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11319, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "T-Shirt", + "GiftDropId": 11320, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11320, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Black)", + "GiftDropId": 11321, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11321, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Black)", + "GiftDropId": 11322, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11322, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,48abd952-214f-48b2-a8f1-1146f6f69aa2,b78008e8-abbd-4ece-be34-9a911f721fcc,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Zebra)", + "GiftDropId": 11323, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11323, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Orange)", + "GiftDropId": 11324, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11324, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Orange)", + "GiftDropId": 11325, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11325, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,5c4a2b35-0e1c-44de-8c3a-96d4a6458b1b,9c03f381-7357-4d0f-8cda-8737d4c43d25,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Rainbow)", + "GiftDropId": 11326, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11326, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,6d703981-2734-4c45-8983-cdd5f328902f,a0271cd0-e172-4d3f-aa2f-9806f21a82d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Camo)", + "GiftDropId": 11327, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11327, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,724c79a3-822c-422f-9462-a5374ee0211c,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (White)", + "GiftDropId": 11328, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11328, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Red)", + "GiftDropId": 11329, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11329, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,8377ab96-c908-457f-9fee-b784c9a759f3,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Red)", + "GiftDropId": 11330, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11330, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,90bc2d31-1715-4d1a-813a-7c57e66cb017,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Teal)", + "GiftDropId": 11331, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11331, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,ad61c418-6d77-4a99-8ac5-9f10f5a3d42f,b292eb4b-07e3-4a48-99b5-3c6587a1e02e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Dots)", + "GiftDropId": 11332, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11332, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,c72911d0-453f-4732-b1bd-dad520220a06,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Purple)", + "GiftDropId": 11333, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11333, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Pink)", + "GiftDropId": 11334, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11334, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,d2b40639-5d34-45b6-904e-6dd29030ff44,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Yellow)", + "GiftDropId": 11335, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11335, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tank Top (Blue)", + "GiftDropId": 11336, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11336, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,dee70c38-7a99-4c2b-9181-665f1bf75aca,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Blue)", + "GiftDropId": 11337, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11337, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7b857a8c-92ad-4028-a2c2-b3c20cdab5f2,f8b0cfe8-e129-4578-8bb5-f60af5d38599,d2a692e6-e1a9-4cfe-8154-10b52be7f8c8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jersey (Green)", + "GiftDropId": 11338, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11338, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pearl Necklace (Freshwater)", + "GiftDropId": 11339, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11339, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7be2eafc-21ea-4266-ae64-8888c06798d6,sqPMH0LhLkeG-4XkxpU-sw,URWHffwjGUKgXeV01upePA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pearl Necklace (Saltwater)", + "GiftDropId": 11340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c1552a6-bc36-46e6-884c-1de6b8111a92,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raccoon Cap (Brown)", + "GiftDropId": 11341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c1552a6-bc36-46e6-884c-1de6b8111a92,926ae943-76cb-46dd-9c66-a6ee44ea9194,f1cd10fb-3d0b-436f-a173-65bc0d88d8bf,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raccoon Cap (Grey)", + "GiftDropId": 11342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7d6cf363-76ba-45c8-91f1-cf4434c31b36,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banker Monocle", + "GiftDropId": 11343, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11343, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mirrored Glasses (Gold)", + "GiftDropId": 11344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7db6b49f-3e2a-4da8-bdfa-e9ad9ebc5ba6,f841cdfa-45ba-4f09-a117-503eef34cb4b,9c55b609-b7dc-4070-a3ad-6351a0054a06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mirrored Glasses (Silver)", + "GiftDropId": 11345, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11345, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7dc6c916-b887-4929-93b5-dcea3022e6a9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Wonderland Contest)", + "GiftDropId": 11346, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11346, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7dd6f7b0-7ba0-429f-a04f-e32d3a79ee61,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Short Wavy Hair", + "GiftDropId": 11347, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11347, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Felted Shawl", + "GiftDropId": 11348, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11348, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7df5697f-2f71-47d1-bc27-cfa43792ffd7,GCethPzUyUKYxWdfLykbSg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Felted Shawl (Pineapple)", + "GiftDropId": 11349, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11349, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Black)", + "GiftDropId": 11350, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11350, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,1LonkCbt4kykeAScYKpwyg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Navy)", + "GiftDropId": 11351, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11351, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,5mcp7-2ZEE6n3-zN3_CoWw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Purple)", + "GiftDropId": 11352, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11352, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,9b9t8_aKH0-gQXMhZycaOA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Orange)", + "GiftDropId": 11353, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11353, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G4HIPUjekUigiU0-Kr9mdA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Yellow)", + "GiftDropId": 11354, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11354, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,G-VKgepBkkeATcwCaS6Rwg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Grey)", + "GiftDropId": 11355, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11355, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,IXWd396grEOWHt32L7fCpQ,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Blue)", + "GiftDropId": 11356, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11356, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Jt0QqNrAp0qzUR_RQoivVg,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Green)", + "GiftDropId": 11357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,lBePHNL9LkyaAjEFyFE8Sw,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Red)", + "GiftDropId": 11358, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11358, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,R0UCacpdhUS906Xf7l142A,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (Teal)", + "GiftDropId": 11359, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11359, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e22a4bd-3e87-4d50-8843-9e2e3cf45285,Zz4XatKfUEapReRAQHxKKA,rzoH8P44a0esN-HnYd3aQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turtleneck (White)", + "GiftDropId": 11360, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11360, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e6e24b6-6f9c-4315-b457-73eba52d824c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Glove", + "GiftDropId": 11361, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11361, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7e6e24b6-6f9c-4315-b457-73eba52d824c,Mnpd7r3eu0CNmZYSPTMASg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Gloves (Ghost)", + "GiftDropId": 11362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alley Cat Ears", + "GiftDropId": 11363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,9yNuA59JO0avaKVA6YxQyA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alley Cat Ears (White)", + "GiftDropId": 11364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,dr6MrV8O30G0i-c7peOoKQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alley Cat Ears (Orange)", + "GiftDropId": 11365, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11365, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ea796bf-f552-4da8-8f68-a87c4896c8e6,UcK6aipko0iE4THJUO1TvA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alley Cat Ears (Grey)", + "GiftDropId": 11366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7ee02f33-1135-4adf-a626-44a1b6d1b0cb,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeletor Mask", + "GiftDropId": 11367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7LSm-xCYakmgcAr--Fn-JA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Dress (Grim)", + "GiftDropId": 11368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7LSm-xCYakmgcAr--Fn-JA,rZ45-lecBESqHaLX0c7NAw,iDxHI0T4Gkifs3_GY5gdjQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Dress (Emerald)", + "GiftDropId": 11369, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11369, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7LSm-xCYakmgcAr--Fn-JA,uTHwo8qd6Ei3Oy4gz_j9Ow,AK4CoAB2IUGkwqECNaO75g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Dress (Creators Contest)", + "GiftDropId": 11370, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11370, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7VQvz9sbzUWvGalxd9rISg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bride of Frank Gown", + "GiftDropId": 11371, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11371, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7VQvz9sbzUWvGalxd9rISg,YTR8qybyVkOhNh4iqtU_UQ,H8LXGRJj8UOuH5dil8L9qw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Crimson Bride Gown", + "GiftDropId": 11372, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11372, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7VQvz9sbzUWvGalxd9rISg,zNBLaOhCAEKWvgLK4P_X7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Dress", + "GiftDropId": 11373, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11373, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8263a9ca-8c57-4e81-b3e3-24f2ca19a70a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Construction Helmet (Yellow)", + "GiftDropId": 11374, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11374, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8263a9ca-8c57-4e81-b3e3-24f2ca19a70a,uym5X1GZgUSzVb8U-pwlIw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Hard Hat (Restoration)", + "GiftDropId": 11375, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11375, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "833e8ab3-9b54-4e15-8f4d-ee1bac5823c9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Werewolf Head", + "GiftDropId": 11376, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11376, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Blue)", + "GiftDropId": 11377, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11377, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (White)", + "GiftDropId": 11379, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11379, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Red)", + "GiftDropId": 11380, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11380, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e4IDo-fuH0C9YByzcX5k-A,qCIoeLQw-Uq-SKIetIgIpA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Bow Tie (Red)", + "GiftDropId": 11381, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11381, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,e69372eb-2fd8-4e17-a448-ee0be61a2c7a,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowtie (Black)", + "GiftDropId": 11382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,W4a144so90eRzCojUnDowA,rcuK1wZcXkCe0_LGX7E-Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Candy Cane)", + "GiftDropId": 11383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83be5ba4-525a-4781-a5f6-839c22e4d1d3,wF-WrDaY_kmm1AzA20RsZw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Shamrock)", + "GiftDropId": 11384, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11384, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Orange)", + "GiftDropId": 11385, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11385, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,83522c12-9549-4d74-8c87-bae210bcd2bf,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Black)", + "GiftDropId": 11386, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11386, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,c5884778-a87f-4612-9717-86fbb65d440f,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Blue)", + "GiftDropId": 11387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "843e3364-a743-4dfc-a990-0436e47b8c10,XNq4Cns4lEGydtktdsXlmQ,1695608b-e9cc-4a03-b56d-0f09d2804379,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bike Shirt (Navy)", + "GiftDropId": 11388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84574356-98ec-415f-8668-82cb52016bd3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Zebra)", + "GiftDropId": 11389, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11389, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84574356-98ec-415f-8668-82cb52016bd3,ljbO0JAKVky8M97MsjKnPg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Armored Horse)", + "GiftDropId": 11390, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11390, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84574356-98ec-415f-8668-82cb52016bd3,p379ObEL9Eea0DX9Ld4qnw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Horse Floatie", + "GiftDropId": 11391, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11391, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84600de6-93fc-4a89-961e-1f18f4b80643,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Costume", + "GiftDropId": 11392, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11392, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84600de6-93fc-4a89-961e-1f18f4b80643,Be2v1bpBSEu4lwKJePscPA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Costume (Ghost)", + "GiftDropId": 11393, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11393, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84805fb5-91c4-4619-92d0-d7c19ffa3e5b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Suit", + "GiftDropId": 11394, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11394, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84805fb5-91c4-4619-92d0-d7c19ffa3e5b,zvs7t0P2Q02wIELJzMa2TQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Vest (Blue)", + "GiftDropId": 11396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84992fc3-4801-492b-8a6c-ffa09ae5b593,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disco Ball Headphones", + "GiftDropId": 11397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stoll Dress (Pink)", + "GiftDropId": 11398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,64850553-cdfe-455a-ac00-dafbe63d613e,91a451c1-b285-4c48-b14d-59ded8cc006f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stoll Dress (Orange)", + "GiftDropId": 11399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,761a3193-60f0-4190-80c7-285b8192e794,91a451c1-b285-4c48-b14d-59ded8cc006f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stoll Dress (Blue)", + "GiftDropId": 11400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84cd594c-1cd8-4b4d-8409-85c8fd5fb02a,a819f49b-6c7a-49d3-9e6a-d9d79ef5019f,91a451c1-b285-4c48-b14d-59ded8cc006f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stoll Dress (Green)", + "GiftDropId": 11401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Wings ", + "GiftDropId": 11402, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11402, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,cbk6h_-1Y0exRpGyrQMDMA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Wings (Red)", + "GiftDropId": 11403, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11403, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "84efabec-fe50-4c92-845f-b99b1d84ca82,E_pm-PPj_U-nsfMti-AlCA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dragon Wings (Green)", + "GiftDropId": 11404, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11404, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Summer)", + "GiftDropId": 11405, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11405, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,_SPKrYIcnUWhTiSrTFLwoQ,w-vooMawWU6_4spdgBYufA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Winter)", + "GiftDropId": 11406, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11406, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,AHL9ydUbqEqMw1tluIvyQA,w-vooMawWU6_4spdgBYufA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Fall)", + "GiftDropId": 11407, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11407, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,BYbKbXAgUk6vE7H7w4jSMA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Cherry Blossom)", + "GiftDropId": 11408, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11408, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8595c7b2-4d1c-4eae-af9a-8180d475d931,n2pZHS8A3kSgyFUCI_-8TA,w-vooMawWU6_4spdgBYufA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dryad Dress (Spring)", + "GiftDropId": 11409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "85e03c16-4288-45f4-a579-c911437d27d4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoodie Jacket", + "GiftDropId": 11410, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11410, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8691fa78-3069-41e6-8431-01c294e8d56b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Orion)", + "GiftDropId": 11411, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Unlocked by visiting ^WelcomeAndroid", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11411, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86af3a97-18d8-4dda-a2f2-cfd3b4224254,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Green Sequins)", + "GiftDropId": 11412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86dd9ff9-643f-4f11-8243-93ad948db4cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Happy New Year Sash", + "GiftDropId": 11413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86e0a4cf-b112-40d2-94b9-7ef35abe5a61,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Outlaw Cape", + "GiftDropId": 11414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "87792b6e-1468-45e1-b28c-83f27ada7299,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Fuchsia)", + "GiftDropId": 11415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "880a3cc0-7407-4b61-b759-f9dd890fe9e5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bob Hair", + "GiftDropId": 11417, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11417, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Gloves (White)", + "GiftDropId": 11418, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11418, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88739d79-aeb9-471a-b25b-776f46bba9f6,y_gTbnuYS0GKJmnCs2retw,hjk9OO8CW0KNGR7A6_p84A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Gloves (Orange)", + "GiftDropId": 11419, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11419, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8896a6f6-0f54-4f0b-aebe-7b121f3efd94,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Cape (Red)", + "GiftDropId": 11420, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11420, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8896a6f6-0f54-4f0b-aebe-7b121f3efd94,46WaeyRZnUCuLkEpxECRMg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lightning Hero Cape (Black)", + "GiftDropId": 11421, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11421, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88ae6d12-6d39-4770-ac2a-f8c4602a10a5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Soldier Helmet (Blue)", + "GiftDropId": 11422, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11422, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "88b6ddeb-a455-460d-91d9-a4569ef6903c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Earrings ", + "GiftDropId": 11423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Coat (Black)", + "GiftDropId": 11424, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11424, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,4828b50c-95b6-466a-bb25-514891d78202,d344b8cc-85a8-4ace-9f92-38c84f396e99,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Coat (Grey)", + "GiftDropId": 11425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,55901f12-d5b5-4fa8-b4c8-e479689ee39d,d344b8cc-85a8-4ace-9f92-38c84f396e99,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Coat (Blue)", + "GiftDropId": 11426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "896c2491-2f96-4986-9cbd-b3b31ef5d8c5,d6823e01-69f0-4f85-b94a-74894356a2cf,d344b8cc-85a8-4ace-9f92-38c84f396e99,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Coat (Maroon)", + "GiftDropId": 11427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Squid Hat", + "GiftDropId": 11428, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11428, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "899f1d17-eee1-4b7d-a112-fbbba597e738,t8kKXvBU-kSM_MHaqZYpkQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Squid Hat (Blue)", + "GiftDropId": 11429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gentlelady Hat", + "GiftDropId": 11430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,9liduuR6IE-6C4YN_FKcZg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Green Gentlelady Hat", + "GiftDropId": 11431, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11431, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,clKD22mme0y8apzUhHmI_A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pastel Purple Gentlelady Hat", + "GiftDropId": 11432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8a26efb4-2116-48ba-84a0-c4fdcf74c191,tp0jNW7f0Uubr9nTMWuhXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gentlelady Hat (Pastel Pink)", + "GiftDropId": 11433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8aa79563-ace1-4ba7-ad0c-f3210a78142f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Shirt (V-Neck, White)", + "GiftDropId": 11434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8aa79563-ace1-4ba7-ad0c-f3210a78142f,95e4cc30-cb68-473d-a395-feadf5b51512,05f0ee6e-c824-470e-9178-5ed576c6fe0c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room T-Shirt (V-Neck, Orange)", + "GiftDropId": 11435, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11435, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Blue)", + "GiftDropId": 11436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,bgRKH1wfqkWVHcuSnFYnlQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Green)", + "GiftDropId": 11437, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11437, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,eOJkmpSL4EypK-AQz7j8gQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Black)\t", + "GiftDropId": 11438, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11438, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,hRxyLsKfsESFAsXAyZQjoA,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Blue)", + "GiftDropId": 11439, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11439, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,KaZqNx5VKkarRrOJcTuD9A,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Red)", + "GiftDropId": 11440, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11440, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,kgCKjtSjFEmFq9ez2llxKQ,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Green)", + "GiftDropId": 11441, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11441, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,o2WfRyjJy0CKoUg8YIxNjQ,sxWOOK1RwUOp5YqZ7a36xg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Tan)", + "GiftDropId": 11442, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11442, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,P9bBSL0YLEyjN8PxMfgbKQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (Black)", + "GiftDropId": 11443, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11443, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,sscD2O3LEUOAKkqjGpGe8g,uZjxYOMa10GzJ9wQkRge2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel (Orange)", + "GiftDropId": 11444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b065e2a-b106-4f11-b415-4c47ce87993e,yA0KhVg19kWqG1UkyxQogQ,PMGQ8fLc2UuJXMy42Ati-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Jacket (White)", + "GiftDropId": 11445, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11445, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b9f1413-e786-4a30-946c-9292f207875a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pulp Hair", + "GiftDropId": 11446, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11446, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c35c804-e8d5-49d2-8d5a-ea19fb70bfa6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pencil Bun Hair", + "GiftDropId": 11447, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11447, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Visor", + "GiftDropId": 11448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ear Headphones (Forbidden Purple)", + "GiftDropId": 11449, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "This item may come in handy at concerts, afterparties, or in dark, forbidden lairs...", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11449, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,7Ww7mumWXkiyj0R3u_-hrA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ear Headphones (Glitch Blue)", + "GiftDropId": 11450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c9df7cc-2ccf-4d5b-8116-2d8d6c839012,etbo7k9dq0OyjIrNS4sdkQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cat Ear Headphones (Neon Pink)", + "GiftDropId": 11452, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11452, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8cc01536-2f43-4de4-ac63-7304d8beb73c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Settler Hat", + "GiftDropId": 11453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "Drops occasionally after Rec Rally games.", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d10cc78-6b00-45f3-affb-205e9cc5b03f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beard (Close)", + "GiftDropId": 11454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Hat (Black)", + "GiftDropId": 11455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,53dd9e44-7096-438e-a7c3-11d7c307426f,a4903da3-249d-4f0a-a746-b547fda371ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Hat (Brown)", + "GiftDropId": 11456, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d17031a-c0a5-4145-92b7-1f0c2d8f0ce6,c3c9f89c-580c-43c4-b38b-07394044e0e1,a4903da3-249d-4f0a-a746-b547fda371ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Hat (Red)", + "GiftDropId": 11457, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d3d4ba2-5d98-4034-8dc1-cd00263e2b71,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Retro Gamer Bag", + "GiftDropId": 11458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d3d4ba2-5d98-4034-8dc1-cd00263e2b71,EM1x0p66L0Gf6BNBP8-1kA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dark Retro Gamer Shoulder Bag", + "GiftDropId": 11459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Black)", + "GiftDropId": 11460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Blue)", + "GiftDropId": 11461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,d5efaf80-7f34-4c9a-bc3a-b80b1ac70ace,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Red)", + "GiftDropId": 11462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d703940-224a-4b0c-a04d-f365550071e1,qdA34j6p_UqphqChTCHEYQ,7c4d447c-6594-4bd8-9510-12ad683ab116,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Green)", + "GiftDropId": 11463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Triton)", + "GiftDropId": 11464, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11464, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,CahBzgN3D0y46AQsvGC14A,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Leviathan)", + "GiftDropId": 11465, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11465, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8d97303c-5138-4da1-a74d-378da19d11cb,Su7kiW24d0KapNns96JoFQ,ZpyoWbO6GkGglXlMuYUARw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Tank (Kraken)", + "GiftDropId": 11466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Shindig)", + "GiftDropId": 11467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,69vv21jfTUu1E_LjK5bytg,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Jubilee)", + "GiftDropId": 11468, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11468, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,AfqXBWLBQEiiag4cEtoEiA,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Hoopla)", + "GiftDropId": 11469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8df990d9-141a-4757-b4f2-138d5e68ab74,RROvzwtshUGyRudVIBn8bw,MrrsmY0J0EKduH-f5wUj6g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Party Hat (Celebration)", + "GiftDropId": 11470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8f137b1f-4125-4657-85c4-bcdb74d3b0c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barrel Shirt", + "GiftDropId": 11471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Black)", + "GiftDropId": 11472, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11472, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,5Dbc8qCaY0OXEuwykM4naA,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Blue)", + "GiftDropId": 11473, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11473, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fc7aaef-adec-4534-8f91-445e4e7095d5,HBt3ToOkUUereoPKwyvzuw,awWjleyNP0akWNYJoehCLA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Cuffs (Green)", + "GiftDropId": 11474, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11474, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fec17b6-f5fd-40b5-ac9e-a52faf5621c4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Basketball Headphones", + "GiftDropId": 11475, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11475, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8fec17b6-f5fd-40b5-ac9e-a52faf5621c4,G_fqC7KPaUWFM4Dk3stJYw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "8 Ball Headphones", + "GiftDropId": 11476, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11476, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Crown", + "GiftDropId": 11477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8ff44820-2c4a-4a0b-b409-5b46b6c9e21c,z1djgGqy502ha9X_uB3enA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Crown (Jade)", + "GiftDropId": 11478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Pride)", + "GiftDropId": 11479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,6secgNPvmUyFnI3NC5dIYw,5V_1JEDrRUa1UPKhtrSB2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Victory)", + "GiftDropId": 11480, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11480, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,bc-aVFn__E61pyA4SvUoGA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Suit Shirt", + "GiftDropId": 11481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9073d6a0-3bc1-4c82-aeb3-d4ee195538b4,X5SuBHIGBE6wy8N8KDop8Q,5V_1JEDrRUa1UPKhtrSB2w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerleader Sweater (Rally)", + "GiftDropId": 11482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9117bd15-674e-4f22-9ff8-e7365fa43907,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar", + "GiftDropId": 11483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9117bd15-674e-4f22-9ff8-e7365fa43907,UdQxfRULDEG6BvJV7HWO_g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acoustic Guitar (Dark Oak)", + "GiftDropId": 11484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9168b3f9-c7e5-40b6-bb2c-9e708596e675,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Head", + "GiftDropId": 11485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9176086b-a0b4-4298-a7fb-eb91ea421e89,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Kraken Backpack", + "GiftDropId": 11486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Survive any game with the Squid King watching your back. Go Krakens!", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "92302d9d-c527-418c-ac5d-1fa869727505,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Part Hair", + "GiftDropId": 11487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9231a9c6-7638-4fe9-bd2f-eac6c943009b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Championship Wrestling Belt", + "GiftDropId": 11488, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11488, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moons & Stars Dress ", + "GiftDropId": 11489, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11489, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,4PI6XssggEKRxkGlWeo8KQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jigsaw Moon & Stars Dress", + "GiftDropId": 11490, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11490, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "936d7126-a3b7-48a2-bceb-6cad9221b267,eutz2irupECSYGMtru3NMQ,Gruqp7EGM0WJbAM_F8hWbQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowflake Dress", + "GiftDropId": 11491, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11491, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet", + "GiftDropId": 11493, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11493, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,Adyl5MkwQEKK_MT5AluYkA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet (White)", + "GiftDropId": 11494, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11494, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,BizZfhG8ikOOEvAxN6w48A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet (Green)", + "GiftDropId": 11495, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11495, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,KfjLWNUbpEClo_qafEfUEw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet (Pink)", + "GiftDropId": 11496, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11496, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "943d2fc7-a769-4195-b147-a765e6c274c5,zJKd2ZtIsUGCdHP1M0215Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Helmet (Blue)", + "GiftDropId": 11498, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11498, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape", + "GiftDropId": 11499, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11499, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,07qFFGmwm0qmIikemncBkQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Cape (Midsummer Blue)", + "GiftDropId": 11500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,8M72ydR_uUSsli43PH2Eyw,wQxO4xmXCUGeC9ZHfDNGTw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape (Raven)", + "GiftDropId": 11501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,F0o3eeWbCUaUAGRUdI0z7A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Cape (Midsummer)", + "GiftDropId": 11502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,hRl4UTGoBUi5dmu0f4s76A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Cape (Midsummer Verdant)", + "GiftDropId": 11503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,NnqAnqqLmUypWnNR2s-_sg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cottagecore Cape", + "GiftDropId": 11504, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11504, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,qvK8xgbyuE-dW3--Ku-mvw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Cape (Midsummer Obsidian)", + "GiftDropId": 11505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9441142e-981c-4f35-8f9d-b4b3604da9a4,W83EASFUS06FBVMfL80ruw,Ydd6tdb9dUGooM6WAczNjQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowy Owl Cape (Red)", + "GiftDropId": 11506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Goalie Gloves (Red)", + "GiftDropId": 11507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,l2g5qO9dokiNepH92oPmug", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Gloves (Purple)", + "GiftDropId": 11509, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11509, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "94eb7ef3-528f-4f59-92a0-48b0ec287527,whEHo6Rhr0CxsDBsBD32WA,av4PwLz6YkmpBRImQZgn4Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Goalie Gloves (Blue)", + "GiftDropId": 11510, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11510, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "95ab7a7c-c35d-4da5-9955-0921064470b6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gekko Hair", + "GiftDropId": 11512, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11512, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9656a307-0c79-4b8f-910f-e67c454faefb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Pods (Teal)", + "GiftDropId": 11513, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11513, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9656a307-0c79-4b8f-910f-e67c454faefb,mG0HW8fJkUOE5u7Whg4kag,3CLmVNB_p0Gd5N8dN74TBw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Pods (White)", + "GiftDropId": 11514, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11514, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "967187b8-df20-4f4f-b48f-10b9ea75cedf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Farmer Overalls", + "GiftDropId": 11515, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11515, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (White)", + "GiftDropId": 11516, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11516, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,1919d319-6cce-4500-8766-15fed6a13fa8,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Gold)", + "GiftDropId": 11517, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11517, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,lBe3yxuE40eBmTrnEHBqQQ,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Purple)", + "GiftDropId": 11518, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11518, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96bc2f9f-ce3a-4c4c-b92c-cfed4ed4594f,oZ8k0Qv3SkG-DkY0_dP7UA,e4b53a9a-ac95-49ae-bf68-615bb23fa075,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beekeeper Veil (Teal)", + "GiftDropId": 11519, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11519, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96ca8d50-0721-47a3-a988-018a1c157677,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drumset Backpack", + "GiftDropId": 11520, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11520, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (White)", + "GiftDropId": 11521, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11521, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,4oywwjb3-kifr-um9x87Pw,11ZEZTFhy0ONpoXb3kiewQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Suspicious Goblin Shirt", + "GiftDropId": 11522, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11522, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,HQOKcDCvVUCItkAKo2ygGg,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (Blue)", + "GiftDropId": 11523, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11523, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,i4Zu9uZuWkWwm8IVGZwkbA,RmjxL1O9bEGOuYxY9kzHEA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "I Heart Rec Room Shirt (Orange)", + "GiftDropId": 11524, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11524, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,lYsxZfxd0EadrnjliEj4Ug,xnZj7ipl60WO8e_BXK-mlw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lunar New Year Sweater (Tiger)", + "GiftDropId": 11525, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11525, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,Rd-iQjCjUUW8_o2kIb1rFw,Ez3OIIGl0Eqys2JGnSnQHw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Pattern Sweater", + "GiftDropId": 11526, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11526, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97253092-90ba-4ff2-b137-6324ab244d11,ymRNNF0h3UOv-yH0ILxhiA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Sweater (Ethan Bortnick)*", + "GiftDropId": 11527, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11527, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Blue)", + "GiftDropId": 11528, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11528, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,bgRKH1wfqkWVHcuSnFYnlQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Green)", + "GiftDropId": 11529, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11529, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,o2WfRyjJy0CKoUg8YIxNjQ,sHyNs-dpc0-_Ah-HJVczcw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Tan)", + "GiftDropId": 11530, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11530, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,P9bBSL0YLEyjN8PxMfgbKQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (Black)", + "GiftDropId": 11531, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11531, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973d84ee-5b88-475c-b579-a76c34a7c533,yA0KhVg19kWqG1UkyxQogQ,yBNsYcZXzEiuR0u3tWnnWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Cuff (White)", + "GiftDropId": 11532, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11532, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "973dc863-b9a5-40d8-8f15-4096e75bd2cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Red)", + "GiftDropId": 11533, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11533, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97c8e2f3-e786-42e5-8852-4abec5dc645d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweet Tooth Hat (Milk Choco)", + "GiftDropId": 11534, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11534, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97c8e2f3-e786-42e5-8852-4abec5dc645d,_8OmgC7c80CsvQN41U6XyA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweet Tooth Hat (White Choco)", + "GiftDropId": 11535, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11535, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Blue)", + "GiftDropId": 11536, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11536, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,357eb160-360b-4a63-840d-65d11cc8ffc2,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Green)", + "GiftDropId": 11537, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11537, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,7afe1bb0-5ca9-4263-8f85-49d3a18353c7,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Black)", + "GiftDropId": 11538, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11538, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,a38254c0-00e3-429b-9d5d-b9e6a9812e69,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Red)", + "GiftDropId": 11539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3a9b576-5433-4305-bd96-b08820c09212,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (White)", + "GiftDropId": 11540, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11540, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,d3KmqVuMQkCYK6sVTMOTOA,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Purple)", + "GiftDropId": 11541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "97eae086-cfea-45ff-9b77-1d184256d493,RKmRHk2N_U2gd91nybo6vg,8768aa33-b014-4062-b323-b146dd7d78d2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wizard Robes (Yellow)", + "GiftDropId": 11542, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11542, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "988e4069-4341-428b-bbf5-023309891385,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bow Tie (Silver Sequins)", + "GiftDropId": 11544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "98e4c868-df73-4755-84b6-c4d12723b811,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Pop Rock Dress", + "GiftDropId": 11545, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11545, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9a366f8b-ea5b-49ae-a98c-f6b282e9bf14,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Dress (Gold Sequins)", + "GiftDropId": 11546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit", + "GiftDropId": 11547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,bgWM6wBe60q2mIHN5dPh4Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit (Green)", + "GiftDropId": 11548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,cqYUoDpfkEi8Qp2DrpQytA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit (Pink)", + "GiftDropId": 11549, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11549, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,eQy0qwre-Ui7_sCCNuWCSw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit (White)", + "GiftDropId": 11550, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11550, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab1518c-1781-44c9-884f-686bcfc9d8a6,lRmNfk8vuEe4Z5ToWvWcTg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Suit (Blue)", + "GiftDropId": 11552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ab4ea8a-1b16-4969-9b80-8e36b1f782ca,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "He-Man Bracers", + "GiftDropId": 11553, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11553, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ad40310-7cb9-473d-920c-5c18d7972030,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Cap ", + "GiftDropId": 11554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ad40310-7cb9-473d-920c-5c18d7972030,mQTpoW0-AEufdFmApqtRXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Cap (Ghost)", + "GiftDropId": 11555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b5406c4-8589-47e4-9f69-4fa4733615e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turkey Hat", + "GiftDropId": 11556, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11556, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b5406c4-8589-47e4-9f69-4fa4733615e7,yXDNXmcJvUC4eCx9oGItcA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Turkey Hat (Snowy)", + "GiftDropId": 11557, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11557, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b5bde11-7408-4798-9fcb-c7ec175444df,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hoop Earrings", + "GiftDropId": 11558, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11558, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b62cbca-694f-4a32-b910-14da66bee9bb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Settler Shirt", + "GiftDropId": 11559, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "Drops occasionally after Rec Rally games.", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11559, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b636782-47f0-4218-9a1d-be65e550dc44,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bongo Belt", + "GiftDropId": 11560, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11560, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf5d259-7774-4cbe-a90f-7f188cc0dce7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thick Goatee", + "GiftDropId": 11561, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11561, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf75b23-84e9-436b-bbb8-4180ccd86b94,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wolf Cut Hair) ", + "GiftDropId": 11562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Grey)", + "GiftDropId": 11563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,22dc463a-a89b-46ad-9a0d-557c742b4a80,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (White)", + "GiftDropId": 11564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,59866578-d4e0-417b-9483-233ab108b1ac,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Cherry)", + "GiftDropId": 11565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Black)", + "GiftDropId": 11566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ed134bee-d199-43eb-98bd-206571603f40,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Blue)", + "GiftDropId": 11567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,ITH2OpzjP022vZ5JgxV_iQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlets (Yellow)", + "GiftDropId": 11568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9bf9d502-8a3c-4b24-9565-0a2c2d9864fd,PMa9370LPEig_7pKwCceEQ,fd67ec40-f898-4df6-b846-8bf350f362b8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Gauntlet (Green)", + "GiftDropId": 11569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c20fdd5-acf1-426c-b85a-2220ceee9472,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Short Curly Twists Hair ", + "GiftDropId": 11570, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11570, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (Orange)", + "GiftDropId": 11571, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11571, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,DRS8xu3AqUOy2L0RKF3f7g,A7Y52vGIN0ijEKsWR_GQLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (Blue)", + "GiftDropId": 11572, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11572, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c28e450-8e12-455c-a4c8-c0a2160d4190,ZSOuWuKVCkqaIKc5d23G8Q,A7Y52vGIN0ijEKsWR_GQLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scuba Goggles (High Seas Contest)", + "GiftDropId": 11573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Green)", + "GiftDropId": 11574, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11574, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,0217fd2e-ff9d-49f7-9bc8-8d0d6b8bf250,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Blue)", + "GiftDropId": 11575, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11575, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,7Jx8mrxoi0aQtZEb03CdRA,-IgxYllxkEyr7V1gosWXUA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Green Lightning)", + "GiftDropId": 11576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,916384ca-e209-42a0-bd64-c64f5a40b56f,7ef7d0cf-99f1-4872-9d3d-8230cc9fa368,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Red)", + "GiftDropId": 11577, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11577, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c34c2c1-07d7-4180-94a2-be8c9caaae84,TLrw3oncCE2MeuVifXSWTg,-_ViYCHHRUip7oN_AnH0Og,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luchador Singlet (Pouncing Tiger)", + "GiftDropId": 11578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c4976c1-a0eb-4a1e-b5cd-08d44a4b3011,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Horseshoe Earring", + "GiftDropId": 11579, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11579, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Button Top (Pink)", + "GiftDropId": 11580, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11580, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,49f5864f-9d40-497c-88c8-e87f64d41d74,dafa658e-753b-46cb-bd85-85c1de5e6ea7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Button Top (Tan)", + "GiftDropId": 11581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,c5deba2a-6e35-4b13-8e94-8ba5457f39df,dafa658e-753b-46cb-bd85-85c1de5e6ea7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Button Top (Yellow)", + "GiftDropId": 11582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9c8fc7f0-8f99-4aad-a34f-8d979f6ae352,e0397982-c2c2-4733-9a40-46e18675b5af,dafa658e-753b-46cb-bd85-85c1de5e6ea7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Button Top (Orange)", + "GiftDropId": 11583, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11583, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Purple)", + "GiftDropId": 11584, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11584, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,08r7prRREUi-Hvp1Xze-wQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mini Droid Hat", + "GiftDropId": 11585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,43501b0c-eaaa-4ab3-9d03-2ca61d2e8fc9,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Black)", + "GiftDropId": 11586, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11586, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,67fc9269-8dd8-4d6f-b594-c77e716f2482,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Green)", + "GiftDropId": 11587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,7qVilU94X0Kldpvku2mcng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alo Yoga Bucket Hat", + "GiftDropId": 11588, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11588, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cdb4965-6f00-4304-afed-e301e73a2b3a,d6823e01-69f0-4f85-b94a-74894356a2cf,65ed43ff-dfc4-4cab-b0b9-77dc94165e24,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Small Brim Hat (Maroon)", + "GiftDropId": 11589, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11589, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d2ea3c2-c199-40ed-a6c3-fab5f8dca7d6,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cow Ears Headband", + "GiftDropId": 11590, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11590, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (Gold)", + "GiftDropId": 11591, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11591, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rmq1AOQvtUGOHvbPUximwg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (Black)", + "GiftDropId": 11592, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11592, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,rxMCIkLb2UO0Z3tsqtYuSw,x8nPf0xEwUiRdBQU00Bu1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Diamond Crown", + "GiftDropId": 11593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zljmtj5WqUaRvB3XQTgJXg,XFuSiGupZ02Fut1Dxum_Iw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Regal Crown (White)", + "GiftDropId": 11594, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11594, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d395a84-4342-4b1c-940c-213ec2eb56f9,Zu3hTm6JyEa0sE72KtVGXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Crown (S.)*", + "GiftDropId": 11595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d68e9f4-6ea0-4717-bb78-f2783a14a6b6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Gloves (Purple)", + "GiftDropId": 11596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d68e9f4-6ea0-4717-bb78-f2783a14a6b6,KTidYfH0ckWxJGs5qzUBTQ,VSZX99mSt0e7gPRM2_XzMw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Gloves (Blue)", + "GiftDropId": 11597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9d9fadb6-97eb-480e-a224-4e0179082071,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Meatball Buns Hair", + "GiftDropId": 11598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (White)", + "GiftDropId": 11599, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11599, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,hgLq0WyUAUSl2sboUrpTKQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (Blue)", + "GiftDropId": 11600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,JzLPlVNG20G9mxG_4PF8Fg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (Navy)", + "GiftDropId": 11601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,M5uFQQpoQE-5CKMJnDv_LA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (Green)", + "GiftDropId": 11602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9db35412-7a08-49dd-b80d-59c34a4616ea,VuMDnpnK50mzgUMwJ4F6Jw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brimless Cap (Orange)", + "GiftDropId": 11604, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11604, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Yellow)", + "GiftDropId": 11605, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11605, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,gDP3y0J2EUayzVvBT9-92w,dMDMDExSmEKOF_kQIHaowg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Getaway Contest)", + "GiftDropId": 11606, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11606, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,GH9q8_0O9EqjGdz7lGWD2g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Blue)", + "GiftDropId": 11607, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11607, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,kBmmFoqo-0eLSSAhen-VLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Raincoat", + "GiftDropId": 11608, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11608, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,m8x6fiLEw0m4pJywntEpzg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Raincoat", + "GiftDropId": 11609, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11609, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,M-N9vQt0CEefqgmeLp3l4g,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Green)", + "GiftDropId": 11610, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11610, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,q_HcScqHgEG-x70g1wtfLA,T7zwcIIc8Ee3ud8a2JCuwQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raincoat (Red)", + "GiftDropId": 11611, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11611, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9e6397dd-b7b0-4d32-8c86-1910106a8478,tVbu4hUFHkmEKEz38GG2Nw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Raincoat", + "GiftDropId": 11612, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11612, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Brown)", + "GiftDropId": 11613, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11613, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,17e44296-1cd9-4f8e-9aa7-3837dc69279a,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Cherry)", + "GiftDropId": 11614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c0c33a35-494c-4a1a-aa53-d27d9b9ef5a4,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Yellow)", + "GiftDropId": 11615, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11615, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,c4ebfd1a-fcda-4b98-a151-a941b1801867,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Black, Gold)", + "GiftDropId": 11616, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11616, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,rfIzQjxeRU60VdRQXG9Ccw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Pink)", + "GiftDropId": 11617, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11617, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,tOlpTL8F1Ui_akCjHq5vRg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Green)", + "GiftDropId": 11618, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11618, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wat8f6fs80KptZbW39e8tA,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (White)", + "GiftDropId": 11619, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11619, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb7f505-5afd-4b28-9886-7996d38c59c6,wkqKPZmnoU-8TXSWzi2-Ow,8eef8837-9141-4088-835a-b2f47f4126f8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Gloves (Black, Silver)", + "GiftDropId": 11620, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11620, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9eb95934-90f3-4f48-a6b4-d87d75d9bdc4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Eggshell Chick Gloves", + "GiftDropId": 11621, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11621, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9f2cf07e-f98f-48bc-9c74-784ba4b94527,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chess Knight Armor", + "GiftDropId": 11622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fb62d0c-67ff-4675-85d3-a2869c2330aa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Helmet (Blue)", + "GiftDropId": 11623, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11623, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fb62d0c-67ff-4675-85d3-a2869c2330aa,ijCbiOeGD0C4uznegq9CXw,VzyoPsQyCUaW6RSusgVUGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Racing Helmet (Red)", + "GiftDropId": 11624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fd1be12-1577-4800-b79f-6da29f299826,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reclympics Medal (Gold) ", + "GiftDropId": 11625, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11625, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fd1be12-1577-4800-b79f-6da29f299826,mVj9t_XVCEqdx89v2zdjHQ,kJ_pNxSWKE6HZX4Sc7Dv0g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reclympics Medal (Silver)", + "GiftDropId": 11626, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11626, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9fd1be12-1577-4800-b79f-6da29f299826,zNLzEvpTpkOIi0J3fIvh1A,OqC4ny2rk0yJJOHemspV7A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reclympics Medal (Bronze)", + "GiftDropId": 11627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9ffa6e06-5200-4e53-ac13-f8491aecc864,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Armor ", + "GiftDropId": 11628, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11628, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Shirt", + "GiftDropId": 11629, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11629, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,dZyVey0_oU-3u6FLbIdGLA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Collar", + "GiftDropId": 11630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9o0gWLJjREG552gxRreT8A,rP0LMoFjqUCU1LWA6_wOnw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Figure Skater Shirt (Burgundy)", + "GiftDropId": 11631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Shirt", + "GiftDropId": 11632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11632, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,dE_ZWKPV90utoyWtRalh8w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Bat Costume Shirt", + "GiftDropId": 11633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11633, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,GPX92X5n3UWMbh3C13oB5Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Shirt (Black)", + "GiftDropId": 11634, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11634, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0a38623-2003-469a-b06f-ce451413727b,jIAMeDkA80GVHYTi0d9LkQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Bat Costume", + "GiftDropId": 11635, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11635, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (White)", + "GiftDropId": 11636, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11636, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,0zldWzi4H0OQwsWPt6gl-w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (Red)", + "GiftDropId": 11637, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11637, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,a0A1q_e1q06qquiu2KaZhA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (Blue)", + "GiftDropId": 11638, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11638, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,M_BhFve7SkC7IJoymLiCLg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (Orange)", + "GiftDropId": 11639, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11639, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a0e6fe4d-991d-4bd1-a1dc-ac4c7375fa4d,rwESUxIrQEKA2hdQpcaPaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Wrap (Green)", + "GiftDropId": 11641, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11641, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a12f724f-4a73-4ab8-aad4-6bfc662b4dd6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Undercut Long Hair", + "GiftDropId": 11642, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11642, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Pink)", + "GiftDropId": 11643, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11643, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,bmi_S166JEGWhf_7woVL0A,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Tan)", + "GiftDropId": 11644, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11644, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,dSEiNUAZnUmErO5Vfv51zg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Teal)", + "GiftDropId": 11645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,jTG-jnKn0k-Etg_-4Gb9gw,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (White)", + "GiftDropId": 11646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a16d59da-caa5-4388-af67-315bfcb16f64,w9I-I0GWRE-3RgOUMMlHjg,WWmx0nBo3k2nXUPPRJVJLQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cloche (Black)", + "GiftDropId": 11647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grinning Cat Shirt ", + "GiftDropId": 11649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,4YH_0kN1ZUSVEQmCBiTt7Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Penguin Onesie", + "GiftDropId": 11650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,McX_jAOowUmjXNPEHbdS7Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grinning Cat Shirt (Pink)", + "GiftDropId": 11651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clockwork Shoulder Bag", + "GiftDropId": 11656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,0EjPIiuYpEGIWup3pKeC8g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clockwork Shoulder Bag (Green)", + "GiftDropId": 11657, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11657, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,dkJNh15DnEuO1BatzpI_uw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clockwork Shoulder Bag (Rose/Gold)", + "GiftDropId": 11658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,GAWBaCDBzUqdyTGA-HPczQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brown Clockwork Shoulder Bag", + "GiftDropId": 11659, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11659, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a35b6774-9245-426d-ac9e-70154679faec,XMAOwHGXVECoeKoWb_-luw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clockwork Shoulder Bag (Silver)", + "GiftDropId": 11660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Cape", + "GiftDropId": 11661, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11661, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a37c3161-1476-44b0-a9d1-d6eb854db2d9,EmlwkB77pUiiDEmc2pMVaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elven Cape (Jade)", + "GiftDropId": 11662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Red)", + "GiftDropId": 11663, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11663, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,_9QlnTPXuEO5OQ3H0CwFkA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Green)", + "GiftDropId": 11664, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11664, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,5_-QLURc_0W8qeeN3Q3iGQ,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Creators Contest 2)", + "GiftDropId": 11665, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11665, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,cKLBS6pbf0SFuavWyeZ7GA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Black)", + "GiftDropId": 11666, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11666, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,DZyW-gOG9U-QLGOMFBhOoA,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Pink)", + "GiftDropId": 11667, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11667, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,MbusQ9bte0i9zirlxtNkSQ,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Blue)", + "GiftDropId": 11668, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11668, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,mqdncbYcuUSGFvFqEU0z4A,HTU3Wp_ri0GNYGFSezFHSg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Purple)", + "GiftDropId": 11669, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11669, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a44766dc-19ad-4476-849c-5113a5faabd0,pEiU6yZm2U-X9ip_CM1SAw,PIV6RtD7Pk-UTcUp2wF1ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Cape (Gold)", + "GiftDropId": 11670, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "For earning $50,000", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11670, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat", + "GiftDropId": 11671, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11671, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,JilOXG1I_Ei65mw6TzFWgg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat (Steampunk)", + "GiftDropId": 11672, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11672, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,jXRXO3CVE0-H_iaxbMhFhA,VZyHWGKNJEGSxDT2GO3ebA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat (White)", + "GiftDropId": 11673, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11673, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a471995f-1fe7-4b77-a05f-8eea4e0970ab,YSnoHFmJDUa_XCK6JMMh2g,VZyHWGKNJEGSxDT2GO3ebA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Hat (Grey)", + "GiftDropId": 11674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a4c26527-8f75-44da-b150-7aaf8ef739c1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Green)", + "GiftDropId": 11675, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11675, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a5b747b8-c1a5-4bce-999f-e13dbe77bde6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disco Ball Hat", + "GiftDropId": 11676, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11676, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a600fa80-ed4e-4acb-8d6d-72fa87d2bef3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nutcracker Crown", + "GiftDropId": 11677, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11677, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (Red)", + "GiftDropId": 11678, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11678, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,596097a8-d545-4256-959d-1d3cd96fc64c,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (Yellow)", + "GiftDropId": 11679, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11679, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a61e86cd-f7e7-4ac7-a6e8-df269bc5cb01,ce465d53-3807-423f-baa0-bdba2a75ceb3,65b89eae-347e-4eff-9ff3-7f25cace0125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Hair Clip (White)", + "GiftDropId": 11680, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11680, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Black)", + "GiftDropId": 11681, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11681, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,4828b50c-95b6-466a-bb25-514891d78202,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Grey)", + "GiftDropId": 11682, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11682, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,55901f12-d5b5-4fa8-b4c8-e479689ee39d,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Blue)", + "GiftDropId": 11683, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11683, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a628d62c-fa30-4405-bcbc-3e646e3a3434,d6823e01-69f0-4f85-b94a-74894356a2cf,be6b3fa1-3388-48ac-8957-d7b8c85ff968,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Equestrian Helmet (Maroon)", + "GiftDropId": 11684, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11684, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6cbfe76-534a-4655-a8a8-3fed13d001c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bald Top Hair", + "GiftDropId": 11685, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11685, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Red)", + "GiftDropId": 11686, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11686, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,54d3c589-30ba-44c1-a77c-8f9e16eb0b20,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Yellow)", + "GiftDropId": 11687, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11687, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,82de1ca3-67d6-454d-84fb-0eeece71fcbc,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Orange)", + "GiftDropId": 11688, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11688, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a6f1825e-1647-4d06-85d7-ac2d139612c0,fe5288bc-0e02-4ea3-b17d-dee0e576979d,b0298c45-0dd1-453e-bad4-41e4656bb38e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Drum Major Shirt (Green)", + "GiftDropId": 11689, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11689, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a79e855a-c4fc-4ffa-be2f-9f4fef0ab1d5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Outlaw Hat", + "GiftDropId": 11690, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11690, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a928c6dc-442f-4cbb-b705-cc5a3969b34a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teela Hair", + "GiftDropId": 11691, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11691, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Wings (First Release)", + "GiftDropId": 11692, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11692, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,cS-oBNlLE061SIB40QjiDg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Wings (Forbidden One)", + "GiftDropId": 11693, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11693, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,oSoW8v6emEW4g1IduUNzOA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Wings (Invasion 2)", + "GiftDropId": 11694, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11694, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a936c982-28db-4e7e-bc79-ec5eca975beb,rFcMAp5UvkuGalprkr_ARQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Wings (Invasion)", + "GiftDropId": 11695, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11695, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Shirt (Tan)", + "GiftDropId": 11696, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11696, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,0d2830e7-8eb0-4fa3-99bc-7c80f01dd991,5814a331-6155-4df4-b921-3ffc6059e44c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Shirt (Blue)", + "GiftDropId": 11697, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11697, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,5owofMF_Y02WX2vwVL2aew", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Boyscout Shirt (Mutant)", + "GiftDropId": 11698, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11698, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a96e168c-0c4d-4c70-9f8a-c8f07164ce99,OX1ituawfUqYC-caC1WcCg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Boyscout Shirt", + "GiftDropId": 11699, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11699, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Field Hockey Uniform (Red)", + "GiftDropId": 11700, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11700, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a986ff33-9e16-4219-8ebb-2e7b4c772ca7,7b0d6661-e856-4ec1-ab90-d89c28a70826,1fede91a-434e-49a5-882e-e6db107112a8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Field Hockey Uniform (Blue)", + "GiftDropId": 11701, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11701, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a994fc19-974e-444e-ae9e-c2f6c32432bb,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Tuxedo Dress", + "GiftDropId": 11702, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11702, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "aaed6385-0ba5-45f3-b0d2-6b0a9ab79628,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Disguise Glasses", + "GiftDropId": 11703, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11703, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Black)", + "GiftDropId": 11704, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11704, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,fvoaMN4M10WS6jiA6XlOJQ,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Blue)", + "GiftDropId": 11705, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11705, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,jXBi28cRV0CEQgKIrpD0_A,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Red)", + "GiftDropId": 11706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,PwsLxCnzOkSW-RGz3tNb1w,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Tan)", + "GiftDropId": 11707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab15ef15-a97c-4ab1-896b-bd4d7e1cd9f5,uiBklotTUEqRI2F67vyJyA,AZnPWCN41kmNwFwDqWGFWQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Peacoat (Purple)", + "GiftDropId": 11708, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11708, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab1d252a-c15c-4a97-8e48-da0813d33b00,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Lanyard (Purple)", + "GiftDropId": 11709, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11709, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab446412-84cd-490d-84e0-2e666633b72f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dirt Bike Helmet", + "GiftDropId": 11711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AbYdU7O_9U-Lwg7zFVZzXQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reindeer Antlers", + "GiftDropId": 11713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac957e1e-676b-45c9-a39d-b238d2329a03,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Horseshoe Bracelet", + "GiftDropId": 11714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Brown)", + "GiftDropId": 11715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,_6LmNp0uX0Ky4jp2j62U2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Green)", + "GiftDropId": 11716, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11716, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,192ba73d-6990-42da-8fe0-914c2a7181eb,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Black, Gold)", + "GiftDropId": 11717, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11717, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Yellow)", + "GiftDropId": 11718, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11718, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,624c85e5-095a-48b6-85fb-c9bbade19a8d,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Cherry)", + "GiftDropId": 11719, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11719, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,AEqCasEqOUCgetoTwuMTug", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Hat (Invasion)", + "GiftDropId": 11720, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11720, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,cNarx7yecE2gk-7mYaoHwA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Pink)", + "GiftDropId": 11721, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11721, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,K5vPqD3BrEuODRDzFdC6Hw,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Black, Silver)", + "GiftDropId": 11722, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11722, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,teVKVbVEsEyqOSuRdqHQzA,54778d93-2cff-48db-b25b-65c08b0e5be8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (White)", + "GiftDropId": 11723, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11723, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad0bdec5-f767-42e7-99e0-221473464a85,zoUmQIcOrU6jgBu_0urrGA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Hat (Invasion 2)", + "GiftDropId": 11724, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11724, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,e8aNxGFlBUWy59Bfrvvv7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brown Overalls Skirt", + "GiftDropId": 11727, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11727, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,HDpCyFn40kOxJ0P_xJr4-A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Overalls Skirt", + "GiftDropId": 11728, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11728, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,OZ1v-s_XFUyfMA5mfd47FA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Overalls Skirt", + "GiftDropId": 11729, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11729, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad3961ef-4b91-4ed8-971d-4d23c32548a1,sCj73U9p5E6DQreOsbutqw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Overalls Skirt", + "GiftDropId": 11730, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11730, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad55bb62-671a-4a29-aec8-36a1e3104f05,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pioneer Cuffs", + "GiftDropId": 11731, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11731, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad6e7c98-8056-4e12-92ad-bfa19a00f4af,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gardener Shoulder Basket", + "GiftDropId": 11732, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11732, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunflower Sundress", + "GiftDropId": 11733, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11733, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,6PyJEQxyd0K9TPRnvt_86Q,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Estate)", + "GiftDropId": 11734, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11734, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,as9fjqDWiUi1w7yYavKZXA,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Sunset)", + "GiftDropId": 11735, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11735, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,OJYpuFw810Sg4bTw0XQf-g,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Lodge)", + "GiftDropId": 11736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,QlZt51mdn0WuiqKoJaIRyA,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Vineyard)", + "GiftDropId": 11737, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11737, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rGMFdPKmK02_OvIIFYlAxA,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Veranda)", + "GiftDropId": 11738, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11738, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,rsh2uKli90OoEnJZRFc2Ww", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boho Sundress", + "GiftDropId": 11739, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11739, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,-sqfCQpzpUyjEShEXH9JYQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Sunrise)", + "GiftDropId": 11740, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11740, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,sz-J7RjesE-ke3bKwumzZQ,mkNzDvyGfEijbdzAxKYrPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Meadow)", + "GiftDropId": 11741, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11741, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,t4gMAKp4L0WBaTGf_rtqFw,NqU5Mw75BE6kPaD8t11Qow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Yacht)", + "GiftDropId": 11742, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11742, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adf2aa89-61c4-4b7a-9307-e39e72db23d3,wxvSDMommkenIl5hTY2fdQ,thwvF0DFRk-mV99ruqYFoQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sundress (Seafoam)", + "GiftDropId": 11743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Donut Dreams)", + "GiftDropId": 11744, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11744, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,56qchovVVEaVwL9S52kneA,BAjMoTHbD0mSCjoG9jmzjA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Sour Popsicle)", + "GiftDropId": 11745, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11745, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,9P8ARRUYdk6hCoGMKhix4w,o__JORNtYEiJEyyoBIimPA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Pink Flamingo)", + "GiftDropId": 11746, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11746, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,nu_UGtkJOUK-5MWaW83MUg,pgBFpOtl00K2zsTJcfrefQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Watermelon Rain)", + "GiftDropId": 11747, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11747, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,Pg2cVQonrkmbXZdsNcn-KA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wacky Shorts (SummerCamp Contest)", + "GiftDropId": 11748, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11748, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,sJioq5ARDUyMHFji_6OxFw,bjXO36Nu6EWD2dU1UC4Uwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Pina Colada)", + "GiftDropId": 11749, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11749, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae180fb1-3e74-4232-9a9d-388fd488eba1,zJMD-_HR80WCAUqYGe7_NA,rAzhaLh1nEWMd9v1D-HWcQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Silly Shorts (Lonely Island)", + "GiftDropId": 11750, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11750, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ae7c9d1f-d371-4dfe-a6df-d74662606aae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stranded Astronaut Suit", + "GiftDropId": 11751, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11751, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "aeda4e5d-9cfc-44ec-b325-ab8b2d906a8f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bullwhip Belt", + "GiftDropId": 11752, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11752, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Hat (White)", + "GiftDropId": 11753, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11753, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,PR5dh2jf2kqGLO0lXgA69A,-lYK7LhYyEy6wqL1tIE9cg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Hat (Black)", + "GiftDropId": 11754, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11754, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Red)", + "GiftDropId": 11755, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11755, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,3bqY_T4_HEy406HcXrfLuA,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Blue)", + "GiftDropId": 11756, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11756, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,9ir4Es5d0Ue-8bn2EUcCZQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (White)", + "GiftDropId": 11757, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11757, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,aaaG7Fg8fky2dkrwVsA30g,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Yellow)", + "GiftDropId": 11758, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11758, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,I4lNZy7lR0uyUN5Vk3fabA,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Pink)", + "GiftDropId": 11759, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11759, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,SMeMLRUF-UWrOcXYJzgScw,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Black)", + "GiftDropId": 11760, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11760, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,WkI_v-Sua0WlhmMf8R4aGA,8ubY2vSZQEOmhqIg70Gqyw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Green)", + "GiftDropId": 11761, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11761, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af3ce4a2-e4a4-492a-a5b4-8dcb91e60e73,XaNgcjkwP0uxS5_S1JaQrA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Gloves (Space)", + "GiftDropId": 11762, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11762, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Backpack (Blue)", + "GiftDropId": 11763, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11763, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,5GEhQr7Iy0-kB0yCA3uJ6g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Backpack (Yellow)", + "GiftDropId": 11764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,AtF5be-huUeADedbRurRcQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Backpack (Red)", + "GiftDropId": 11765, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11765, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,cxWuO4qBtUOKYmCXI0D5Jg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Tiny Backpack", + "GiftDropId": 11766, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11766, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,FIZdMEUgykOHb7fVlOfa5g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Tiny Backpack", + "GiftDropId": 11767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,T9XdU5xAFEqX3QV__SjXYA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tiny Backpack (Pink)", + "GiftDropId": 11768, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11768, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af4bdd0b-3c30-41d6-9bf2-167a5a47bb77,wrobkXV-10CD1JJtgyy6Fw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Tiny Backpack", + "GiftDropId": 11769, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11769, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "affdc9ad-8312-4421-8f56-e35dfdaeb63a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lifeguard Whistle", + "GiftDropId": 11770, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11770, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Teal)", + "GiftDropId": 11771, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11771, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,C3ll7uPfUkeZ1QLX80_BpQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Yellow)", + "GiftDropId": 11772, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11772, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,EbVDqEJQOk6j0UvX3t-8rQ,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Blue)", + "GiftDropId": 11773, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11773, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,grutFwJD_0Cb3t6fddNg6w,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Red)", + "GiftDropId": 11774, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11774, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,JS7aa4QSUUOpUYPqRZEb5g,oSaMpc5rTE-U6yhjtPWQgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Orange)", + "GiftDropId": 11775, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11775, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "AIpF1QUeMUWytpHYBDBAkg,rwojzpr0E0ylG6_Vv_MVaQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Windbreaker (Purple)", + "GiftDropId": 11776, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "Breakdance inspired colorway", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11776, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "akAhnN0cFkecj8q3spixkw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Gold)", + "GiftDropId": 11777, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11777, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ASHnWS0h9kOJhbOUwxWKFQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Gown (Bachelor)", + "GiftDropId": 11778, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11778, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ASHnWS0h9kOJhbOUwxWKFQ,U2ZbHn8WJEySUXVpzAY6ig,6nmHu9zj8k-tEz0tBHblnQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Gown (Level 1)", + "GiftDropId": 11779, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11779, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "awOFE0_GSECr8GBNBo6a_w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Giraffe)", + "GiftDropId": 11780, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11780, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Navy)", + "GiftDropId": 11781, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11781, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,05K7dmjigkCByO2ufw9jtw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Green)", + "GiftDropId": 11782, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11782, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,1773d5d8-4714-4721-b30c-97e25d6f2a5a,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Red)", + "GiftDropId": 11783, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11783, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Purple)", + "GiftDropId": 11784, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11784, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,faedf215-289b-40f7-90cc-f5b98517d133,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Blue)", + "GiftDropId": 11785, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11785, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,PLRhiOhhb0KhatFH7f3pwA,F9vYkdcuGUOSGEg0wpQt2Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Dress (Orange)", + "GiftDropId": 11786, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11786, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,qoVZuGa5NkOmyfikHjDhXw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (Black)", + "GiftDropId": 11787, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11787, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,RwgnKTfMEkWrAp_OMGy__Q,F9vYkdcuGUOSGEg0wpQt2Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Dress (Blue)", + "GiftDropId": 11788, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11788, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yDZFr27Zq0-JH-EsEsxG2g,F9vYkdcuGUOSGEg0wpQt2Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Spring Dress (Green)", + "GiftDropId": 11789, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11789, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b02053b3-013f-42b0-8881-85f5be2b8cda,yOw1WqEN0EWqR9t53EsQpw,93987d32-7a6e-45df-af56-76f912969ce7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Dress (White)", + "GiftDropId": 11790, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11790, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b07a3964-7a53-4467-aa85-ec19cc27a57b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alien Head Earrings", + "GiftDropId": 11791, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11791, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Overalls (Blue)", + "GiftDropId": 11792, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11792, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,EiGgN7uVukqoRE7UJcMLTw,H3OQDBef1UaacSD52p8Hdw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Overalls (Green)", + "GiftDropId": 11793, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11793, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,iokdlBfjuEuAwqIMOQwxdA,H3OQDBef1UaacSD52p8Hdw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Overalls (Red)", + "GiftDropId": 11794, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11794, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b080e2f4-c699-4cca-bb9e-7cfc4bafcbfc,nKauYAyWhkm2AMHFyC-fLg,H3OQDBef1UaacSD52p8Hdw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mechanic Overalls (Orange)", + "GiftDropId": 11795, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11795, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0a2e988-9942-4c52-a714-f1bc12fa6290,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Shades (Tokyo Machine)*", + "GiftDropId": 11796, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11796, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest", + "GiftDropId": 11797, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11797, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,1-_ssucgeEalgr6EDL3S9g,Ru4HN3stVUutQ9rUh7ro1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest (White)", + "GiftDropId": 11798, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11798, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,2eTBbHTkf0uxy9JqA507Hw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest (Steampunk)", + "GiftDropId": 11799, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11799, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b0c8d3fe-d3de-4883-b63f-8cc8890537cb,cbn6vE0gDUOuklVhJv1vNA,Ru4HN3stVUutQ9rUh7ro1g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gunslinger Vest (Grey)", + "GiftDropId": 11800, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11800, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b148cb1e-df81-442f-aea6-ab1727aad00e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chunky Afro Hair", + "GiftDropId": 11801, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11801, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b16768f0-ce8b-4844-96f1-e38d63f9c1fc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bucket Hat", + "GiftDropId": 11802, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11802, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b17591ba-3c2d-4309-ab01-b6743424e07e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Hat", + "GiftDropId": 11803, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11803, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b17591ba-3c2d-4309-ab01-b6743424e07e,l9cF1s3B8EC6BGlQ4Tx1cg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Hat (Shamrock)", + "GiftDropId": 11804, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11804, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Brown)", + "GiftDropId": 11805, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11805, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,6e0f3af8-297f-4ea7-8f9e-4a1bc57d3e35,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Blue)", + "GiftDropId": 11806, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11806, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,97938f4c-52b8-4c85-8575-856654666316,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Gray)", + "GiftDropId": 11807, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11807, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,cac27853-e2df-4d77-b3fd-af3bc0813f01,cdbe2cc8-4fd7-451f-9b66-0df0e0e7a85e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Tan)", + "GiftDropId": 11808, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11808, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1bfe0b4-1ff6-420f-acfc-2331d34246dc,ugpS7o-ZxkCv7HAvhewZgw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Angler Shirt (Red)", + "GiftDropId": 11809, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11809, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Triton)", + "GiftDropId": 11810, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11810, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,CahBzgN3D0y46AQsvGC14A,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Leviathan)", + "GiftDropId": 11811, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11811, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1c3ccc8-91d7-434e-b9cc-bd632fffc01b,Su7kiW24d0KapNns96JoFQ,0p5N9U5qokKdQhW07yYLGQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Gloves (Kraken)", + "GiftDropId": 11812, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11812, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1ca1dc4-6867-48b6-a332-4efff06a5db1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cleric Gloves", + "GiftDropId": 11813, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11813, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1ece775-b1c4-4c5b-b2bd-cd0542794dd1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Shirt", + "GiftDropId": 11814, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11814, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b1ece775-b1c4-4c5b-b2bd-cd0542794dd1,g_jYTusUbU6W_6jHif-CKw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Shirt (Mardi Gras)", + "GiftDropId": 11815, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11815, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b35aae1f-f5fb-4417-bb6c-4ddce4ec499d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bindings of Elseware*", + "GiftDropId": 11816, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11816, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b35aae1f-f5fb-4417-bb6c-4ddce4ec499d,cfAfhzaNvkG7wGx0gkaRUg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bindings of Elseware (Shadowy Illusion)*", + "GiftDropId": 11817, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11817, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b37582a1-7904-4288-a47a-7a63a3cb28ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Soldier Helmet (Green)", + "GiftDropId": 11818, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Unlocked during Xbox launch", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11818, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3949221-9416-4afe-8777-440f01ec4c1c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2020 Shirt", + "GiftDropId": 11819, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11819, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3949221-9416-4afe-8777-440f01ec4c1c,oMz5rMzCxkiw9690ZkvlGw,gW2zFv0sFEmiodfw8p9P-Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Early Access Tee", + "GiftDropId": 11820, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11820, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3949221-9416-4afe-8777-440f01ec4c1c,zlBPAWMbOE2RuKoIy1Ps8Q,UwQiLub0-kqf4dNvQc-R0A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Shirt (TFO)", + "GiftDropId": 11821, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11821, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Black) ", + "GiftDropId": 11822, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11822, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,Aex0Zh1RQ0u9oTDFF1cFIg,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Yellow)", + "GiftDropId": 11823, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11823, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,El0s9F6cfkywcKOkqwbJtQ,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Grey)", + "GiftDropId": 11824, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11824, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,J9cK9BKtHUinG-DwAoPi3g,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Dreen)", + "GiftDropId": 11825, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11825, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,logtSrZSTUqwEmBw9i0qjA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec-On T-Shirt", + "GiftDropId": 11826, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11826, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,N0fBxjrCekO-HUqmc3MufQ,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Blue)", + "GiftDropId": 11827, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11827, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,oNoEl-nDqk-HLsfz1538oA,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (White)", + "GiftDropId": 11828, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11828, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,P49CJ5imfEuxH1rryrfFRA,nbgwLqKBnUyvieWX0i47dg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scrubs (Blue)", + "GiftDropId": 11829, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11829, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,PkMkvHzXek-yKyqJESZ3tw,nbgwLqKBnUyvieWX0i47dg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scrubs (Green)", + "GiftDropId": 11830, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11830, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,pQ_3mZI7yEaxMw9n_Fr4Sg,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Pink)", + "GiftDropId": 11831, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11831, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,Ris_kNVcgU-EK4SoMckC2Q,74J7skzs9EaIq09bZArjiQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Reclympics Shirt 2021", + "GiftDropId": 11832, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11832, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,TpFWTdEW2kqtpvc0sPv-dw,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Purple)", + "GiftDropId": 11833, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11833, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,-VF3K4miGE28LxMgqVehRQ,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Orange)", + "GiftDropId": 11834, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11834, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b3b59410-d3df-464b-a75b-500a9e5ea154,vxZVeH2b_E6XlqyqCW0hBA,_o3mI1mjE02vekPVyJg8Aw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pocket Tee (Red)", + "GiftDropId": 11835, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11835, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4c93141-f387-4e42-9b04-12b7a97c9416,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Star Glasses (Popstar Blue)", + "GiftDropId": 11836, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11836, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cozy Winter Coat (Green)", + "GiftDropId": 11837, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11837, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,B3t4hjeUeEyT17nfbZgxAQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Cozy Winter Coat", + "GiftDropId": 11838, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11838, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,Grr0Jm6r9kuiZKvnLPz9tQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Cozy Winter Coat", + "GiftDropId": 11839, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11839, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,IEnB86oIL0KDa-zzcxhjwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Cozy Winter Coat", + "GiftDropId": 11840, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11840, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,nloukujf9kSwK1T2HiwJwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cozy Winter Coat (Pastel Blue)", + "GiftDropId": 11841, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11841, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,xLcqKXKH-0Gw1lrSSQe-Ag", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cozy Winter Coat (Pink)", + "GiftDropId": 11842, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11842, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e24678-61d8-40fa-8c27-2342aaf70ac9,ZzJxs2oz6UuXCX5rGvLHFQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Cozy Winter Coat", + "GiftDropId": 11843, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11843, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown", + "GiftDropId": 11844, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11844, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,iGhiA5wU8kG3NH6P9NZvGg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown (Pink)", + "GiftDropId": 11845, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11845, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,-K940hWJXkee1HDrlurepg,ItJCR1utoU6i-syjJpxQqw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown (Green)", + "GiftDropId": 11846, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11846, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b4e48239-a3b0-49ed-b78a-86f4e3aaca1e,SdSjmCkq-ECoboR2PwxJfQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Crown (Black)", + "GiftDropId": 11847, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11847, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Cap (Red)", + "GiftDropId": 11848, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11848, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,7amHTgEv-UOJSGl0ofo4mw,lb5tuJOqnUKp9prjjlgHmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Cap (Green)", + "GiftDropId": 11849, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11849, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b537c30c-faef-4649-9a1f-be3985936f93,cKHAetNcgUOxFfDkAPPF9w,lb5tuJOqnUKp9prjjlgHmA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Cap (Blue)", + "GiftDropId": 11850, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11850, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Shirt (Red)", + "GiftDropId": 11851, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11851, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6610b7b-3978-46fd-9af6-41b4568c9b4d,OnQeVxdstkS2zGxLBAuM3Q,i8bvbGAKREmAEbjKO-geOQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soccer Shirt (Blue)", + "GiftDropId": 11853, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11853, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b66cb611-c079-42f0-ae04-6f51384dbe90,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Penguin Hat", + "GiftDropId": 11855, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11855, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6cee099-5840-401a-9d74-0b80ff71ee69,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Feather Boa (Mardi Gras)", + "GiftDropId": 11856, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11856, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6cee099-5840-401a-9d74-0b80ff71ee69,an_Z5HMFjkaHyHoZZV4AFA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Feather Boa (Rainbow)", + "GiftDropId": 11857, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11857, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6d10952-d492-45e5-b54c-de3ab138be0b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hot Dog Hat (Mustard)", + "GiftDropId": 11858, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11858, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6d10952-d492-45e5-b54c-de3ab138be0b,2KCpbel8JkaeAGQRgvpt2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hot Dog Hat (Ketchup)", + "GiftDropId": 11859, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11859, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Black)", + "GiftDropId": 11860, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11860, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,3a1oW3_MY0e4lDN2V1X4ig,za8Mz14Ww0KtC6wavUPXdg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Nonbinary Pride)", + "GiftDropId": 11861, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11861, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,9jB8U3yxjE6hanEZgMdvtA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - AAPI (AAPI Heritage Month)", + "GiftDropId": 11862, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11862, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,D_Xmo0rOzkS-kgq1CYXt3g,tnCJp2eDI0SwjVfJMhk3LQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Trans Pride)", + "GiftDropId": 11863, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11863, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,DIeasJUIj0KNetAzPzuIrg,o3Q2gADhh06dgaipkkdMsA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Bi Pride)", + "GiftDropId": 11864, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11864, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,EkA09Hj2m0u3c5STynn3Bw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - ANAM (Autism & Neurodiversity Awareness Month)", + "GiftDropId": 11865, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11865, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,G6Udm6kMdE28vmRY5KPanA,Fw79pqDPP0C8H07AnTY-Vg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Lesbian Pride)", + "GiftDropId": 11866, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11866, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,JTgXKeT7w0K2Mw4Jk2HCqg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Grey)", + "GiftDropId": 11868, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11868, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LovycnPHoUiP_N9w7BzsnA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Juneteenth)", + "GiftDropId": 11870, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11870, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,LuYelZY8NkqmOp1pnxPXBg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Yellow)", + "GiftDropId": 11871, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11871, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,MfF0wizDjUa7RUE-AVJpvA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Intersex Pride)", + "GiftDropId": 11872, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11872, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,mvMeyStxGUGlNLSYNeSubQ,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Purple)", + "GiftDropId": 11873, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11873, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,-Nf7WM2TeEKujB637h3tRA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (White - Starter Pack)", + "GiftDropId": 11874, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11874, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,PIwziHk1BUuYkAf6kuK6wA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - BHM (Black History Month)\t", + "GiftDropId": 11875, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11875, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,PRLBrEEZhUumm3VnYVJP6Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Aromantic Pride)\t", + "GiftDropId": 11876, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11876, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,rNhOQoP3XkOBHV28ze2NpA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Orange)", + "GiftDropId": 11877, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11877, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,sf962XJ0tkis0svkMkZCXQ,4bI7QRvdnEansPkwx8Di9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Pan Pride)", + "GiftDropId": 11878, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11878, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,sxUE0iOSZEmezm54T7xI3Q,tlpa7195x0CkmSjpR1RArQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Rainbow Pride)", + "GiftDropId": 11879, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11879, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,TEgugZRs80iJbhL87RdYwg,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Pink)", + "GiftDropId": 11880, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11880, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,tm7Cnd3LzkqWHA1JMrgoeA,nbLr3c3lOkiWhNg9IYbt6Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Ace Pride)", + "GiftDropId": 11881, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11881, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,u_Gzj9Nro0WS48xKnH9few,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Blue)", + "GiftDropId": 11882, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11882, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,Xt3Ndm8mC0qsLClPIbgwUw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie - Pride (Genderfluid Pride)", + "GiftDropId": 11883, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11883, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,yM5xRrd9OkmDGyQddwOP6g,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Red)", + "GiftDropId": 11884, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11884, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,ytmSzjhCr0Sm58MSNbwJUA,oHKhT-GTx0iFWrrlz9s6Tw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Green)", + "GiftDropId": 11885, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11885, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,Z10TTlOeW0mumezbqXKGzA,Ht0WRvpguUaLZ1tigCzCMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Hoodie (Gold)", + "GiftDropId": 11886, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "For earning $100", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11886, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b73ae23b-c911-4b09-a803-40999bdef6b8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cleric Headpiece", + "GiftDropId": 11887, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11887, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b74ef8c3-405a-4d68-a2bf-01579a9cc397,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mecha Helm (First Release)", + "GiftDropId": 11888, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11888, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b772a5a9-dd79-43e4-8d95-f965d81bed8d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Kevin the Goblin Hat", + "GiftDropId": 11889, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11889, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b795c631-f075-4d32-ac87-c732b36cb932,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Light-Up Necklace", + "GiftDropId": 11890, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11890, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b79a6f2c-d960-4d8a-b05f-24e818ec5f60,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NBA Headband", + "GiftDropId": 11891, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11891, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Hair Hat (Blue)", + "GiftDropId": 11892, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11892, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,0WW04NMMfU2LLahCq0jQ6Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Hair Hat (Black)", + "GiftDropId": 11893, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11893, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,4kYWnAwZo0SDZFmiU8jJwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Hair Hat (Red)", + "GiftDropId": 11894, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11894, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b7ba6920-e000-4081-a025-7da67c803008,YfRfaC49J0yW0wnSJf5DwA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Hair Hat (Yellow)", + "GiftDropId": 11895, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11895, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b84f5e9e-11fc-424d-ad39-86901edb9edc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Demon Jacket", + "GiftDropId": 11896, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11896, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Nova)", + "GiftDropId": 11898, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11898, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,FFIpxInE-EKbk2GY-pIkyg,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Nebula)", + "GiftDropId": 11899, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11899, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b89be768-a169-4b24-8022-751e7b817865,SXG9rdEkxkOR31Nk0aTOww,uB4gFxfrh0W5OtkmZdFN1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Quasar)", + "GiftDropId": 11900, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11900, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b8e485d4-b5c2-480e-908c-d9b500375759,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (Cochlear Implant - Red)", + "GiftDropId": 11901, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11901, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b8e485d4-b5c2-480e-908c-d9b500375759,7ZRNVpxhWk-j8R3oj0oVXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (Cochlear Implant - Gray)", + "GiftDropId": 11902, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11902, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b8e485d4-b5c2-480e-908c-d9b500375759,8WJI7RAuaEy4KvQiQhoKBw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (Cochlear Implant - Blue)", + "GiftDropId": 11903, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11903, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Blue)", + "GiftDropId": 11904, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11904, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Red)", + "GiftDropId": 11905, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11905, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b904304b-cce0-466f-8569-c621eeadd4f7,rzUd1IMTKUmW0HeMPSIOBQ,f79f8a46-ef1d-4d8c-a4fc-383e3a9eb10b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Gloves (Green)", + "GiftDropId": 11906, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11906, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Cape", + "GiftDropId": 11907, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11907, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,EjNmQJBRnUet_ovEQ3HnDA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Cape (Blue)", + "GiftDropId": 11908, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11908, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b92f9873-5fbd-4529-803e-80151f5685c2,mO5wjf7_cEWNCHFR6ymGxA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Cape (White)", + "GiftDropId": 11909, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11909, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b95678aa-351a-4929-8a0e-0274a183eb18,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Formal Necklace (Silver)", + "GiftDropId": 11911, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11911, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b96426ec-093d-4bfe-95e1-b88489479198,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vigilante Gloves", + "GiftDropId": 11912, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11912, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9987d0c-0cbf-41dc-9a9c-8fdb5165800e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Braided Beard", + "GiftDropId": 11915, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11915, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Blue)", + "GiftDropId": 11916, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11916, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Red)", + "GiftDropId": 11917, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11917, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b99a89c7-38c5-4196-9862-4e1bf9cb0ce1,rzUd1IMTKUmW0HeMPSIOBQ,92714eac-cc07-4f74-a6f5-cfbbadd07e06,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Helmet (Green)", + "GiftDropId": 11918, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11918, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Nightwatch)", + "GiftDropId": 11919, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11919, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,A7l6Q2clsk2XyKf62D3dHA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Ironbound)", + "GiftDropId": 11920, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11920, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,pXrZhtzjV02_qvIQoWEFWA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Hearthstone)", + "GiftDropId": 11921, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11921, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9d08f9a-b23d-4d7e-978b-a0cd8adbfe9c,VK4YBLXO10G2_aEl3ZQUGA,Hj8WnsdidE6rJeNyOmWUfg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Cloak (Whiteout)", + "GiftDropId": 11922, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11922, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Bracers (Black)", + "GiftDropId": 11923, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11923, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,62bd5dda-08da-4528-83c1-f0ca3812dc6e,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Bracers (Red)", + "GiftDropId": 11924, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11924, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,cdca593a-8840-4140-9145-fe962732040c,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Bracers (Brown)", + "GiftDropId": 11925, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11925, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b9e0f03b-2609-4911-82e9-1e324dbbe8be,X3MkhL55Rk-0UK6h4dw0Eg,ce3782aa-56cc-40d7-9019-8ce714cb7748,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scallywag Bracers (Crimson)", + "GiftDropId": 11926, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11926, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Brown)", + "GiftDropId": 11927, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11927, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,192ba73d-6990-42da-8fe0-914c2a7181eb,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Black, Gold)", + "GiftDropId": 11928, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11928, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,5e00a832-3f25-4dd3-84d2-b6ed6a4b4c37,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Yellow)", + "GiftDropId": 11929, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11929, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,624c85e5-095a-48b6-85fb-c9bbade19a8d,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Cherry)", + "GiftDropId": 11930, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11930, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,BW5oLDA36EK9nLzTm7xViQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Pink)", + "GiftDropId": 11931, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11931, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,K5vPqD3BrEuODRDzFdC6Hw,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Black, Silver)", + "GiftDropId": 11932, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11932, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,ODOnI3iYoEKrlQfFabbvoQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (Green)", + "GiftDropId": 11933, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11933, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba84b23e-01ee-4668-a7ef-2e3e0eca2f23,teVKVbVEsEyqOSuRdqHQzA,98553538-cafd-4df9-8f37-bb0a4bb478a5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Vest (White)", + "GiftDropId": 11934, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11934, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ba96458f-84c3-42b7-acc0-e4d96f31ec84,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeletor Hood", + "GiftDropId": 11935, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11935, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Red)", + "GiftDropId": 11936, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11936, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,4c26d1e7-2382-4478-b9c4-a068ed01a607,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Yellow)", + "GiftDropId": 11937, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11937, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,891d902e-3257-4a8c-9001-858046007997,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (White)", + "GiftDropId": 11938, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11938, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb54e0e9-5d90-41f3-94c0-8e82f1791af1,uahcQNh3IEiooPFq-SQi5w,c8ccb85e-52cd-4b3b-aadf-289819067125,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Firefighter Helmet (Black)", + "GiftDropId": 11939, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11939, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb6ee7fa-7a31-4a16-a97e-be6eac42c595,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pioneer Dress", + "GiftDropId": 11940, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11940, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb8602d4-f91f-4e35-9c88-1cdf3a04ff0a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bee Body", + "GiftDropId": 11941, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11941, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc0a1c68-2eb5-4dde-a242-c4e19940699c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Monkey Backpack", + "GiftDropId": 11942, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11942, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Mastermind)", + "GiftDropId": 11943, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11943, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,4RH8_Z1mqU-JIVvx31wOsA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Outlaw)", + "GiftDropId": 11944, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11944, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,QJSPgq2KXEOWNynY8uqQvA,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Rogue)", + "GiftDropId": 11945, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11945, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc3f8ab4-cdb1-4e63-bda5-ba5a4b1f4a43,RBRFHN8_rkuImbyDAfcHWw,BOB_mAXdA0u2khOH5qjqXQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Spy)", + "GiftDropId": 11946, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11946, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Hat", + "GiftDropId": 11947, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11947, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,g8h43tuiN0CCifW9XbnFhQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Rose Hat", + "GiftDropId": 11948, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11948, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,KUSVg33DSUK8aYXxJzOTdA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Hat (Black)", + "GiftDropId": 11949, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11949, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,P8w3-vcH5kaHaMEsFsKDjw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Rose Hat", + "GiftDropId": 11950, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11950, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,sA0KRBVMikOo6BBfk0dC1g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Rose Hat", + "GiftDropId": 11951, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11951, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc48b6a5-5331-4070-bf0e-3d2d2f5410e7,T0PMM2iQqkCCMZoznrdkug", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Rose Hat", + "GiftDropId": 11952, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11952, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses", + "GiftDropId": 11953, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11953, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,2pnfLqkYZ0-GbpeE8g0vVA,hGtyDIIWckGoRgCaSG6GBw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses (Black)", + "GiftDropId": 11954, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11954, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,t_y2xmFYLU2v6Jb6PX6v_g,4J9GPTKjjUOjyLVPmJyxWg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses (Tortoiseshell)", + "GiftDropId": 11955, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11955, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bc7299ac-be2b-404f-b8e6-402e2c0660f0,vw2iLomK9keTfEWsqJrmhA,hGtyDIIWckGoRgCaSG6GBw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Round Glasses (White)", + "GiftDropId": 11956, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11956, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Skater Shirt", + "GiftDropId": 11957, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11957, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,7IYi1twr6kO3xJiQo5CB4w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skater Fit (Checkerboard)", + "GiftDropId": 11958, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11958, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,MVXeErsEE06KenrYaEm7Kg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Skater Shirt", + "GiftDropId": 11959, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11959, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,qwQ8OV3E60WG_VEl9ECHoA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Skater Shirt", + "GiftDropId": 11960, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11960, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be1fdff3-ef1a-4be5-9d65-9107488f45d5,y6NrbfS070WvASkKmPK-9Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Burgundy Skater Shirt", + "GiftDropId": 11961, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11961, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Puffer Vest ", + "GiftDropId": 11962, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11962, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,ZLaDizWS7kOmnHVGlLLJ-g,TUZ21v0C9UK9GPsfbRwpsw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flannel Vest", + "GiftDropId": 11963, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11963, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "beee4e09-9d93-4023-bc78-c5dc551a0ab8,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nutcracker Suit", + "GiftDropId": 11964, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11964, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Gold)", + "GiftDropId": 11965, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11965, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,ERnUPsyT6kuEnIRZF8zPwg,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Silver)", + "GiftDropId": 11966, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11966, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf13fa1c-f991-4aaa-9402-aac109be9562,iaDL2im4lkCXUo0NWM-F3g,wzt-5C_LjEmIQWUVPcYWhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winner's Medal (Bronze)", + "GiftDropId": 11967, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11967, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Sash (Green)", + "GiftDropId": 11968, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11968, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,639f5e2c-6fbd-4ab4-aa10-7772e0932798,66cc536d-8cb5-4262-b7f0-49a33b97ea10,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Sash (Brown)", + "GiftDropId": 11969, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11969, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,67490e3b-0f9d-4bf8-84fb-54957b981c8c,66cc536d-8cb5-4262-b7f0-49a33b97ea10,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Sash (Blue)", + "GiftDropId": 11970, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11970, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bf9dc196-5727-4752-8126-7ad5fcd96d55,b520f3bc-599a-498c-8a4f-97cc25aa741f,66cc536d-8cb5-4262-b7f0-49a33b97ea10,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Sash (Red)", + "GiftDropId": 11971, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11971, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat", + "GiftDropId": 11972, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11972, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,Dvwz4YRu_ES_rl94y6FNBA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat (Grey)", + "GiftDropId": 11973, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11973, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,VyqdOGaUnEa8WzccUIn48w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat (Red)", + "GiftDropId": 11974, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11974, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bfd9c70b-9ad8-4f47-a840-c03231f9ad41,YBpBFNAFGEunM5GX5lFxHg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowler Hat (Brown)", + "GiftDropId": 11975, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11975, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BJ2XrGvl40iIl28IbTfbKg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cheerful Ponytail", + "GiftDropId": 11976, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11976, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BqpRbr_T1kO_YJqB1787kA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cupid Quiver", + "GiftDropId": 11977, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11977, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BR0mZKsKaE-t4R8CzEwuyg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thrilling Cuff (Red) - Available again until 10/15", + "GiftDropId": 11978, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11978, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BR0mZKsKaE-t4R8CzEwuyg,B1IotYmwbkiUAfdZiqzq8w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thriller Wrists (Orange)", + "GiftDropId": 11979, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11979, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "BR0mZKsKaE-t4R8CzEwuyg,Q1knTl-n-EeAUwotFspNew,FHB5XHwNWka7aUt5km3LNg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thrilling Cuff (Blue) - Available again until 10/15", + "GiftDropId": 11980, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11980, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Blue)", + "GiftDropId": 11981, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11981, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,1DQi3Wt8ukK2gWvl0zJnkw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Green)", + "GiftDropId": 11982, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11982, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,76CA_KCr806y1FA35m-YTg,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Orange)", + "GiftDropId": 11983, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11983, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,7B7vpnMTfkGLcMdHCZ_kWA,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Red)", + "GiftDropId": 11984, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11984, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,nO-YacKU1kmLjTFAAqNeYQ,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Yellow)", + "GiftDropId": 11985, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11985, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,u_H8YUV4MEGNGh5h9ckm_w,a3OlD7iI_EqurYq_RIQCvw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Gold)", + "GiftDropId": 11986, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "For earning $1000", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11986, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bu9tb-K7NEiocvZY3o7ukw,ZpcM5H2Q1UCt0hh82nSu9w,tqyzKPdDwkWq3jfZ8jZdaA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shutter Shades (Pink)", + "GiftDropId": 11987, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11987, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Green)", + "GiftDropId": 11988, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11988, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Red)", + "GiftDropId": 11989, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11989, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,61VZkFjB402brzWm4UsftA,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Grey)", + "GiftDropId": 11990, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11990, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,6e152cc7-e93a-4408-8092-236db420b680,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Yellow)", + "GiftDropId": 11991, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11991, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9ad37173-e640-4b9e-a474-716d482b73d2,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Black)", + "GiftDropId": 11992, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11992, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,9b35ae52-febe-486a-8557-ec7190a9756e,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Tan)", + "GiftDropId": 11993, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11993, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0e59f27-a13d-4bd9-b3b8-a38a360f649b,lgqLGi01o02ZFC9Xs5Ofdg,f88178b8-b204-4fa5-9dfd-6e438bf1e247,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Tunic (Blue)", + "GiftDropId": 11994, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11994, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c161dc73-6ce3-49c4-8d15-45e6911f84e4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sea Captain Beard", + "GiftDropId": 11995, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11995, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c2362f96-0a73-451b-9a85-46410eefd2ce,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chess Knight Hat", + "GiftDropId": 11996, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11996, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c2d22328-b41a-4e53-9b1e-814e84b86d15,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Kite", + "GiftDropId": 11997, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11997, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c2df65e0-2e85-4666-bea1-e8efa654b155,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gaia Clip (Sprout)*", + "GiftDropId": 11998, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "First stage of growth", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11998, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Triton)", + "GiftDropId": 11999, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 11999, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,CahBzgN3D0y46AQsvGC14A,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Leviathan)", + "GiftDropId": 12000, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12000, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3745cee-d87e-4a23-b6e2-64ebf05c8b11,Su7kiW24d0KapNns96JoFQ,EiIow5mS80qpoS10r1ZdvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Deep Sea Diver Suit (Kraken)", + "GiftDropId": 12001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Holiday Elf Costume", + "GiftDropId": 12002, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12002, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,8k3q_1d_-kSBzNLCl1HQhw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elf Shirt (Black)", + "GiftDropId": 12003, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12003, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,Hd5IIMd7VUqndR_og0zxPg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elf Shirt (Red)", + "GiftDropId": 12004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,i3pwJQoNDkO_68pQ_3Y0tw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elf Shirt (Pink)", + "GiftDropId": 12005, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12005, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c3ba47d5-a165-4bd6-8479-e5f8d709f4ff,YwossyXZNEm3OPWwXsyTAg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Elf Shirt (White)", + "GiftDropId": 12006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Beige)", + "GiftDropId": 12007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,irw2uj4c2Eil0ndPCTqodQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Yellow)", + "GiftDropId": 12008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,pPZ3sDw3B06mKiYsAiAt9w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (White)", + "GiftDropId": 12010, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12010, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,sO8e2epLrUud243Xi9odXg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Orange)", + "GiftDropId": 12011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,s-QTVT5eTECKHL9FnHFCAQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Blue)", + "GiftDropId": 12012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c414588b-29b3-4a1c-ae9e-7ad251901429,UnHAtXkd2kCdamzw6B3Mvg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Head Scarf Twist (Turquoise)", + "GiftDropId": 12013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c45ed7b8-99bd-4a4b-a9ff-e16edf5d7a18,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "High Pony Hair", + "GiftDropId": 12014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Trench Coat", + "GiftDropId": 12015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c4622dca-80dc-423b-ae22-2065174e817b,pCEBoSP2pESLl9ih-J-55g,8SzXFoWD8k20cekFe6cLKg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Trench Coat (White)", + "GiftDropId": 12016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Blue)", + "GiftDropId": 12017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,apSQiQ1eO0mEzRsbugeu9w,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Green)", + "GiftDropId": 12018, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12018, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,iufpnteVCEiiZu_m-yPovQ,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Purple)", + "GiftDropId": 12019, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12019, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,VpqHNpPiY0CfRJEjRRM-mw,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Red)", + "GiftDropId": 12020, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12020, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "C4uuztTiYUe20PACMARksA,Z1F9rjKqCE-Hd2-Ip5g3gA,fz_0gZ6RXEC78NpYsx_eqA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Letter Jacket (Black)", + "GiftDropId": 12021, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12021, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Monarch)", + "GiftDropId": 12022, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12022, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,1qHXl55Qn0qSb1gAhr8Wjg,GlB_scM-5kuc4A5TmGe6Yw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Frontier Bluebottle)", + "GiftDropId": 12023, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12023, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,nODTglESMEC9tBY1k-LrsA,Do__oD53x0-dNtVeHsr4yA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Midnight Gossamer)", + "GiftDropId": 12024, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12024, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c506feae-be73-437b-b18a-1152bb9906e9,PTqpWqqU9k--lNlRrmlVbA,yViVKOLHc0qLiPw9Oy1Obg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Candy Agrias)", + "GiftDropId": 12025, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12025, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c51780fd-9eb5-4bc0-9da0-34ab22d800df,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glowstick Bracelet", + "GiftDropId": 12026, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12026, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c51877eb-efda-4a04-8394-092637e2a9bf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Helmet (Buckateers)", + "GiftDropId": 12027, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12027, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c65a94e6-7475-4030-8fcd-9ce25852ff7c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Arrow Through Head Hat", + "GiftDropId": 12032, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12032, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Umbrella Hat (Rainbow)", + "GiftDropId": 12033, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12033, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,3L-AGgM50kCCz2V3UJtErA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Umbrella Hat (Ladybug)", + "GiftDropId": 12034, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12034, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,Ii2WNQxqtUeoIfGItUkVbQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Olden Umbrella Hat", + "GiftDropId": 12035, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12035, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6ae0a86-e590-4097-b77e-ba6fce83a826,U-KT3nJlW0-JT8GSQuQXhg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Umbrella Hat (Mushroom)", + "GiftDropId": 12036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Black)", + "GiftDropId": 12037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Grey)", + "GiftDropId": 12039, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12039, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,31jelNWFyk6FlWt4HyPAlw,9zGwmle_yk25V-KnC_PJEg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Hearts)", + "GiftDropId": 12040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,3svqbYmGt0uyVWnx7vJNmw,iLo1YhFY-06HNWgM6gkB7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Neighborly)", + "GiftDropId": 12041, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12041, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Yellow)", + "GiftDropId": 12042, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12042, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,724c79a3-822c-422f-9462-a5374ee0211c,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (White)", + "GiftDropId": 12043, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12043, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Red)", + "GiftDropId": 12044, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12044, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Blue)", + "GiftDropId": 12045, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12045, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c6c08eb5-381a-4193-9722-80da95d62abe,W4a144so90eRzCojUnDowA,pHw_MghIYUazSFve6L237w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Business Tie (Candy Cane)", + "GiftDropId": 12046, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12046, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glasses (Teal)", + "GiftDropId": 12047, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12047, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,5H0I1anlkkuUYIM28_ZOlA,l_iJLV14q0eNgOsOI1u0pw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glasses (Purple)", + "GiftDropId": 12048, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12048, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,9tZq7Xvfj0WhhLBAuAacxA,l_iJLV14q0eNgOsOI1u0pw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glasses (Blue)", + "GiftDropId": 12049, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12049, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,BqNgpjP7a0qmm3I3DNbKLA,l_iJLV14q0eNgOsOI1u0pw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glasses (Yellow)", + "GiftDropId": 12050, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12050, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,dRQI80Qn4E-kzhPJoW66MA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Black)", + "GiftDropId": 12051, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12051, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,F1IV-zZ22kKtXkr2pHp_YQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Seafoam)", + "GiftDropId": 12052, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12052, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,FuMUQFSnnU6awB-vPaeuZw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Bubble Gum)", + "GiftDropId": 12053, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12053, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,OBcu3bf1NEio_7t9smqGag", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Amber)", + "GiftDropId": 12054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,-OgDdlvL9EyzeiA50YY5kw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Charcoal)", + "GiftDropId": 12055, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12055, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c70005d5-6276-4a98-acb3-6a77bc19379a,Sad0HQX_Y0eYTx1qqgxKwQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Acetate Glasses (Sunrise)", + "GiftDropId": 12056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c7c85554-e118-4433-8d6b-b61a2971e045,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Floaties", + "GiftDropId": 12057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c855dcc3-96cb-470d-b159-d37a025a47d1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dutch Braid Hair", + "GiftDropId": 12058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c859a371-5d34-4e53-a96f-a6f7f3377aba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero's Quiver", + "GiftDropId": 12059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c859a371-5d34-4e53-a96f-a6f7f3377aba,aMOwLebcBU6SuPigtovUYg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Future Quiver", + "GiftDropId": 12060, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12060, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c87239ca-a255-4b13-bbc5-1b38236fb4cc,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Viking Helmet", + "GiftDropId": 12061, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12061, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8a97aeb-e8dc-40ba-b6bc-a7c7be907381,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Feathered Hair", + "GiftDropId": 12062, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12062, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shell Necklace", + "GiftDropId": 12063, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12063, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8d2503e-5d43-4828-8d1d-40c64a577753,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Harmonica Necklace", + "GiftDropId": 12064, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12064, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Da Bomb)", + "GiftDropId": 12065, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12065, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,6ZtRAbD-xUufWNLCrlrrCg,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Chill)", + "GiftDropId": 12066, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12066, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,ulOBBvFEJ0ioFA1qmL390A,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Aiight)", + "GiftDropId": 12067, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12067, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca218759-7eed-440e-b5dc-dba15f81e598,V4CVhCB8eU-nrfYgticVOA,u9yHtj_tfkuowGp0h_YpFg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Nineties Outfit (Booyah)", + "GiftDropId": 12068, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12068, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Purple)", + "GiftDropId": 12069, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12069, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,AC3zfm38JEyBZWuXDh4Ukg,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Black)", + "GiftDropId": 12070, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12070, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,dyEaPloE8kazWC7Zblv8uQ,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Yellow)", + "GiftDropId": 12071, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12071, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,RfZNDPUok0WyQEa3Ko08ow,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Blue)", + "GiftDropId": 12072, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12072, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,sX0ZZDcCUkyFSJISfvq0vg,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Orange)", + "GiftDropId": 12073, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12073, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,TnEDe1QoMUCUdqPL_7CxTA,ovy_3j_qwE-7mmks1Z47ig,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Runner Harness (Green)", + "GiftDropId": 12074, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12074, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "caf1e229-9660-4abf-8074-f706709f4097,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overalls", + "GiftDropId": 12075, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12075, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cb061cf3-05fb-4494-be5e-091ddb080271,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Pop Rock Gloves", + "GiftDropId": 12076, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12076, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones", + "GiftDropId": 12077, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12077, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,1Cbw9819NE-Fmv1NQIYKow,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (Emissive, Red)", + "GiftDropId": 12079, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12079, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,5JQPQ2JBUkSFyXeYWvr4tA,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (Orange)", + "GiftDropId": 12080, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12080, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,omnSzDLD5ESCU6ndropzPQ,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (Purple)", + "GiftDropId": 12083, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "RecCon 2021 exclusive", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12083, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,pY3RdcA2lU6H5rVXp8csfg,Dac47T16Wk6LmmDd2cs1LA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (Blue)", + "GiftDropId": 12084, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12084, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbf478e1-a9d7-4b3f-9f52-c59271a924f6,VtsT6sKDYE24bAU-PKkIDQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headphones (S.)*", + "GiftDropId": 12085, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12085, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cbN5e-t_jEKa4hzir5JAxQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shades", + "GiftDropId": 12086, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12086, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cc30f7f7-6c12-4a96-acfd-11aec984c2e4,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Outlaw Vest", + "GiftDropId": 12087, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12087, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cc96f8a5-bc5b-4f89-83b7-ecd53905ada7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beard (Thick)", + "GiftDropId": 12088, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12088, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cca7ab3d-5609-4700-92fd-3280fcea9b77,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Stache", + "GiftDropId": 12089, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12089, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cd77c8ed-ab60-4f42-9bee-0141c7e3e626,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Horseshoe Necklace", + "GiftDropId": 12090, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12090, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Goggles", + "GiftDropId": 12091, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12091, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CdeM6RJmPUumXtdmdM3RXA,mZ2ASMrs80axStLp9g1enA,dGzmSibucEe7i1HD7lPcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Goggles (Silver)", + "GiftDropId": 12092, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12092, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce250e13-8137-4f62-9e52-2b1cebe7d0ad,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Hawk Hair", + "GiftDropId": 12093, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12093, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Wrist (White)", + "GiftDropId": 12094, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12094, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ce81210f-8eb8-4cd2-95d5-046d4da229c8,bb01b51e-a95f-441e-8c52-abc3aeed7145,f7c7d05f-5454-445a-af38-25f110bd204a,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Wrist (Black)", + "GiftDropId": 12095, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12095, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cea5c141-32d8-4dae-80d9-6fb74834a79c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Farmer Hat", + "GiftDropId": 12096, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12096, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cec9cfac-a45b-4edb-b26d-7453cc2bfaf2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Froggy Headband", + "GiftDropId": 12097, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12097, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Blue)", + "GiftDropId": 12098, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12098, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,6WJKUeFNn0amYNvKMxijcw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Forbidden Purple)", + "GiftDropId": 12099, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12099, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,hNFdYhoJYk24MqU2GhQXlw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Yellow)", + "GiftDropId": 12100, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12100, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,OIfcKSEil0uHgT5baEFuOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (White)", + "GiftDropId": 12101, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12101, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,u0bLCSxcA0yDHC29XnLZOg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Science Green)", + "GiftDropId": 12102, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12102, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cee80307-68cd-4260-a898-1514dd41dd5d,VPvezA1A8UKt2qNoNRW9dg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beam Sword (Red)", + "GiftDropId": 12103, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12103, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gathered Shirt (White)", + "GiftDropId": 12104, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12104, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1a6f8f-1649-423b-b513-b8d40d242b1f,8lwfuCRnU0291wqwgTwgRQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Riveter Shirt", + "GiftDropId": 12105, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12105, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrap Skirt", + "GiftDropId": 12106, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12106, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,B5WV1io6fkaAJdm4GbzM_Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Monarch Butterfly Wrap Skirt", + "GiftDropId": 12107, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12107, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,bNWm_2_VE0-4fdcF6S0aIA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Butterfly Wrap Skirt", + "GiftDropId": 12108, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12108, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,q9Nganq9nUaV3zuvx9s3nQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wrap Skirt (Blue)", + "GiftDropId": 12109, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12109, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf1e5c42-b12d-4e1e-945c-5bb80cae3fd5,y8yTimlV2EWhJMU-Ay9e8A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mint Butterfly Wrap Skirt", + "GiftDropId": 12110, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12110, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf360f73-b349-44e7-b5c1-f175a0f5e70d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt of Elseware*", + "GiftDropId": 12111, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12111, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cf360f73-b349-44e7-b5c1-f175a0f5e70d,zQgy7h3CO0a02zJfhA9wXA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt of Elseware (Shadowy Illusion)*", + "GiftDropId": 12112, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12112, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cfce35b4-d182-4505-a631-5a8e5011f550,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Pop Rock Earrings", + "GiftDropId": 12113, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12113, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cfe276b9-1bdf-4c41-9e86-1a0215c6c5a1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ascot", + "GiftDropId": 12114, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12114, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Turkey)", + "GiftDropId": 12115, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12115, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,032pE8s9Ik-2CImFVDrSqg,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Blue)", + "GiftDropId": 12116, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12116, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,8xjU4GQ4OkaqGyad-ypwtw,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Red)", + "GiftDropId": 12117, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12117, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,FC8ZFBPt4EyTe7IYbv2Tpg,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Pink)", + "GiftDropId": 12118, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12118, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,GDvaUU10-EKh3pKUQ9tnag,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Runway)", + "GiftDropId": 12119, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12119, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,ghM-uFq5-0Ci38AOHa9zZA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Deadwood)", + "GiftDropId": 12120, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12120, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,Gtq8yRlt1UeFW8U-sc7FiA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Brooklyn)", + "GiftDropId": 12121, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12121, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,-k9_-2onrEG407or8t1RFw,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Hambone)", + "GiftDropId": 12122, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12122, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,kLyM-6otSUy2ql5SEmnF9Q,b-IM3eYMJUa40395O5XeLg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Spared)", + "GiftDropId": 12123, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12123, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,KqjQ1xRpokGLKp9GVN1EFA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Striker)", + "GiftDropId": 12124, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12124, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,M4765UHzsUeNTwH-Pcxp1g,5RUG6i2Mx0-55IO-IlhUdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Flames, Green)", + "GiftDropId": 12125, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12125, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,XrSL-v2MbkK0md-FMOweOA,IWg9wuda4kaCilJk8JQpTQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Sleeper)", + "GiftDropId": 12126, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12126, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yrQCLXiqRUSwnuQRYX2Rsw,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Lily)", + "GiftDropId": 12127, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12127, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CQuKKNpan0O7rhR1fr14-Q,yZR5aX3gQ0WpRUT6cfK1cA,VO_3cgqQqUOTz30TVUxrFA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bowling Shirt (Split)", + "GiftDropId": 12128, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12128, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "CTcrvbo3OEepIV4oW8bx4w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Receding Hair", + "GiftDropId": 12129, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12129, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room Shirt (Crew Neck, White)", + "GiftDropId": 12130, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12130, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,14afd295-bcd0-4595-80dc-d477618b9ab9,2ee3944d-e9fb-4959-973e-570a7fc6cc57,a74e6c0d-1300-4928-9141-977a711b71c4", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "SFVRCC Promo Shirt", + "GiftDropId": 12131, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12131, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,5864d23d-1a86-40a6-a52c-46ee670e4508,2ee3944d-e9fb-4959-973e-570a7fc6cc57,167ba0d4-4fac-4143-b5ae-1dbd8e02dc76", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2016 Shirt", + "GiftDropId": 12134, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12134, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,6kPcLZtEqU2Hs4yBFvc_sA,0440f08f-ef1d-49d8-942b-523056e8bb45,br9hzhDoZUmIevgl7SJkmg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2019 Shirt", + "GiftDropId": 12136, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12136, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,6kPcLZtEqU2Hs4yBFvc_sA,0440f08f-ef1d-49d8-942b-523056e8bb45,NxMm0sSBdUatynU16o0_Zw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2018 Shirt", + "GiftDropId": 12137, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12137, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,815138e6-b0dc-459c-9538-20f5bbd37d6b,0440f08f-ef1d-49d8-942b-523056e8bb45,75162f12-44e7-499f-bc6c-9b0612e9164b", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Class of 2017 Shirt", + "GiftDropId": 12138, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12138, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,922f229c-124f-4f07-b4e3-19138420ca19,2ee3944d-e9fb-4959-973e-570a7fc6cc57,ceb07e4f-50a9-4ed0-b50b-c59d92ba66b5", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Birthday Shirt (1st)", + "GiftDropId": 12140, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12140, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,95e4cc30-cb68-473d-a395-feadf5b51512,0440f08f-ef1d-49d8-942b-523056e8bb45,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room T-Shirt (Crew Neck, Orange)\t", + "GiftDropId": 12143, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12143, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,95e4cc30-cb68-473d-a395-feadf5b51512,0440f08f-ef1d-49d8-942b-523056e8bb45,0c496f32-0011-4c4d-9778-59446f70c032", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Room T-Shirt (Crew Neck, Orange)", + "GiftDropId": 12144, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12144, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,ba6b6e1a-a09a-4ba0-9523-552869f03336,0440f08f-ef1d-49d8-942b-523056e8bb45,d461ca71-45c9-415e-8e09-ba93e8d73450", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Happy Tree Shirt (Blue, Contest)", + "GiftDropId": 12145, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12145, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,d3-sxPTJOk2rKo-Jgy3wvw,0440f08f-ef1d-49d8-942b-523056e8bb45,v0GsPFC7cU-_JNG4-ERfog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest T-Shirt (Red)", + "GiftDropId": 12150, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12150, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,eb1vYTP_KEGQH-f33_whQg,0440f08f-ef1d-49d8-942b-523056e8bb45,t2do8WSejE-Y0aiEirKw9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest Shirt Reward (Green)", + "GiftDropId": 12152, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12152, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,evgH6VWUgkKJNews32hUxQ,0440f08f-ef1d-49d8-942b-523056e8bb45,v0GsPFC7cU-_JNG4-ERfog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest Shirt Reward (Orange)", + "GiftDropId": 12153, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12153, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,fwIgUAM_C0WhKds0O6DyPg,0440f08f-ef1d-49d8-942b-523056e8bb45,fJVxsLWuTESd-2xTCJPZ2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Recollage Shirt (Pink, 2D Art Contest)", + "GiftDropId": 12156, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12156, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,LrQ1z-mTHE2vIePBwm8l_Q,0440f08f-ef1d-49d8-942b-523056e8bb45,omS7gF10C0ec0ozEoJGJXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Recollage Shirt (Blue, 2D Art Contest)", + "GiftDropId": 12161, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12161, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,owoIOIEM70e6WxnYdlKYWQ,0440f08f-ef1d-49d8-942b-523056e8bb45,t2do8WSejE-Y0aiEirKw9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest T-Shirt (Purple)", + "GiftDropId": 12164, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12164, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,TtncjvYcK0qHqWN-IMMoqg,0440f08f-ef1d-49d8-942b-523056e8bb45,hHhjZeLcaUGN1OyFoYHznw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Happy Tree Shirt (Purple, 2019 2D Art Contest)", + "GiftDropId": 12166, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12166, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,TuAjeDmPuUmFr_ESx4q6WA,0440f08f-ef1d-49d8-942b-523056e8bb45,AXtRUZcYWU6g1ZtM-L4vfQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest T-Shirt (Black)", + "GiftDropId": 12167, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12167, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,v12eJ8louE-cW7-pCGzVLQ,0440f08f-ef1d-49d8-942b-523056e8bb45,v0GsPFC7cU-_JNG4-ERfog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Video Contest T-Shirt (Blue)", + "GiftDropId": 12169, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12169, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d0a9262f-5504-46a7-bb10-7507503db58e,ZNPzHmrU6kGVQW7Q5ei03w,0440f08f-ef1d-49d8-942b-523056e8bb45,fJVxsLWuTESd-2xTCJPZ2w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Recollage Shirt (Yellow, 2D Art Contest)\t", + "GiftDropId": 12171, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12171, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d12e5738-00c7-47e7-9334-8399eec5aa89,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "International Thief Hat (Mystery Contest)", + "GiftDropId": 12172, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12172, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d15139de-5e57-423b-b8da-335ad7a4df5a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Hidden Worlds Contest)", + "GiftDropId": 12173, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12173, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d1c4f1aa-3acb-42ca-bfe7-5e2a1e863f95,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Microphone Headphones", + "GiftDropId": 12174, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12174, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d1c4f1aa-3acb-42ca-bfe7-5e2a1e863f95,u2nh8EAZT02TxPTWVl59UA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Headset (Invasion)", + "GiftDropId": 12176, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12176, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Green)", + "GiftDropId": 12178, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12178, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,5b5281c9-b795-4bb2-ba7b-ba52047ebe3f,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Red)", + "GiftDropId": 12179, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12179, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,61VZkFjB402brzWm4UsftA,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Grey)", + "GiftDropId": 12180, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12180, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,6e152cc7-e93a-4408-8092-236db420b680,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Yellow)", + "GiftDropId": 12181, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12181, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9ad37173-e640-4b9e-a474-716d482b73d2,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Black)", + "GiftDropId": 12182, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12182, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,9b35ae52-febe-486a-8557-ec7190a9756e,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Tan)", + "GiftDropId": 12183, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12183, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d2d3264b-fbf6-40b5-9f10-c85ec737d112,lgqLGi01o02ZFC9Xs5Ofdg,1ba65dd5-9df9-4ff3-be96-f83a7abf67b3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Archer Hat (Blue)", + "GiftDropId": 12184, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12184, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robot Gauntlets", + "GiftDropId": 12185, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12185, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,BoaDgMfzEEycbxVmWneHNA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alloy Power Gloves (Black)", + "GiftDropId": 12186, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12186, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d33c2f3a-6831-4deb-82b2-062d1c4224e4,gIDTSqjSvECgxxd4YtOZIA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Alloy Power Gloves (Red)", + "GiftDropId": 12187, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12187, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3b8bd7b-ca9a-4f5d-b115-3659dc294a03,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Hat (Green)", + "GiftDropId": 12188, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12188, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dodgeball Shirt (Purple)", + "GiftDropId": 12189, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12189, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,0ba92db2-690a-44ce-92f4-130e9503b6c1,944d934d-5e21-42d7-8196-fff9a81ee469,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dodgeball Shirt (Teal)", + "GiftDropId": 12190, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12190, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3d69bee-60bc-44a3-ad7c-65b3b69d1e59,4a85c181-92fe-47a5-925e-05f0ccb25006,944d934d-5e21-42d7-8196-fff9a81ee469,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dodgeball Shirt (Orange)", + "GiftDropId": 12191, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12191, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d4f86b2b-0fa3-4264-9eac-cf15b62463bd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Resistance Shades", + "GiftDropId": 12192, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12192, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d52ff2bb-d396-478d-8153-2aa845feb306,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hiker Hat", + "GiftDropId": 12193, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12193, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d57cf97e-b5d2-4e47-8231-a226a161f6e3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Pink)", + "GiftDropId": 12194, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12194, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Arizona Cardinals Hat", + "GiftDropId": 12195, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12195, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,_egTT9EA-UK0aLkn_QnWFA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Carolina Panthers Hat", + "GiftDropId": 12196, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12196, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,-0DfEFcbNEaNI2uvfHF9qA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Minnesota Vikings Hat", + "GiftDropId": 12197, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12197, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,10nSNj7eRE6XwS9y2OvC2g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Chicago Bears Hat", + "GiftDropId": 12198, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12198, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,1nFX70Rqo0-qQo2M_Z1KCg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Houston Texans Hat", + "GiftDropId": 12199, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12199, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,27Fg--SzD0ertvGEv1Jgsw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Las Vegas Raiders Hat", + "GiftDropId": 12200, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12200, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,3m5Q5crrHUGZJ9_GuxubQw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Tampa Bay Buccaneers Hat", + "GiftDropId": 12201, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12201, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,4viU0bMT1UuasZHD8euFKg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Philadelphia Eagles Hat", + "GiftDropId": 12202, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12202, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,5fjPcf4xQkSEYn3T-f8xLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Detroit Lions Hat", + "GiftDropId": 12203, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12203, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,6EjRVha2i0mCUVLaL_em_w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Los Angeles Chargers Hat", + "GiftDropId": 12204, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12204, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,6JY7l1gtpE631NTmT6xv3A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Kansas City Chiefs Hat", + "GiftDropId": 12205, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12205, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,cOyJcjGyp0miaMLAOpz0FA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Indianapolis Colts Hat", + "GiftDropId": 12206, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12206, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,DVnSVZcj8kyLr1DXRu7kzg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New England Patriots Hat", + "GiftDropId": 12207, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12207, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,EtgbhY9a_EqO4j86Al9Kpw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Los Angeles Rams Hat", + "GiftDropId": 12208, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12208, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,FnezvbcGD0-oyFOTkpUo7g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Washington Commanders Hat", + "GiftDropId": 12209, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12209, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,FokpgM8R5EuXZwe89T78yA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Cleveland Browns Hat", + "GiftDropId": 12210, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12210, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,jYJehFukzUCHKzWQAaM3uw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New York Jets Hat", + "GiftDropId": 12211, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12211, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,kjDg5GM1b0iepa52BX5wbg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Baltimore Ravens Hat", + "GiftDropId": 12212, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12212, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,nIUjGqY8L0u0ZbX45b4PUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Jacksonville Jaguars Hat", + "GiftDropId": 12213, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12213, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,oyvOdKXeGU65V6sKhhb0qg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Miami Dolphins Hat", + "GiftDropId": 12214, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12214, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,QD-SRdKijU2RVu60TcU_jw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Seattle Seahawks Hat", + "GiftDropId": 12215, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12215, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,QgECbFDwyk24sI-e_fXy5w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New Orleans Saints Hat", + "GiftDropId": 12216, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12216, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,q-Gjg0zzI0mTHxjn8wi5HQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL San Francisco 49ers Hat", + "GiftDropId": 12217, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12217, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,sjY_XUbXAk6h2TGnjBGDeQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Green Bay Packers Hat", + "GiftDropId": 12218, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12218, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,TtthSwdIq0CuSNOKDLsldg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Denver Broncos Hat", + "GiftDropId": 12219, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12219, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,v0nZrzbIMEi3AaGuNjmwDw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Dallas Cowboys Hat", + "GiftDropId": 12220, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12220, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,VxmHqppE6UWiXVBXL2QvTA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Atlanta Falcons Hat", + "GiftDropId": 12221, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12221, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,WlfHWDcnO0SBT5wTjEPSmw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Buffalo Bills Hat", + "GiftDropId": 12222, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12222, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,XNTUcdaSVEuS3rbzwIwYNg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Tennessee Titans Hat", + "GiftDropId": 12223, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12223, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,XPBWTcpQ9kaS0mabpdvYhw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Cincinnati Bengals Hat", + "GiftDropId": 12224, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12224, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,YePtDvVnOk6cZkDBVIv-PA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL Pittsburgh Steelers Hat", + "GiftDropId": 12225, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12225, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d6507e9b-4413-4487-8f9a-adbba3a1bb66,zMWcGYnGdk6lVqVNuFwJHw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NFL New York Giants Hat", + "GiftDropId": 12226, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12226, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d7410e54-5193-48b9-b5c9-06e4439dd924,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Keytar (Pink)*", + "GiftDropId": 12231, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12231, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d7410e54-5193-48b9-b5c9-06e4439dd924,0aNp_2sWHUS_08TMe-_AzQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Keytar (Purple)*", + "GiftDropId": 12232, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12232, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d7410e54-5193-48b9-b5c9-06e4439dd924,njOH4bbntk6THrxbd9TDDA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Keytar (Orange)*", + "GiftDropId": 12233, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12233, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Yellow)", + "GiftDropId": 12234, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12234, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,026ca50e-3a81-43cf-87f5-950687b7bbdd,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Pink)", + "GiftDropId": 12235, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12235, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,3JrW3FFUvEe6HZ9VjOVjMw,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Pink)", + "GiftDropId": 12236, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12236, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,6584dada-499e-4d7c-958d-466955b20640,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Blue)", + "GiftDropId": 12237, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12237, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,Ijf-j7EgEkGYOKo9SQNLRw,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Red)", + "GiftDropId": 12238, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12238, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,J7l1YwWjqkutybwykwih7w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Squid Teal)", + "GiftDropId": 12239, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12239, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,jeEWPFvzaEGmXaUrxTFvwg,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Red)", + "GiftDropId": 12240, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12240, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,NjCLn5A5h0-V8jB72etCNQ,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Black)", + "GiftDropId": 12241, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12241, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,OT5APcpbpEiMNNah8n4Txw,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Blue)", + "GiftDropId": 12242, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12242, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,t2fOeVWloUOKDlIaf4Sxnw,ynPJe7asTk-x_GtcEBQbgA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweat Suit (Yellow)", + "GiftDropId": 12243, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12243, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d766c8d3-76e8-4021-b0a4-24b78fb7eaba,uUOO-k5KS0mU7B5BLaOpnA,adae82eb-a4b9-4541-acf2-76cea839a593,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tracksuit (Black)", + "GiftDropId": 12244, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12244, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d7730a9e-78a1-4356-bc09-6b066615850b,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Afro Updo Hair", + "GiftDropId": 12245, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12245, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8280c0c-d803-4513-be10-a0ba96d8821e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flowhawk Hair", + "GiftDropId": 12246, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12246, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d834be2b-b107-49aa-b0ec-b54bdb4c61aa,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Iso Helmet (Invasion)", + "GiftDropId": 12247, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12247, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d84c0ff9-8fbe-4ed8-abf3-7996e81888ab,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Large Afro Hair", + "GiftDropId": 12248, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12248, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d86e2e65-5d87-466d-b885-8c52ac2eeeb0,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Jacket (High Seas Contest)", + "GiftDropId": 12249, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12249, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Cuffs (Blue)", + "GiftDropId": 12250, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12250, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,_4mk8E4PUEGf_3SPuFUy2g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Cuffs (Green)", + "GiftDropId": 12251, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12251, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,aO5Q4BPpuU-bsNavGii40A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Cuffs (Purple)", + "GiftDropId": 12253, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12253, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d898dc4b-d6a9-41af-8e6d-f22097e8a01c,MVhTW78G_E6z2mY0Y5ZnAA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frantic Rabbit Cuffs (Red)", + "GiftDropId": 12254, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12254, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Black)", + "GiftDropId": 12255, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12255, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,178c6beb-c737-434c-a53b-d14f438f6a98,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Blue)", + "GiftDropId": 12256, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12256, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d8f408f0-78f5-4e8a-b42a-e7b09632d1fd,2913bd93-bf35-4bdf-b83a-d40a10213adc,0189ec4c-0389-4ebc-b9ba-32303a6341c2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Vest (Red)", + "GiftDropId": 12257, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12257, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d960b47d-f8bd-4c2e-813c-a6a09876ea18,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Hat", + "GiftDropId": 12258, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12258, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d960b47d-f8bd-4c2e-813c-a6a09876ea18,TZ3oQBp_3kWY4Vzscgv5Wg,xCpdHx1iM06Gg0tYoGv0DA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scarecrow Hat (Creators Contest)", + "GiftDropId": 12259, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12259, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c025e1-561b-4997-9f69-c96eb3c00786,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wrist Warmers", + "GiftDropId": 12260, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12260, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Earrings", + "GiftDropId": 12261, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12261, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,10nOM4HBRU-e7Bb05SrtLw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Rose Earrings", + "GiftDropId": 12262, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12262, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,4ve7AWD5pkGjvmtC6JRdiw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Earrings (Black)", + "GiftDropId": 12263, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12263, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d9c6812d-17f3-4d30-83a9-0dcce44d4e6f,F3m52YaKyEqwbgUyPVfFxQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rose Earrings (Orange)", + "GiftDropId": 12264, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12264, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da4e7b34-2095-4a9e-801e-4f409039e0dd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Buzz Cut Hair", + "GiftDropId": 12265, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12265, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Blue)", + "GiftDropId": 12266, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12266, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c5deba2a-6e35-4b13-8e94-8ba5457f39df,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Yellow)", + "GiftDropId": 12267, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12267, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,c9589974-c261-485e-b571-cb2f34fb178f,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Green)", + "GiftDropId": 12268, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12268, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,d6823e01-69f0-4f85-b94a-74894356a2cf,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Maroon)", + "GiftDropId": 12269, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12269, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,da6d0ced-3d43-4878-a868-925f2ed6fd5b,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Pink)", + "GiftDropId": 12270, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12270, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55bfc3-47b7-46f6-b548-7fb2c2a5e0bf,e13cf33d-7588-4e2e-955e-f0a29d6380b7,cb9e9e05-c481-4397-86e7-c2111bc0e817,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Babydoll Dress (Brown)", + "GiftDropId": 12271, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12271, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dbecb1a5-f342-4017-b5c8-9cdfcd1254ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Armor (Jade)", + "GiftDropId": 12272, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12272, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dbecb1a5-f342-4017-b5c8-9cdfcd1254ec,c7wiHNZ-X0KazEW4cY9PeA,5fVeR6S6R0yo_NcT-TB1lQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Armor (Red, Gold)", + "GiftDropId": 12273, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12273, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Red)", + "GiftDropId": 12274, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12274, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,631c9015-2a00-47ea-bb35-465a2ddbca5d,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Black)", + "GiftDropId": 12275, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12275, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dcf9012d-f9e9-4f15-872e-f130af3b2efa,7f9cb939-36a4-40da-8337-025e1d7bf8e5,83158223-e268-4036-8a6a-218a8430eb2c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbershop Hat (Green)", + "GiftDropId": 12276, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12276, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves", + "GiftDropId": 12277, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12277, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,csLWYuunH0K9Ij1q1FoBsg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves (Green)", + "GiftDropId": 12279, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12279, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,dudShaXMYkaIZdZfyleoXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves (White)", + "GiftDropId": 12280, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12280, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,sP8lTqgdk0WyuwQczT_ijg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves (Blue)", + "GiftDropId": 12281, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12281, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ddfe493a-9a30-45e0-9e67-e6a3a7632f01,Zf0z5Ghkwk-QJJq4u7Fjww", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blaster Gloves (Pink)", + "GiftDropId": 12282, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12282, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Blue, White)", + "GiftDropId": 12283, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12283, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,_ycDQ6RcyEGAntVlSDpPeA,6UBZuZQBG0eZtNmty2IGdA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Candy Cane)", + "GiftDropId": 12284, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12284, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,05ac07e1-67f0-486c-abf5-a62866475abb,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Black, Cream)", + "GiftDropId": 12285, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12285, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,0ffad843-d6c9-425a-8686-7217009c867e,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Green, Black)", + "GiftDropId": 12286, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12286, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,272fe8eb-5061-4729-a7a8-414ff667a82f,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Grey, White)", + "GiftDropId": 12287, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12287, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,6f2e74bf-1e95-463d-97db-d5d1a53b2c28,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Black, White)", + "GiftDropId": 12288, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12288, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,7WrSbK4Ml0K2z-ig5HIUCw,9skD_xxLq0mpfP13f9n8hQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Shamrock)", + "GiftDropId": 12289, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12289, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,9374bf66-2ee5-493b-8439-efce4b201904,be2b9293-1d3c-4b1c-b4c5-fad3ab16cf54,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blazer (Grey, Black)", + "GiftDropId": 12290, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12290, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,uCA4tnv9Mk2mX-NnFlj2Mg,NvlKJFz4IkKDliVOJKJYhA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hallow's Blazer (Pinstripe)", + "GiftDropId": 12291, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "Available until 10/25", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12291, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de0ac50d-2adb-4114-bd2e-68953b13d706,YlgQOY1VJUuGzYxoTYAqGg,jhQ23U8Pmk2K2wfBdrEWNA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowflake Blazer", + "GiftDropId": 12292, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12292, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "de19b239-3ed0-4f03-acb6-da69b5aa52ea,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zombie Vest", + "GiftDropId": 12293, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12293, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Suit", + "GiftDropId": 12295, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12295, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dedd2e98-2721-4de6-92f2-9d399f34e8fe,2jj5lxx6Gka5U6j0cWjN5w,HQnd9m0Wi0upaXRNsE5HPQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bog Monster Suit (Movie Magic Contest)", + "GiftDropId": 12296, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12296, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Hoodie (White Glow)", + "GiftDropId": 12297, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12297, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,2mwfYNx7iUGbSf6u8rRXwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Green)", + "GiftDropId": 12298, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12298, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,DJnKyNXtuEW1tbKBFscIng,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Hoodie (Pink Glow)", + "GiftDropId": 12299, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12299, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,jhPUIkf5bkinMSsqPTK3fg,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Glow Skeleton Hoodie", + "GiftDropId": 12300, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12300, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,NvnHqZ-nb068DOSrxZPYIQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Blue)", + "GiftDropId": 12301, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12301, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,s6DQxJ3gY0CG8L7JmcmRTQ,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Hoodie", + "GiftDropId": 12302, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12302, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,WRi0rK1O60qEpDPgOH5P6g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Purple)", + "GiftDropId": 12303, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12303, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,x_UvGO3yQEmprFEXhPExDg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Pink)", + "GiftDropId": 12304, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12304, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,xtjgHdnYREm_gx_tLsTpvg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cyborg Skeleton Hoodie (Orange)", + "GiftDropId": 12305, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12305, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df0e06c4-8ba6-4d7a-bfb2-3759d8fe88c7,ZY0rVNemjEuEMGMjuPNZyA,eZGiYEx6sk2PsN39RzQwlQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skeleton Hoodie (Blue Glow)", + "GiftDropId": 12306, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12306, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "df29d81e-851b-40b8-95ae-8461f702b1e0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beehive Beanie", + "GiftDropId": 12307, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12307, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dfcc5a47-5f73-496c-84b4-d44702231f7e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Wrist Guard (Jade)", + "GiftDropId": 12308, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12308, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dfcc5a47-5f73-496c-84b4-d44702231f7e,h-uMOz2Hz06ymEjtz4wuzQ,4Ooi0h3SrkObClvS2cGk9Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Samurai Wrist Guard (Red, Gold)", + "GiftDropId": 12309, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12309, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e005f9ab-47bc-4c5b-8c45-b0cc6c55ab1c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jolly Hat (Orange)", + "GiftDropId": 12310, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12310, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e005f9ab-47bc-4c5b-8c45-b0cc6c55ab1c,veF50UiWeUS8ugHSm6g_3g,7KDavHUPDUKTJI0fFzJHpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jolly Hat (Red)", + "GiftDropId": 12311, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12311, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e042433a-40a2-4758-8074-3b9d407835ec,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Romper (Pink)", + "GiftDropId": 12312, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12312, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e0c4c93d-ea3e-420f-9e8f-7890b5bd4b6f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sunflower Earrings", + "GiftDropId": 12313, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12313, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Blue)", + "GiftDropId": 12314, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12314, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,5TJPDmvEBEOkP82ZWLFqtg,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Red)", + "GiftDropId": 12315, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12315, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,8zXWUxwZHU6tThCV4p5iGg,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (White, 2019 Fantasy Contest)", + "GiftDropId": 12316, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12316, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,rCeRk8Pdl0W5M47JAQPhpw,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Green)", + "GiftDropId": 12317, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12317, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e13f6558-d49c-4314-820c-962ef48eb0c6,s2kCppLsN0uY7Hy6qjQc-g,50NUFrDxbUKmXbyAHBenvQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Royal Tabard (Black)", + "GiftDropId": 12318, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12318, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Women's Athleisure Top", + "GiftDropId": 12319, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12319, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,FbedbSonT0izB7Q6cLXCzw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orange Floral Athleisure Crop Top", + "GiftDropId": 12322, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12322, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,QF05cIuqhEeY8oNnO9CocA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Athleisure Crop Top", + "GiftDropId": 12323, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12323, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e149c559-aeb5-4609-9722-52fb6acc70e6,SoQerU2dOUu9BdRBAsEllA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Athleisure Crop Top (Purple)", + "GiftDropId": 12324, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12324, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Green)", + "GiftDropId": 12325, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12325, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,09Cg6dOq2kC2-tI5yyGSYg,eUktNKKK3kqUR8-gA3rNxA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Snowman)", + "GiftDropId": 12326, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12326, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,2lD-mjl3pk2wWv24RY2tbA,dUu7b-JFOky9c2lIVCNmcg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Red)", + "GiftDropId": 12327, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12327, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,cj9OYinX5kyzlhBUQwZKog,AKWH3_SDqkG8SRm5sauROQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Ugly Ham)", + "GiftDropId": 12328, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12328, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,NJcJw51-xkq0phT-nlJw2A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Reindeer)", + "GiftDropId": 12329, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12329, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,OrqqGMhK1UKGowFxpJi2mw,6WVXb20giEWyZbW2gWGz_w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Frost)", + "GiftDropId": 12330, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12330, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,TDcZZ2ynEU-Mgmju_qIVIg,6WVXb20giEWyZbW2gWGz_w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Vermont)", + "GiftDropId": 12331, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12331, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e15b13a7-9e9a-4b32-ba2c-0cb31ed55a8c,-tDd0gdxQkuvL2id10AweQ,6WVXb20giEWyZbW2gWGz_w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Scarf (Pine)", + "GiftDropId": 12332, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12332, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1a13235-e3b3-4b39-8e6f-e6449d4321b7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Eyepatch (Skull)", + "GiftDropId": 12333, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12333, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1a13235-e3b3-4b39-8e6f-e6449d4321b7,clFrpYWFQEmDkE14f3o_Ig,DE1C-RJkuEWIvpR0q1i42g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Eyepatch (Black)", + "GiftDropId": 12334, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12334, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Wings", + "GiftDropId": 12335, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12335, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,IgocvfGIn0u_Jq4GP2_fJg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Bat Costume Wings", + "GiftDropId": 12336, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12336, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,oO_Ij0Vsvki4Fa6qonrf7A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bat Costume Wings (Black)", + "GiftDropId": 12337, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12337, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e1f842c7-4ce5-4bda-8c78-5a75a6c544bf,Q2BNGA-idUyHDPu7m-ZSnA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Bat Wings", + "GiftDropId": 12338, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12338, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e21b9dd6-c3d1-42cb-a90d-1b60ffb826fd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Monkey Hat", + "GiftDropId": 12339, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12339, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e2620c2c-c28e-45ce-a83c-0588329b9c81,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Blue)", + "GiftDropId": 12340, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12340, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e27d33ca-8a81-4c16-a3c1-ffdbc9104d7f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pincushion Hat", + "GiftDropId": 12341, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12341, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e286863c-2967-4d00-b837-b49487b9484a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fauxhawk Hair", + "GiftDropId": 12342, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12342, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e29d044e-79fb-4280-bca9-aa1e1257e968,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Martial Arts Gi (Speed)", + "GiftDropId": 12343, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12343, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e2ObiQFqCUOdKniKL9a1EA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cupid Headpiece", + "GiftDropId": 12344, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12344, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e36bcd98-7e85-43fa-89f8-57e4ec33823a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bob with Bangs Hair", + "GiftDropId": 12345, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12345, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4888429-6f5b-4f57-9b9b-2559d3a54856,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rainbow Headphones", + "GiftDropId": 12347, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "This item may come in handy at concerts, afterparties, or in dark, forbidden lairs...", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12347, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e48955ae-50e0-4f55-93a1-611150142331,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barbarian Tunic", + "GiftDropId": 12348, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12348, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e49d5d78-157e-4bc8-b878-ff7c4963fdc4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mohawk Hair", + "GiftDropId": 12349, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12349, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Red)", + "GiftDropId": 12350, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12350, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,0724b166-9ace-46ff-a191-b13f135b00a8,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Blue)", + "GiftDropId": 12351, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12351, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,4169bfed-8403-4590-a29d-4941275ac0b6,d738ad4c-c9b5-41e6-8979-d586c964fb6c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Jacket (Pink)", + "GiftDropId": 12352, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12352, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,9bb0x4qgokyQLbt1jA25Wg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Outfit (Blue)", + "GiftDropId": 12353, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12353, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,AdJ3ExsUq0ixzaKDHK5RUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Punk Jacket", + "GiftDropId": 12354, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12354, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,G2ncsS9U8E6fyjvliFqdOw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Punk Jacket", + "GiftDropId": 12355, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12355, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,MFsWxydybE-dw3KO2hkuZA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Punk Jacket", + "GiftDropId": 12356, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12356, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,TC79rbThdkCZHGWaxk-qYA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Olive Punk Jacket", + "GiftDropId": 12357, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12357, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e4ba395e-f291-4e7b-8193-45f4422f41ce,YceWQmfB7U-R7OeBIr2Ogw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Punk Outfit (Orange)", + "GiftDropId": 12358, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12358, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e5b83dfc-b2e1-4dcb-a4ab-9d3a4c8a34ae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Wavy Hair", + "GiftDropId": 12359, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12359, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Black)", + "GiftDropId": 12360, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12360, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,2axtF2iOGkez1kfRRGUbYw,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Green)", + "GiftDropId": 12361, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12361, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e60fccda-8711-463d-b8a3-7cd5e76903b2,Chiz8maLoEGDpZOJZEtdQg,cQUquXMk5EGt0VUCuPKBgg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Conductor Jacket (Blue)", + "GiftDropId": 12362, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12362, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Grey)", + "GiftDropId": 12363, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12363, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,22dc463a-a89b-46ad-9a0d-557c742b4a80,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (White)", + "GiftDropId": 12364, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12364, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,59866578-d4e0-417b-9483-233ab108b1ac,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Cherry)", + "GiftDropId": 12365, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12365, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,e1f49b74-b071-4bd1-9c4b-af36d24d45c5,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Black)", + "GiftDropId": 12366, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12366, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ed134bee-d199-43eb-98bd-206571603f40,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Blue)", + "GiftDropId": 12367, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12367, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,ITH2OpzjP022vZ5JgxV_iQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Yellow)", + "GiftDropId": 12368, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12368, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e614df5d-3cfe-4bca-b9c2-30c267b9c94e,PMa9370LPEig_7pKwCceEQ,0dd6596c-b4ea-4d55-a219-e1f44e4a376d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knight Helmet (Green)", + "GiftDropId": 12369, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12369, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e6216087-fb37-46f1-bda4-a88c4640f339,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Hair", + "GiftDropId": 12370, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12370, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e6216087-fb37-46f1-bda4-a88c4640f339,KwhdQ1deNE6Y6jzO9vaAnQ,byvLynH8x06OQ7GNCXOVYA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jack Frost Hair (Lilac)", + "GiftDropId": 12371, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12371, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e633d56d-5121-4492-b606-40759108a00e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Pop Earrings (Orange)", + "GiftDropId": 12372, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12372, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e633d56d-5121-4492-b606-40759108a00e,6CFwXqWT50mH1v6WueFsjw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rocket Pop Earrings", + "GiftDropId": 12373, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12373, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oversized Cardigan", + "GiftDropId": 12374, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12374, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,bIQKJloWV0SEnBEtoxP_Wg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Candy Corn Cardigan", + "GiftDropId": 12375, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12375, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,kKpiR8YM8UG7xcaIgS9aXA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oversized Cardigan (Forbidden)", + "GiftDropId": 12376, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12376, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,oQspLDUDxEaiudqzXY7gbg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oversized Cardigan (Painted Egg)", + "GiftDropId": 12377, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12377, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e670df07-f9c8-42d3-abdc-48b4ca0257aa,W1LdNEXmX0m72Wr7EjJ_gQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oversized Cardigan (Winter)", + "GiftDropId": 12378, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12378, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e6d49fa3-db6c-4e5a-938c-8cd9b6f977e5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Gloves", + "GiftDropId": 12379, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12379, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e6d49fa3-db6c-4e5a-938c-8cd9b6f977e5,YzJL2s9S0Umv5XH_g5PG_g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Jester Gloves (Mardi Gras)", + "GiftDropId": 12380, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12380, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Cape", + "GiftDropId": 12381, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12381, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,2N0meQR4GEGu9Yy61C0Lwg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Cape (Western)", + "GiftDropId": 12382, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12382, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e773fddc-ad9f-408c-82c5-2637f75b3214,Q3ctsvvDDEy_S1TDiGdf6w,DobTmYhC7EigHmvYnCTm3w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Cape (Green)", + "GiftDropId": 12383, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12383, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e9913b06-58cb-4b90-bd08-981a3f19f352,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Construction Shirt (Blue)", + "GiftDropId": 12384, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12384, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e9913b06-58cb-4b90-bd08-981a3f19f352,QXtBrjnRckKJGiRtsy4AVQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science Hi-Viz Vest (Restoration)", + "GiftDropId": 12385, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12385, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest", + "GiftDropId": 12386, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12386, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,fD5vtKxBWECH54Jj4FbnUg,C8gCmBZ8RUG83vvDw_UYew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest (Time Travel Contest)", + "GiftDropId": 12387, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12387, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "E9VTiIVFPEa-OuQRto0e_Q,gy-xeYKKREaBlx9fUmuW2w,C8gCmBZ8RUG83vvDw_UYew,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Vest (Silver)", + "GiftDropId": 12388, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12388, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ea254491-116c-41c4-a9ca-1fa1fca76374,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE - Red)", + "GiftDropId": 12389, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12389, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ea254491-116c-41c4-a9ca-1fa1fca76374,1n-ekJos-EeViiz_zG4jEg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hearing Aids (BTE - Blue)", + "GiftDropId": 12390, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12390, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eacebd1a-070e-4733-a6b6-65811ef7891a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stranded Astronaut Helmet", + "GiftDropId": 12392, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12392, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Gloves (Tan)", + "GiftDropId": 12393, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12393, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,32a5e42d-2b60-40b1-a145-ed96fc91af8e,f4cea991-fc3d-4715-bf82-8a8fb60e8799,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Gloves (Blue)", + "GiftDropId": 12394, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12394, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eada710d-ea0c-473f-b9c6-23e210607b24,72a010c0-bddd-4e5d-bca6-9821d82de9a6,f4cea991-fc3d-4715-bf82-8a8fb60e8799,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Gloves (Gray)", + "GiftDropId": 12395, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12395, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eb830b12-c1b5-4796-b9cf-ccf0f0e1d4f1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Mask (Orleans)", + "GiftDropId": 12396, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12396, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eb830b12-c1b5-4796-b9cf-ccf0f0e1d4f1,mkkk2N_2-EKX3pVfk7U5aA,UQe6v62i6ESImdpc7gB_8w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mardi Gras Mask (Parade)", + "GiftDropId": 12397, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12397, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eb9611c6-bb50-41a2-93e9-7f959815a846,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dreads Long Hair", + "GiftDropId": 12398, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12398, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ebdf9a1b-46d2-4960-8da5-0cfa0c0adef2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Jersey (Buckateers)", + "GiftDropId": 12399, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12399, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ebdf9a1b-46d2-4960-8da5-0cfa0c0adef2,c3Su0qnh-UK-ymcGaUy4Uw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hockey Jersey (Goblins)", + "GiftDropId": 12400, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12400, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec474314-fd79-441d-852b-d8999274fe57,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wavy Middle Part Hair ", + "GiftDropId": 12401, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12401, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Suit (White)", + "GiftDropId": 12402, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12402, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec5255d5-edaf-4888-9fe1-e89ac0e0d300,9GhnX4Pj4E-wxbPlD8GB-g,YSrGwXybGEqaqHNCS64qOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Suit (Orange)", + "GiftDropId": 12403, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12403, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec5f5089-7154-425b-8be2-743954ea2d69,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Crystal)", + "GiftDropId": 12404, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12404, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (White)", + "GiftDropId": 12405, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12405, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,8c74ee27-3d56-401b-8a8c-7868a80770e8,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Black)", + "GiftDropId": 12406, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12406, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,cea53c7f-24a9-4e3b-80b9-fbf95738f973,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Orange)", + "GiftDropId": 12407, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12407, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec836d2a-b1b8-4566-b8eb-123ae2845956,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,9d6ac0b7-bbef-40bc-9173-effe65d7c0ff,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Helmet (Blue)", + "GiftDropId": 12408, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12408, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (White)", + "GiftDropId": 12409, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12409, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,0ecb8a2a-cffc-47db-aeda-fb0684aef1e5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Grey)", + "GiftDropId": 12411, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12411, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,1b1d08f2-12ca-43dd-a44f-ea2820b919b4,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Black)", + "GiftDropId": 12412, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12412, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,2qYs9IkE90eppx1DggNlsA,6Y43EyTpiEejGp0ODWTSjA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Moons & Stars)", + "GiftDropId": 12413, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12413, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,484b6c13-af22-4ad5-8c43-34c0de095d49,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Light Blue)", + "GiftDropId": 12414, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12414, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,51ef8d39-2b94-4f9e-9620-07b6b0a913a5,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Orange)", + "GiftDropId": 12415, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12415, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,5rLtRfNWO0qT7X-0sJkUXg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Lime)", + "GiftDropId": 12416, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12416, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,67bcca75-4ab1-4964-8688-9908c464d355,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Gold)", + "GiftDropId": 12417, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12417, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,7d8e55fe-3c34-4b4b-9753-0021f6cc6454,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Cream)", + "GiftDropId": 12418, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12418, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,8377ab96-c908-457f-9fee-b784c9a759f3,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Red)", + "GiftDropId": 12419, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12419, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Ai85jH88H06ze74VdWolfw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Pure Red)", + "GiftDropId": 12420, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12420, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,cbe29e9f-f2ac-47fb-97e1-8bad16abb89d,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Pink)", + "GiftDropId": 12421, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12421, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,dee70c38-7a99-4c2b-9181-665f1bf75aca,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Blue)", + "GiftDropId": 12422, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12422, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Dg3DxHr8GU2e190TGveXqw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Baby Pink)", + "GiftDropId": 12423, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12423, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,DiJGFIO-5Ue8rkEhvF5-Mg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Sienna)", + "GiftDropId": 12424, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12424, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,f8b0cfe8-e129-4578-8bb5-f60af5d38599,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Green)", + "GiftDropId": 12425, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12425, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,fWxn_AarpESryNA9UN8wvA,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Teal)", + "GiftDropId": 12426, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12426, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,gOP1m4pVHkmlR2k8RrcdmQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Rocks Wristbands (Ethan Bortnick)*", + "GiftDropId": 12427, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12427, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,j367nSYyg06rOMZ1GmfmFA,FS7kgc4DpkKuar24J9dW8g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Plaid)", + "GiftDropId": 12428, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12428, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,JV60jZGerUWuzQ2rRnwquQ,gSb8iLTEZ0mi3g5-jZXifQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Polka Dot)", + "GiftDropId": 12429, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12429, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,M0nOQl44DkG_GjTXzAEQCQ,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Yellow)", + "GiftDropId": 12430, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12430, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,NRjJuinZ4ki8qaEPvP84tw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Mint)", + "GiftDropId": 12431, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12431, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,sEKIlMfbJ0eED6VtcXcQrw,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Army Green)", + "GiftDropId": 12432, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12432, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Sg5yKkqJEEulQeUvRhFgJg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Prussian Blue)", + "GiftDropId": 12433, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12433, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,x3kGXCD0UEWkjfXqu_kuxg,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Purple)", + "GiftDropId": 12434, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12434, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ecc1dbe6-ca06-4564-b2a6-30956194d1e9,Z2L6AqDdcUqxiN1mVw-X9g,0b2395e1-ebcc-47e9-aaf1-faf9e9cec4cd,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wristbands (Light Purple)", + "GiftDropId": 12435, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12435, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Cuffs (Black)", + "GiftDropId": 12436, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12436, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,556141f7-6fbc-4065-9faa-8d8240a93d7f,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Cuffs (Red)", + "GiftDropId": 12437, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12437, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,d81d0b62-e052-46c2-9252-4bc5fb219f53,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Cuffs (Gold)", + "GiftDropId": 12438, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12438, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eceb7d49-be41-4228-86a9-2973d62e7135,xGmnUGF-Ck-jP43r8tVVjg,7a7bc314-4ffd-4ac8-9ed6-6ca73589c132,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pirate Captain Cuffs (Green)", + "GiftDropId": 12439, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12439, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ed4439c6-edad-4239-934f-79f9cc816c0e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banjo", + "GiftDropId": 12440, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12440, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ed4439c6-edad-4239-934f-79f9cc816c0e,7ykIpgU8Tkmmq_zzpjTVrg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banjo (Black)", + "GiftDropId": 12441, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12441, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ed4439c6-edad-4239-934f-79f9cc816c0e,iqYc9qtbZEig8jl_ZqKe6w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Banjo (Red)", + "GiftDropId": 12442, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12442, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ed695ac2-ff70-4ebe-b1db-18d71a4efdd1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowgirl Vest", + "GiftDropId": 12443, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12443, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eda29bce-5a07-4439-a2a7-cafa11e2ed62,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paintball Belt", + "GiftDropId": 12444, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12444, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "edc7888c-dc42-48ab-8815-884d227760af,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Short Locs Hair", + "GiftDropId": 12445, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12445, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robo Logo Cap (Blue)", + "GiftDropId": 12446, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12446, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ee9a7c8a-7383-4a09-b44c-474b66f9008a,W-xMu8n2CUuHSXfHvEL4yw,-apO3Y7om0GKhC4V_hVYdQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Robo Logo Cap (Pink)", + "GiftDropId": 12447, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12447, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bear Hug Hat (White)", + "GiftDropId": 12448, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12448, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,9nPWmpM4mUmEpHfthqYeng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Honeybear Hug Hat", + "GiftDropId": 12449, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12449, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,OnZujqqU_UqwxmznvBBMfg,_zrnGn1ErEWR8WqrZmKZsA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bear Hug Hat (Holiday Panda)", + "GiftDropId": 12450, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12450, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef7771eb-c5f3-44fd-8c27-f581b035ef10,XKoxnTXYGkSUu52nVS9dnA,TFOAk7kwh0uUgtsyDNxMuQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bear Hug Hat (Brown)", + "GiftDropId": 12451, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12451, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Blue)", + "GiftDropId": 12452, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12452, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,_psc7WCgOk2JzRQwuFAqNw,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (White)", + "GiftDropId": 12453, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12453, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,7_n11PF4-0KqTZ9az23hqg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Black)", + "GiftDropId": 12454, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12454, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,8xqL--ghKUunlS0r4ugCgg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mushroom Cap", + "GiftDropId": 12455, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12455, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,JShcoWWPz0297HeEUJbDCQ,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Red)", + "GiftDropId": 12456, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12456, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,TKbjEeTWfUyA1u4laoULMg,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Green)", + "GiftDropId": 12457, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12457, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef84cb35-5e25-4aa6-82c9-17f01a5040c7,WeP_tPjUNUuGojXrVBOAIA,FWL8ZeMe9EerdB0_Fya3AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beret (Purple)", + "GiftDropId": 12458, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12458, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Red)", + "GiftDropId": 12459, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12459, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,3bqY_T4_HEy406HcXrfLuA,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Blue)", + "GiftDropId": 12460, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12460, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,aaaG7Fg8fky2dkrwVsA30g,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Yellow)", + "GiftDropId": 12461, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12461, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,d0D2htQZvEKajd0oAesNow", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (White)", + "GiftDropId": 12462, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12462, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,I4lNZy7lR0uyUN5Vk3fabA,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Pink)", + "GiftDropId": 12463, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12463, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,SMeMLRUF-UWrOcXYJzgScw,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Black)", + "GiftDropId": 12464, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12464, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,W7E9KfRTLEK-1EZTNKM3Yw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Space)", + "GiftDropId": 12465, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12465, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ef937765-d827-45c1-babe-5bcf6d68c08f,WkI_v-Sua0WlhmMf8R4aGA,MjaMSFJlsUisPzveOPrH4w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Vest (Green)", + "GiftDropId": 12466, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12466, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efac28ae-ff44-4322-9bc0-61eaaef95399,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Dragon)", + "GiftDropId": 12467, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12467, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Sweater Scarf", + "GiftDropId": 12468, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12468, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,0JVWqxXYoUqgI-5ORIr0bA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Sweater Scarf", + "GiftDropId": 12469, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12469, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,LVuUiGBtn0mp4Wfs-2F5EQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweater Scarf (Pink)", + "GiftDropId": 12470, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12470, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,R8VYB2EGPkmQX4dbmGLuRA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweater Scarf (Yellow)", + "GiftDropId": 12471, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12471, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "efc10aa4-a203-4465-a2da-eb4590ada8ef,wCCq14_wc06hkmjg6TTFxw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweater Scarf (Green)", + "GiftDropId": 12472, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12472, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Flamingo)", + "GiftDropId": 12473, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12473, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,9WpjdWJbhkCoEgDljqZkdw,Uyn3QOl1zkGR2_OUOhNWjQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Rubber Ducky)", + "GiftDropId": 12474, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12474, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,hM0OmxjWLESbsJ-M0Z3QvQ,qZzkrGXpPkGq_nnGLZorwA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Parrot)", + "GiftDropId": 12475, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12475, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "EJFGAW-TnUCaeD59parEHg,k3dbqP5z30KU37MVPpsEPQ,GtoHkTpyA0iGIHsxphwivg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Dino)", + "GiftDropId": 12476, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12476, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Blue)", + "GiftDropId": 12477, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12477, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,1FcyrVGyGEC9dmOq_51nFQ,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Green)", + "GiftDropId": 12478, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12478, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,LDjFJtM-WkeYhtwA7cyDOg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Pink)", + "GiftDropId": 12479, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12479, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,N9CBuYaMtUOrCks5UcOycg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Red)", + "GiftDropId": 12480, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12480, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,xpkEQ6yjhU-WfFPSjvPdHg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Orange)", + "GiftDropId": 12481, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12481, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "eS_or4AnMka9M_bD7YN28g,zaSTWOUy_k6cnoVVYzypWg,ZtCqMnFTQUWv2h0MfZ4m6A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Glove (Teal)", + "GiftDropId": 12482, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12482, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Black)", + "GiftDropId": 12483, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12483, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,0svDrGn2NkmhUjC1VJUgRg,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Green)", + "GiftDropId": 12484, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12484, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,Aq4fjEW5gEyzetXMoG2tdQ,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (White)", + "GiftDropId": 12485, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12485, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,SmRcrycMZ0qYNsHuQQOORA,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Blue)", + "GiftDropId": 12486, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12486, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "exQz9Zr3HEyOR9nDDrimlQ,z-yaXP9ImkysLOGuCQiblw,S21TW8NwMEWLV9zqHxWfFw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Plastic Sunglasses (Red)", + "GiftDropId": 12487, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12487, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f09be0ec-19eb-4443-843c-b387b6731e48,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "He-Man Hair", + "GiftDropId": 12488, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12488, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f159e878-7563-46db-b59d-c838612a0a78,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teela Tiara", + "GiftDropId": 12490, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12490, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Fall)", + "GiftDropId": 12491, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12491, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,M16XTvLPKUWRpiAspgsatQ,tmaPvkx3BUOZ3nsl2E0oRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Summer)", + "GiftDropId": 12492, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12492, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,OxO9ivoKB0e-fNIEk33Erw,tmaPvkx3BUOZ3nsl2E0oRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Spring)", + "GiftDropId": 12493, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12493, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f15d81c8-3d19-4bbe-87c0-1144aaa4138a,rXhNZtcZCU21dwEHOCgWOA,tmaPvkx3BUOZ3nsl2E0oRw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Horns (Winter)", + "GiftDropId": 12494, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12494, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f17a2f9e-1eab-44e8-b10a-1f53c5d0778c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Hair", + "GiftDropId": 12495, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12495, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Helmet (White)", + "GiftDropId": 12496, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12496, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f218e2de-46fd-45b9-9e0e-670b6bb905e7,JFalLDUvm0aMm3wh1UVfVg,iQjkS1xYP0S63ltvKpkz5g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Astronaut Helmet (Orange)", + "GiftDropId": 12497, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12497, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f23e86eb-8b59-4b32-a72a-5d382568e399,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Vest", + "GiftDropId": 12498, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12498, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f23e86eb-8b59-4b32-a72a-5d382568e399,wuCrGxBRQUa5BLwx1nASPw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bard's Vest (Solstice Contest)", + "GiftDropId": 12499, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12499, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Hat (Tan)", + "GiftDropId": 12500, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12500, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f277af6a-0807-4716-8948-1bee236ffb74,d0bb468c-b78f-4e80-916d-65fec3ec0010,0272eb19-fc0e-4ad6-8db9-cc0cda2528b0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Hat (Green)", + "GiftDropId": 12501, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12501, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutu (Pink)", + "GiftDropId": 12502, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12502, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,6fp7nDdMvU6Ig-EmvjMpIA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Tutu (Mint)", + "GiftDropId": 12503, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12503, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,lBkOSQNDZUOvoknntnEMew", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Tutu (Blue)", + "GiftDropId": 12504, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12504, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,sq5Qv4nVAUqzhMdB7U2MVQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Butterfly Tutu", + "GiftDropId": 12505, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12505, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f28aa59c-d6d7-432e-9863-f894dc0e8e32,UjSxxUK7z0GGdjvI_NsJ3Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Tutu (Monarch)", + "GiftDropId": 12506, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12506, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f2c1c5e3-b201-4d34-9ce6-3082ff7e5d42,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Belt", + "GiftDropId": 12507, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12507, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f2c1c5e3-b201-4d34-9ce6-3082ff7e5d42,szDKGCS30UCwXJJcVocFDQ,3v_zUVDTUku_iEf-olDk1w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bounty Hunter Belt (Green)", + "GiftDropId": 12508, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12508, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f2db0ec1-e536-4218-8385-dc6913941880,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cosmic Hero Gauntlet", + "GiftDropId": 12509, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12509, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Yellow)", + "GiftDropId": 12510, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12510, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,27680277-aec1-41be-a476-9f51cf775580,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Purple)", + "GiftDropId": 12511, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12511, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,5a96ac4d-03c3-4214-9dcb-c2044ff28f2e,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (Grey)", + "GiftDropId": 12512, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12512, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f41653f9-ae02-443c-aaf4-1c6f4e49035d,cf515c87-3c0a-4443-9f63-5ea1bdbaa61a,3248a3ec-50d1-4c0a-96ae-25eb9d8ed622,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Swimsuit (White)", + "GiftDropId": 12513, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12513, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f47f81e7-fcdd-4687-9b99-013147bef30f,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Safari Belt Sash", + "GiftDropId": 12514, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12514, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f4f372b8-33a1-462e-a9f7-8a0e85b2c0d7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mystic Mantle", + "GiftDropId": 12515, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12515, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Red)", + "GiftDropId": 12516, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12516, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,5b58d879-2bc4-47ed-a996-1af2ace16425,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Green)", + "GiftDropId": 12517, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12517, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d320ad9b-ba5c-45ea-b2b8-0d3e409a9db1,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Black)", + "GiftDropId": 12518, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12518, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,d61711fd-589a-4669-b991-9408a58fffd9,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Cream)", + "GiftDropId": 12519, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12519, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,MIfCkcrFOEasJqfDmxThdw,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Purple)", + "GiftDropId": 12520, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12520, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51a7ed5-52ea-485f-a430-303697f6fec9,oJFfs62tR0WVRry2Smt8yA,3d971439-41d1-43a2-8434-704f9ec8d906,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belted Dress (Light Blue)", + "GiftDropId": 12521, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12521, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f51abeae-7c5d-4065-aa2a-b2e7025b3fcd,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fae Tunic (Hidden Worlds Contest)", + "GiftDropId": 12522, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12522, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Purple)", + "GiftDropId": 12523, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12523, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,a1c51d1e-1d5f-4f8a-bc0f-6a20eddfe58a,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Red)", + "GiftDropId": 12524, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12524, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f527ffaf-da03-4519-82ed-46a9cb981dc3,c5884778-a87f-4612-9717-86fbb65d440f,e0186718-4a18-434b-b96e-0c9c912f0d1f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Square Glasses (Blue)", + "GiftDropId": 12525, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12525, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5b01307-e495-469c-afac-c10f375cffb0,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yoga Mat", + "GiftDropId": 12526, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12526, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5b01307-e495-469c-afac-c10f375cffb0,lIURXMnmn0GcYFUVSXHzWA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yoga Mat (Boogie)", + "GiftDropId": 12527, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12527, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Blue, Gold)", + "GiftDropId": 12528, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12528, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,2738ab5f-8c94-46b3-bac6-4a8111c41c21,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (Pink, Black, Pink)", + "GiftDropId": 12529, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12529, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,36e63797-5a42-4779-a5cc-ef5c2e7d17d4,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Black, Silver)", + "GiftDropId": 12530, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12530, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,70112887-dc8d-49d5-96ed-0845204e0b58,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (Black, Black, Gold)", + "GiftDropId": 12531, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12531, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,f5403c89-9769-479b-8a05-c71607f9b189,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (White, Black, Gold)", + "GiftDropId": 12532, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12532, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5c9743f-e77c-42f2-ba63-9843342cbf8e,hhs9GY3XZkWb-8TXODvo6A,a4e51b6b-fdfd-47dc-9d0e-f26f383e03e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Captain Hat (High Seas Contest)", + "GiftDropId": 12533, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12533, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f60e093f-33be-4527-b827-060adc77b1f4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Cap (Tan)", + "GiftDropId": 12534, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12534, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f60e093f-33be-4527-b827-060adc77b1f4,0d2830e7-8eb0-4fa3-99bc-7c80f01dd991,464fcf20-361f-4dc9-b074-150c3bc27523,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scout Cap (Blue)", + "GiftDropId": 12535, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12535, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f61eb9cc-c0d3-4b45-a7b7-b6c69e5e6db4,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Panda Hat", + "GiftDropId": 12536, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12536, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f641d4f4-e197-4cf4-b477-89069797967d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Edgy Earrings (Gauge)", + "GiftDropId": 12537, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12537, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Frosty)", + "GiftDropId": 12538, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12538, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,6JihVI8pm0eJ-wDWuXm0sg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Hawk)", + "GiftDropId": 12539, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12539, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,g14i4cTzkUu6RCOELBZEZA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raven Winged Headband", + "GiftDropId": 12540, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12540, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,JUOrYcAd7U-ChkFZRiBeKA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Fire)", + "GiftDropId": 12541, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12541, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,wwT8NdC-bk-aAWLoJvef5A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Ice)", + "GiftDropId": 12542, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12542, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f67e47de-64de-4291-8d2e-5e32d6cfa5b1,yxBqgXjlVEeRUOC_6iv77g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Headband (Pink)", + "GiftDropId": 12543, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12543, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f684d86f-4a75-4a9a-bc0a-cf58f36c91c5,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Shades (Yellow)", + "GiftDropId": 12544, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12544, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Blue)", + "GiftDropId": 12545, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12545, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,GQSpXmD0B02_gwzpq6StFA,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Red)", + "GiftDropId": 12546, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12546, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,YvPeCbQS2UOcLjPfoIML_g,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Yellow)", + "GiftDropId": 12547, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12547, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6caeb89-dbb4-4471-92fe-100bf48cd5ce,zGOD45zNAk2i6P_zPsNPfg,ORmS9HkfoUeFuO4RhqcW7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Server Dress (Green)", + "GiftDropId": 12548, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12548, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6eee46c-084b-473e-954b-a0c8aa99a02d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Amulet of Elseware* (Cursed)", + "GiftDropId": 12549, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "A mysterious and powerful object from an unknown place. No one knows what it does yet but it seems to respond when worn... (Catalyst)", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12549, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f6eee46c-084b-473e-954b-a0c8aa99a02d,qbEYPChG5EmnFDUfzwAakg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Amulet of Elseware (Cleansed)*", + "GiftDropId": 12550, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12550, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Shirt (Tan)", + "GiftDropId": 12551, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12551, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,4c845dbb-26c3-48a1-b562-e28a7416b154,6ce21c65-f4e9-41ac-be94-8eb1a08d5c76,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Shirt (Blue)", + "GiftDropId": 12552, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12552, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f76b709c-b173-426e-81f2-279a67d2fde1,96e2b29e-e553-40f1-9eb6-8a9f7e64da39,6ce21c65-f4e9-41ac-be94-8eb1a08d5c76,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Golfer Shirt (Grey)", + "GiftDropId": 12553, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12553, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f7764314-c02c-4b46-9c56-8c60351d9b14,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gentlelady Gloves", + "GiftDropId": 12554, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12554, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Red)", + "GiftDropId": 12555, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12555, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,3bqY_T4_HEy406HcXrfLuA,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Blue)", + "GiftDropId": 12556, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12556, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,aaaG7Fg8fky2dkrwVsA30g,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Yellow)", + "GiftDropId": 12557, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12557, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,GSO7t0cNs0SIbU-jQjnX5g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (White)", + "GiftDropId": 12558, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12558, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,I4lNZy7lR0uyUN5Vk3fabA,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Pink)", + "GiftDropId": 12559, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12559, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,SMeMLRUF-UWrOcXYJzgScw,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Black)", + "GiftDropId": 12560, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12560, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f833d1a7-d667-4baf-b1ff-ac82ea87eb7d,WkI_v-Sua0WlhmMf8R4aGA,m-fk_L_e4EiOMUZ_UUjMjg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Trooper Helmet (Green)", + "GiftDropId": 12561, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12561, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f8514fc6-93f3-4063-bafc-378ddf454836,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Edgy Earrings (Dangle)", + "GiftDropId": 12562, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12562, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f90773c6-d0f0-417a-9af5-183d1e5a657f,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Glowstick Necklace", + "GiftDropId": 12563, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12563, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f9dd08f8-16d3-4c39-af4f-89f7bb6e80d3,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Undercut Short Hair", + "GiftDropId": 12564, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12564, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Bracer ", + "GiftDropId": 12565, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12565, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,nNJ8Tkg57k6pTS_0HSLkUQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Bracers (Black)", + "GiftDropId": 12566, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12566, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,oCeStQfVkE2ZwCcQjtV1bg,r94RX2106E2TRK2wQ-u8-w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Bracer (Green)", + "GiftDropId": 12567, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12567, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa0e701c-5e80-46f4-8817-6e2dbf904734,VmHQJIt7HkO4INJEXCBbNA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Bracer (Pink)", + "GiftDropId": 12568, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12568, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Green)", + "GiftDropId": 12569, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12569, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,8kAqQHAgnUypHdxnwVSQwQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Yellow)", + "GiftDropId": 12571, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12571, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,l1cBXE49rkKTDEl1NvmWog", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Purple)", + "GiftDropId": 12573, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12573, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,pUHlnnttXUmqP-9Rab8YaA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Orange)", + "GiftDropId": 12576, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12576, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fa68bdae-5b0a-4544-a4eb-84b051d4b913,S5IPVluRPkWzapjf7Bdtxg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Secret Mask (Blue)", + "GiftDropId": 12577, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12577, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fb2a0e86-3363-4579-9f18-f41138dc85ba,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wolf Amulet", + "GiftDropId": 12578, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12578, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Uniform (Tan)", + "GiftDropId": 12579, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12579, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fb907eb2-91c8-45ff-84a5-462bb86ea7de,b415fe60-3e9d-4f4d-a53a-ca15eac6af7d,d21e1b6f-9c9e-42b4-bad5-201ec43161e9,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ranger Uniform (Green)", + "GiftDropId": 12580, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12580, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fbdca48d-4ae6-41ad-8c33-b70a9e33fd77,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Action Hair", + "GiftDropId": 12581, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12581, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fbf74c15-4b42-4cd4-94dd-d0e86f11541b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Heart Antennae", + "GiftDropId": 12582, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12582, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat", + "GiftDropId": 12583, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12583, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,4v1-TIIgnU-sg5ROppnEPQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat (Black)", + "GiftDropId": 12584, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12584, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,AvIuVibXj0u7UzWFh90_LA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Chicken Hat", + "GiftDropId": 12585, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12585, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,fF9qwnew3Eao2gF0xcOqrw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat (Yellow)", + "GiftDropId": 12586, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12586, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc6a560a-5ff1-46f6-a593-320c50ee397e,wl3nqp4FsU2wqEkYFqv3_Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chicken Hat (Brown)", + "GiftDropId": 12587, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12587, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Butterfly Wings (Cool Mint)", + "GiftDropId": 12588, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12588, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc96ea5d-b49b-479b-a963-92f1eab44b2c,opDwtb3OdESsA2Zpfx7luQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moth Wings (Pepper)", + "GiftDropId": 12589, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12589, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fcfcaf63-deb4-45f7-b711-c051c9ea45cb,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Top Bun Hair", + "GiftDropId": 12590, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12590, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mermaid Dress", + "GiftDropId": 12591, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12591, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat - Pride (Rainbow Pride)", + "GiftDropId": 12592, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12592, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,6547pqf6vUm2L89AG6D91A,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Raven)", + "GiftDropId": 12593, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12593, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,knXPidb-Rkayfc3kSHfZeQ,1yMyo6oTjU-VAygoeWaohQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat - Pride (Trans Pride)", + "GiftDropId": 12594, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12594, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,nn86ATWxekWdIGlPePPgGQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Vintage)", + "GiftDropId": 12595, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12595, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,oxi26T5a4U6L73pF-Pgrhg,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Grackle)", + "GiftDropId": 12596, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12596, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,Rf7CDh2bg0-HdG5n7phGaw,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Thornbill)", + "GiftDropId": 12597, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12597, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe15ca53-c5b8-4acf-9309-ff3f4e610fc9,tXhgU1o_wkaNQ-7P3KXidQ,njEWOjNEQEWCEqmytodpow,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winged Hat (Kingfisher)", + "GiftDropId": 12598, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12598, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe2721b5-16c8-4d9d-bca5-0233ab008fbb,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "NBA Wristband", + "GiftDropId": 12600, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12600, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Coat (White)", + "GiftDropId": 12601, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12601, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,KTidYfH0ckWxJGs5qzUBTQ,w07bkcUoQEiNJTVDeSywzQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Scientist Coat (Blue)", + "GiftDropId": 12602, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12602, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fe34adaf-47d3-435b-b2fd-b2fee05fceae,X0nzvhAtgEKqzjQPb9d3qQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Science PPE Coat (Restoration)", + "GiftDropId": 12603, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12603, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "feb8b50b-d3da-4e45-b4d0-69aeeb5cfeb3,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headdress (White)", + "GiftDropId": 12605, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12605, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "feb8b50b-d3da-4e45-b4d0-69aeeb5cfeb3,1WBsT99QM0anps6ZoWE59Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headdress (Red)", + "GiftDropId": 12606, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12606, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Blue)", + "GiftDropId": 12608, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12608, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,8c7b09f2-6213-4ef9-87ab-a2df72d07a22,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Red)", + "GiftDropId": 12609, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12609, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff15e25d-d467-47a8-9ecc-e415d5acb90c,rzUd1IMTKUmW0HeMPSIOBQ,0ec6628c-a106-4452-af82-105a3e3a9f2e,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boxing Shirt (Green)", + "GiftDropId": 12610, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12610, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Coat (White)", + "GiftDropId": 12611, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12611, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,PR5dh2jf2kqGLO0lXgA69A,VDn1hO6ahky0GDJt5dRmyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chef Coat (Black)", + "GiftDropId": 12612, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12612, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Green)", + "GiftDropId": 12613, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12613, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,8c74ee27-3d56-401b-8a8c-7868a80770e8,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Black)", + "GiftDropId": 12614, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12614, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,cea53c7f-24a9-4e3b-80b9-fbf95738f973,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Orange)", + "GiftDropId": 12615, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12615, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff7e6d41-5c27-4516-930c-ad0e9a23cce2,e37b07d1-6b9d-49b9-94ca-1c728e228cfe,435eba0d-d8f9-43cc-91aa-2959d63c6fa7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fighter Pilot Uniform (Blue)", + "GiftDropId": 12616, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12616, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor", + "GiftDropId": 12617, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12617, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,JY4zXsTbX0W1sU6g1o4kuw,Y-XQzHOjIkC_-it1j9m9jA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor (Green)", + "GiftDropId": 12618, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12618, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,trFPTiehdUm2Q3bdvBQr7Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor (Pink)", + "GiftDropId": 12619, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12619, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffad1160-8383-4b4a-a5b9-223476b49b92,W_AVltwf7kSzmftSsGdijw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hero Guy Armor (Black)", + "GiftDropId": 12620, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12620, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ffea7a65-613f-4835-921e-6dd15f357b7e,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Long Bangs Hair", + "GiftDropId": 12621, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12621, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "FHKZvPFMLkO8iAIPPQzu1A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Hearts)", + "GiftDropId": 12622, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12622, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "FHKZvPFMLkO8iAIPPQzu1A,K17dIz_TRUq5D50NBfLjyw,3drRcfyKkku0qGwCy16m9Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Shamrock)", + "GiftDropId": 12623, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12623, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "FHKZvPFMLkO8iAIPPQzu1A,PEGqjoxP6E2yRx_A-HphrQ,I_OF1c0YWESMwxJr9sXYOA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Swing Dress (Candy Cane)", + "GiftDropId": 12624, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12624, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "GAWURQSqrEW4G5slrPMgZA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dude Sweater", + "GiftDropId": 12625, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12625, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper", + "GiftDropId": 12626, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12626, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,AAbGHOOitUu9enweOXbrkw,fXnd_COSzUeznwe7P4ZYRg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper (Time Travel Contest)", + "GiftDropId": 12627, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12627, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "gwLiwmqBIk6glFxvaTzxeA,Jy2TN1KBTEeoVehy_x32Ng,fXnd_COSzUeznwe7P4ZYRg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Topper (Silver)", + "GiftDropId": 12628, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12628, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "h_To9WQYdEusYQxlbMmMmQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dracula Cape", + "GiftDropId": 12629, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12629, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Fuchsia)", + "GiftDropId": 12630, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12630, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,EDLxuGjEVEGdOPXDqyN-xA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Red)", + "GiftDropId": 12631, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12631, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,f0pjsV0XMUWoE_z2kqOlSA,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Orange)", + "GiftDropId": 12632, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12632, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,kLv_wsbbGUmlfIUO1QLYLw,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Green)", + "GiftDropId": 12633, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12633, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hT7nSD7Ts06F_1SNlOMLwg,lhfOKGDAgEKWucerCmH7Fg,mG60EPIQIkaJNgOkonVmZg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Tiara (Teal)", + "GiftDropId": 12634, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12634, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hTHM3Kjqy0ykqBD8UCRQJw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thrilling Jacket (Red)", + "GiftDropId": 12635, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12635, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hTHM3Kjqy0ykqBD8UCRQJw,7-lAnMa7M0u0n0nmeIINgw,6GfSjqIb4ECCvIPC8vO8_A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thrilling Jacket (Blue)", + "GiftDropId": 12636, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12636, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "hTHM3Kjqy0ykqBD8UCRQJw,8HR0DwDl2ECtHf5aEkqSHQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Thriller Suit (Orange)", + "GiftDropId": 12637, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12637, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Red)", + "GiftDropId": 12638, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12638, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,MxnAq_XOw0uTzQ8IIxqb_Q,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Yellow)", + "GiftDropId": 12639, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12639, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,oKxmH-1s2EyIDkZoOQSQQw,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Green)", + "GiftDropId": 12640, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12640, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iai6P7dDTUq8S4hqQmY1YA,XFCpIdeDXUqeYCIgh4fGtg,MBuxBAIkpkWI26d-arAKQg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Uniform (Blue)", + "GiftDropId": 12641, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12641, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Satchel", + "GiftDropId": 12642, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12642, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "iBQ-v6xaqkipUlfzkSHEeQ,bH3dgwnwt0KEw8oCDVIcEQ,erPtGSgq_kmqfeSlZWw4VA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Satchel (Silver)", + "GiftDropId": 12643, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12643, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ilDgmey2ZUWlFiuEAN7YoQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Gloves", + "GiftDropId": 12644, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12644, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ilDgmey2ZUWlFiuEAN7YoQ,K9wPZ9LHo02GPMtf02rANQ,U7jMLMX4_kKIy1K9IcHOXA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Gloves (Lilac)", + "GiftDropId": 12645, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12645, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Belt (Brown)", + "GiftDropId": 12646, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12646, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ImwG0snB9ECc_gqRRBoz6A,lAjUeUtTLU2-3bG2OXBukg,LFB_YqTym0-tQmUIj-YcYA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Belt (Black)", + "GiftDropId": 12647, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12647, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "J6IQt4G1zUeN8v9Wn50BUw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tied Headband (YouTuber, SoulFox)", + "GiftDropId": 12648, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12648, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Necklace (Turquoise)", + "GiftDropId": 12649, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12649, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,0S7Nqm2kv0qMDTh-5Wy0MQ,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Necklace (Ruby)", + "GiftDropId": 12650, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12650, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,F7luQ18ZXEaITFiCqqwkpg,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Necklace (Topaz)", + "GiftDropId": 12651, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12651, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,lvDIOeSI10SNxnCO_M_9zA,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Necklace (Diamond)", + "GiftDropId": 12652, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12652, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,OfenZaa1-UGdQ8YVOrXjzw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Necklace (Emerald)", + "GiftDropId": 12653, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12653, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,okpg4ftsak-wc8Zu83uytw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Necklace (Opal)", + "GiftDropId": 12654, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12654, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,poqpmOloPUKotHH9p0YAyw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Necklace (Amethyst)", + "GiftDropId": 12655, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12655, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jiBzrzDPkkuL6DqIFKpcCw,WOxMXWKGrUWhnNInttZ-Zw,StxMBEprVkqMa_IoDG-Q9A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Necklace (Amber)", + "GiftDropId": 12656, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12656, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Orange)", + "GiftDropId": 12657, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12657, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,8iZO162KNUiMC8l_z3OC_A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Purple)", + "GiftDropId": 12658, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12658, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,D-SngK7hhkOpoZ2aMWv9EA,mkDVc0Mz4kmuLZ7powBHpQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Hearts)", + "GiftDropId": 12659, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12659, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,f_c50saStkaGJuhLjJ9lfA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Black)", + "GiftDropId": 12660, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12660, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,FUP4iRnoc0ikNmjrFD06lg,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Pink)", + "GiftDropId": 12661, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12661, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,GmS0wKwzVEqdf3NoTMHG5A,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Teal, Polka Dot)", + "GiftDropId": 12662, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12662, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,-Iqmonry4EKoqAULCKzRPA,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (White, Polka Dot)", + "GiftDropId": 12663, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12663, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JTrfBXhIT02o2-ssP94zew,ZNKGkou_gU-1cxBFy7pDKw,3DdSzSqV1UG5AtPr8ro3Kg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Big Head Bow (Red, Polka Dot)", + "GiftDropId": 12664, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12664, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "jUpFzO5MPEGTbS-E0a99Nw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dracula Jacket", + "GiftDropId": 12665, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12665, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat", + "GiftDropId": 12666, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12666, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,vuSwk04zykCe3ANKN838OA,Uhw5NBQy-EOIiCWiZFiL7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat (Time Travel Contest)", + "GiftDropId": 12667, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12667, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWanxvOHyESg9F_HlmTOfA,ZUMIXcyOpEGiHgslbHQbwA,Uhw5NBQy-EOIiCWiZFiL7g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Hat (Silver)", + "GiftDropId": 12668, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12668, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Jacket (Blue)", + "GiftDropId": 12669, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12669, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,9QG6qp5FBU-u0-JK-yMMqA,x10FeRBsQU2DIIpG8XIlwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Jacket (Red)", + "GiftDropId": 12670, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12670, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,CavRDqIlmUeTZBtCLn1hZQ,x10FeRBsQU2DIIpG8XIlwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Jacket (Midnight)", + "GiftDropId": 12671, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12671, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "JWfs9IiQs0Weu8MmyGpqLQ,Z8Bfk0MTb0evZehvvgzuBA,x10FeRBsQU2DIIpG8XIlwg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Vampire Hunter Jacket (Leather)", + "GiftDropId": 12672, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12672, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "kghEf_iMKUSxPO-h5iRhSQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Classic Glasses", + "GiftDropId": 12673, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12673, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "KNZ1DvCLC0WHyH4opYAXtw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Space Visor (Creators Contest 2)", + "GiftDropId": 12674, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12674, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "KPmC_wyX_ECe7fdKwoLMGg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Cap", + "GiftDropId": 12676, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12676, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "KPmC_wyX_ECe7fdKwoLMGg,FaWMLkJJgEKFIO493fzGxg,yzL0M_N5Q0eAa8IxACHPAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Cap (Maker Pen Class)", + "GiftDropId": 12677, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12677, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "KPmC_wyX_ECe7fdKwoLMGg,nCPVMrWXGkeeIN-969xzuQ,yzL0M_N5Q0eAa8IxACHPAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Cap (Video Creation Class)", + "GiftDropId": 12678, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12678, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset", + "GiftDropId": 12679, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12679, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,A6VnGtpY9Ey0atf3zaLo3g,GJRG8sCM7kSGfUd9gLwpgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset (Time Travel Contest)", + "GiftDropId": 12680, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12680, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "LK8jt9zCuUGwLRccgOOvjA,rsUfUnTwbU6zrjrHWps1yA,GJRG8sCM7kSGfUd9gLwpgQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Corset (Silver)", + "GiftDropId": 12681, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12681, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Lli8-aqt1EmCmyXwBRQaYA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mummy Head Wrap", + "GiftDropId": 12682, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12682, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "m5Plrduzr0yj_9mTn1x3Vw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "1988 Jacket (Promo Room Drop)", + "GiftDropId": 12683, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12683, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Cap (Bachelor)", + "GiftDropId": 12684, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12684, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,gDH1WmW5rk2RdY4wJYYZow,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Cap (Master)", + "GiftDropId": 12685, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12685, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,GK3yolCNlEm3B_5DtHkE8w,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Cap (Level 3)", + "GiftDropId": 12686, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12686, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,L333w3dfIEWDbtt1Yn1gBg,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Cap (Level 2)", + "GiftDropId": 12687, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12687, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,U2ZbHn8WJEySUXVpzAY6ig,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Cap (Level 1)", + "GiftDropId": 12688, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12688, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "M9weaekvIUimiJSVJqZl-w,wHJnbDOo8ESmUbQDr0k31w,GV8z2dlqGEqIAYaGrF1ZYQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Cap (Doctor)", + "GiftDropId": 12689, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12689, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "mfFLpKQRE0anhrmeUvW0bA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Laurel Crown (Promo Room Drop)", + "GiftDropId": 12690, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12690, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "mfFLpKQRE0anhrmeUvW0bA,p5TStfnDXk-EY7k6UdHxnA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Midnight Gala Crown", + "GiftDropId": 12691, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12691, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Blue)", + "GiftDropId": 12692, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12692, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,dYPaOkwy3EGAfvl8RyN4pw,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Pink)", + "GiftDropId": 12693, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12693, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,FE7_gQNBt0CXzMN6di5HWA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Red)", + "GiftDropId": 12694, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12694, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,hYu9itGe1Ee5Neanhj9VtQ,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Orange)", + "GiftDropId": 12695, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12695, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,kTP3xKhzBkuQF3SqvmYFKA,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Green)", + "GiftDropId": 12696, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12696, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJkDYDH510izAab13ZfXQw,VQjkyb5aoEKHKo_eZsq9ug,2UNd6eViFUO359xjSiuu2A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Skirt (Teal)", + "GiftDropId": 12697, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12697, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJQiQ3LATEOymxCC8wfSjw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Gown (Master)", + "GiftDropId": 12698, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12698, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "MJQiQ3LATEOymxCC8wfSjw,L333w3dfIEWDbtt1Yn1gBg,lSDrKR69rkSFULy9GA__1w,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Gown (Level 2)", + "GiftDropId": 12699, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12699, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Jacket", + "GiftDropId": 12700, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12700, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "O8VqC11xNkSKpDh6Omp_0w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Sash (Doctor)", + "GiftDropId": 12701, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12701, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "O8VqC11xNkSKpDh6Omp_0w,mvj5RDTuh0qoql0OyBFI9g,YQQamy-tQkCkpZPXKepUrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Sash (Level 3)", + "GiftDropId": 12702, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12702, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oRUh266ohkWQil14uxcEdQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mummy Shroud", + "GiftDropId": 12703, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12703, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "OTnfT-4NQU6Gd_iVPDx8eg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frankenstein Head", + "GiftDropId": 12704, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12704, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt Bag", + "GiftDropId": 12705, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12705, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,eaRDMCA4fE6KJHi639QFvQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Belt Bag (Purple)", + "GiftDropId": 12706, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12706, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,ncERd5bELk23jSRxA7NV9g,N-cAmfOgv0eJZMTo18zJHQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt Bag (Premium)", + "GiftDropId": 12707, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12707, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,whs9olNz9Uani7Gou31mvw,y6aASPUwDkas0W5Yl27ydQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Belt Bag (Rainbow Pride)", + "GiftDropId": 12708, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12708, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,zIIQkllHFEyjEvAGYC0cPQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Rec Con Belt Bag (Orange)", + "GiftDropId": 12709, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12709, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pNOfTDOgJUGQvGAlTjBoCg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Wide Neck Tie (Promo Room Drop)", + "GiftDropId": 12710, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12710, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poindexter Shirt (White)", + "GiftDropId": 12711, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12711, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,lq59KZwElEStrviDEQLLcA,olyS074RHU-ojE0GzBBYJw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poindexter Shirt (Black)", + "GiftDropId": 12712, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12712, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,PSpysyn5gEKXCEi7f6gDoQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Suspender Shirt (Pink)", + "GiftDropId": 12713, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12713, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "PryEX4MEvkGKwST6dqJHjA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cupid Toga", + "GiftDropId": 12714, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12714, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Red)", + "GiftDropId": 12715, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12715, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,90qQe0AR3kOou0MsuoTmPA,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Blue)", + "GiftDropId": 12716, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12716, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,hZKPr4sg10SRj9DLuEgOrw,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (Black)", + "GiftDropId": 12717, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12717, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "q7pSsRMNHkqEJmYHuhhG6g,x3Q0vVeG_E6juqGM1o0SOQ,ojCeJ1VwtUelyVqFnUwK5A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Mitt (White)", + "GiftDropId": 12718, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12718, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Jacket (Red)", + "GiftDropId": 12719, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12719, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,i5RKLo-RbEqisnGII1wpaQ,xnxDimLvVUCI9tEJqWDDcA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Jacket (Black)", + "GiftDropId": 12720, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12720, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,IzkFARlv6EenmrfcNkcOuw,xnxDimLvVUCI9tEJqWDDcA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Jacket (Midnight)", + "GiftDropId": 12721, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12721, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QCtqxbvYOkan79YFugH_Cw,LyVf9lnzdku1F4iPBGqk-g,xnxDimLvVUCI9tEJqWDDcA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Jacket (Green)", + "GiftDropId": 12722, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12722, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Tan)", + "GiftDropId": 12723, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12723, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,H0sqS2_VPEieVrHSyMNo7g,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Black)", + "GiftDropId": 12724, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12724, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "QK6lBlX_wUCiSbJ9RkIwdA,TjeZwaUp10uhM72q8j4R0A,9HVoTIf90Ea8_czICVg9AA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Shirt (Red)", + "GiftDropId": 12725, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12725, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Cuff", + "GiftDropId": 12727, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12727, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "qxovV6Vym0ufL2cTCyKjOQ,64Hvmzrb3Uu9X_dCA3M3Jw,rPpYm5fIzky4vqVB26guAw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Cuff (Silver)", + "GiftDropId": 12728, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12728, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Hat (Pickup)", + "GiftDropId": 12729, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12729, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ReqOfohe6UamzaiHG1x3Ow,lDXambcP60CeY2C8qeGDFw,uiAwVt3HK0mRVtWp9B-gTg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Trucker Hat (Flatbed)", + "GiftDropId": 12730, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12730, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "rJ9zPPGdlk2i24sxLfkqng,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lifeguard Uniform", + "GiftDropId": 12731, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12731, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "s6mUIqiPCk6e57UYCx3SZA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hat (Grim)", + "GiftDropId": 12732, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12732, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "s6mUIqiPCk6e57UYCx3SZA,0cP9EcZRFEuMOvmZ_Kx9dA,smmfK-N2R0uoDiuIHrhImg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hat (Emerald)", + "GiftDropId": 12733, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12733, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "s6mUIqiPCk6e57UYCx3SZA,PcUZrdKXhk2XHa5Gy0YnnA,dpBx3DxB7kKJphxCvfmKKw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Hat (Creators Contest)", + "GiftDropId": 12734, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12734, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sL7iHCnjyEuQKzrTvciEzQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Bride of Frank Hat", + "GiftDropId": 12735, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12735, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Pauldron", + "GiftDropId": 12736, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12736, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "sOREgAGs-06CeGGsG-WIkw,rSzG7s1ocUmx9_VrJLOcHQ,ISycihytUUyoypVb-kXN_Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Steampunk Pauldron (Silver)", + "GiftDropId": 12737, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12737, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Hat (Brown)", + "GiftDropId": 12738, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12738, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-SQLtL4rdEWTJdw2IroQCQ,CoSVCyrI-0qg-EkqB2R0hg,JO9lJOQSREWbPyDBZH_cyg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Hat (Black)", + "GiftDropId": 12739, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12739, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Bandolier (Brown)", + "GiftDropId": 12740, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12740, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t_66r_j5oUSh9awIPmdUKg,YTlnBuEjhUG1hSfAs8qwuw,IcR9Z_MxKkS9uh4uFYuFzQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Bandolier (Black)", + "GiftDropId": 12741, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12741, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Cuff (Red)", + "GiftDropId": 12742, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12742, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,i5RKLo-RbEqisnGII1wpaQ,8kdJkmwNM0WQmMVrb8fK8A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Cuff (Black)", + "GiftDropId": 12743, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12743, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,jwEB6LyEaEekqtPNRc6TVA,8kdJkmwNM0WQmMVrb8fK8A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Cuff (Midnight)", + "GiftDropId": 12744, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12744, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "t9co2516nkuJO4LIJA1bJA,Wj7I2YiVoE6zp8J_HYs8tw,8kdJkmwNM0WQmMVrb8fK8A,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Aristocrat Cuff (Green)", + "GiftDropId": 12745, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12745, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TcgHS_0aPkehrBg7ytMOMQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Clubmaster Glasses", + "GiftDropId": 12746, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12746, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Tan)", + "GiftDropId": 12747, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12747, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,3qu7mxSNpkKRrYMhsWHVGg,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Black)", + "GiftDropId": 12748, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12748, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,Ij8MXrl1Okip4M7y-gF23Q,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (Red)", + "GiftDropId": 12749, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12749, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "TjrFi6TFhUC5tQXWkZiK9A,qEojxjSXm06CX52hRDJAew,K5NXVecrqk6Nb6SkBu08ww,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Treasure Hunter Tank Top (White)", + "GiftDropId": 12750, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12750, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tkbHKZ9wu0W00VGeUbIaaw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frankenstein Wrists", + "GiftDropId": 12751, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12751, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Tan)", + "GiftDropId": 12752, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12752, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,eV3Nv6SWS0yl3f-fgjPb-w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Denim)", + "GiftDropId": 12753, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12753, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,Lxx3q6JRnUW_cPG_kGG4ag,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (White)", + "GiftDropId": 12754, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12754, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "tTKv7eRODka2KC_hsY2O3Q,vek37vRROUKnSJKVP0CH6w,t-ZEWJCgFEyGP2PjNblQMA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Grillmaster Apron (Charcoal)", + "GiftDropId": 12755, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12755, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "-twtjyBdQ02EAdOfBGTiEw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Van Dyke Beard", + "GiftDropId": 12756, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12756, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "U_H976qYRUmg9e2clsAflg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Gown", + "GiftDropId": 12757, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12757, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "U_H976qYRUmg9e2clsAflg,4D4ge1PYokaj_g96k4oasA,ica0LZyM_kOox8gxW7CaMw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Gown (Video Creation Class)", + "GiftDropId": 12758, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12758, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "U_H976qYRUmg9e2clsAflg,iZy7RmfAz0603oMO-jD-WA,ica0LZyM_kOox8gxW7CaMw,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Graduation Gown (Maker Pen Class)", + "GiftDropId": 12759, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12759, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Black)", + "GiftDropId": 12760, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12760, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,2sf-FU4WckGBDWUkVz4z1g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Sky)", + "GiftDropId": 12761, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12761, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,3PfP661Fg0CruzRxis9EiA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Dreams)", + "GiftDropId": 12762, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12762, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,4scG_UBlzE-5DWRhSrtm6g,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Chillout)", + "GiftDropId": 12763, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12763, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,8ANbOhNnO0yLQOCIBsDwfg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Blue)", + "GiftDropId": 12764, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12764, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,a5nUvJZgTEGBUvdHx0Y6Ng,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Purple)", + "GiftDropId": 12765, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12765, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,d9mwowRelE2lDKEA0UQMZQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Dawn)", + "GiftDropId": 12766, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12766, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,hf0gkFVS8ESvceRsC3LAXQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Psy)", + "GiftDropId": 12767, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12767, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,I1J-xY4YNU2dB_od4P_7Dg,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Heat)", + "GiftDropId": 12768, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12768, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,JWBK5v78Y0uRVEXlD-Qk6Q,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Orange)", + "GiftDropId": 12769, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12769, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,k_ZYy0SjtU2TB7IFdq2vDA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Synth)", + "GiftDropId": 12770, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12770, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,ns5tIRishUOp-nYqLedcwA,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Techno)", + "GiftDropId": 12771, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12771, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,nX7krD8e2km_ZlOLWcoxdQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Lounge)", + "GiftDropId": 12772, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12772, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,oNtLjorrZ06t4yIdWqKCcQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Headphones (Wooden)", + "GiftDropId": 12773, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12773, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,OqsbZ8Xls0i8uA6ha7H3qQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Trance)", + "GiftDropId": 12774, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12774, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,pAlEt5sqD0mKgFd_0b7RgA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Headphones (Blossom)", + "GiftDropId": 12775, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12775, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,PNH0VNS1qk6nWVecYmVDDQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Headphones (Orange)", + "GiftDropId": 12776, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12776, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,PQTvQiYu-ESRUldnxgm5BQ,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Jungle)", + "GiftDropId": 12777, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12777, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,sXF1BZr8X06AYnWUrWxy1Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floral Headphones (Lavender)", + "GiftDropId": 12778, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12778, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,thG3Dc1PFEqAvT9xCVshuw,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Green)", + "GiftDropId": 12779, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12779, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,Uz2hrptCa0erjqyPoiZxew,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Neon Void)", + "GiftDropId": 12780, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12780, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UcPo9SsF3EGTCBB2J-Efdw,viL4CPch2ECwG-RNaWcyZw,_Yq00H-NWUyQNvGxRunHbg,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Notes Headphones (Red)", + "GiftDropId": 12781, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12781, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "UGkQa4atNUe1cE5TN79s4Q,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Floatie (Unicorn)", + "GiftDropId": 12782, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12782, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "uubY_Cn9A0-Ww4lsIRCF6w,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Dracula Medal", + "GiftDropId": 12783, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12783, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shirt", + "GiftDropId": 12784, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12784, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,4ijeE3LqUUuSplKrMto6Kg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Begonia)", + "GiftDropId": 12785, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12785, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,6taO0KRM_kuKoaTnOIsHRg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Raindrop Tourist Shirt", + "GiftDropId": 12786, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12786, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,adJVA26PyUSVvmZgxkCAmQ,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Poppy)", + "GiftDropId": 12787, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12787, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,d27e5m1BLUWI42Pxnj6F4A,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Dahlia)", + "GiftDropId": 12788, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12788, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,gwdtq3NiEEmMKYtn1VPoiw,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Traveler Shirt (Yellow)", + "GiftDropId": 12789, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12789, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,iEvS6I9LjkSaGAmjcxz8uQ,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Shirt (Red)", + "GiftDropId": 12790, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12790, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,NKf5-r2S_0iP0SaO9bjvaw,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Paradise)", + "GiftDropId": 12791, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12791, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,otQaNOsODUSTfHlCX0IVOA,0WOBGm34H0ySBC10VToa9g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Lily)", + "GiftDropId": 12792, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12792, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,RZFWcTzxPkOfUuTIQ1mzkg,ytfIq0TiYU6EUdd0ruaGAQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Luau Shirt (Primrose)", + "GiftDropId": 12793, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12793, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,XT_txjZfIUOT400UPHLaRA,M-mi8QUHwEeIewXE8uAlrQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Shirt (Green)", + "GiftDropId": 12794, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12794, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vP9EKTMXP0yni8U7uCz2-g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tutorial Sash (Master)", + "GiftDropId": 12795, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12795, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vP9EKTMXP0yni8U7uCz2-g,FsATqzRVekO9hQ3u_q7keg,Q7hqvEo7DUyD9AqIOunWWA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teacher's Sash (Level 2)", + "GiftDropId": 12796, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12796, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vpP2ZvnL0Uy3n-I_Jv3eeQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cowboy Hat (Hairy - Promo Room Drop)", + "GiftDropId": 12797, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12797, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "VQnoLstCyEGDPy1c38-GvA,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Biker Helmet", + "GiftDropId": 12798, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12798, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "W7AJ4UYlVkWF5nLbmpmRBg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Crown", + "GiftDropId": 12799, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12799, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "W7AJ4UYlVkWF5nLbmpmRBg,5Hk7UR60rkquUNxpQ8O0Gw,zMXDVNsKn0GhVd2Tjho0-g,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Ice Queen Crown (Lilac)", + "GiftDropId": 12800, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12800, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Red)", + "GiftDropId": 12801, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12801, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,MxnAq_XOw0uTzQ8IIxqb_Q,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Yellow)", + "GiftDropId": 12802, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12802, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,oKxmH-1s2EyIDkZoOQSQQw,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Green)", + "GiftDropId": 12803, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12803, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "Wua43ED71UqL71ATtyS0iQ,XFCpIdeDXUqeYCIgh4fGtg,sV_ByCug30G1Gw-77KUe1Q,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Soda Clerk Hat (Blue)", + "GiftDropId": 12804, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12804, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Fuchsia)", + "GiftDropId": 12805, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12805, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,_uh3kj6hKUyBKOSR3R8dog,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Purple)", + "GiftDropId": 12806, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12806, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,i3rD_hnQG0a-5f6Ve4AfWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Pink)", + "GiftDropId": 12807, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12807, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,kaRBW1u3dkODGjPMePW6Uw,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Rose)", + "GiftDropId": 12808, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12808, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,Ot9EG-FfKEauT0u6pSZuWg,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Teal)", + "GiftDropId": 12809, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12809, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "WuShlrJnHUKuscn8e6Rt2g,S9uymuvraUCOM8gmB7bnEA,M5z2wk-GDkOAjvZzqsfcNQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anime Bow (Dark Blue)", + "GiftDropId": 12810, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12810, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "wy2cfgb8mUqjMrIOwHH2ew,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Cuffs (Grim)", + "GiftDropId": 12811, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12811, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "wy2cfgb8mUqjMrIOwHH2ew,0ZKR_qxrWkiWkjpot8s6Cg,5aX524Lfok-0dC3UFv-OkQ,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Cuff (Emerald)", + "GiftDropId": 12812, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12812, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "wy2cfgb8mUqjMrIOwHH2ew,Hk6svQ5Sr0GDKLxOyktk9w,IQvHmZ8ei02hVuXZiXb6TA,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Witch Cuffs (Creators Contest)", + "GiftDropId": 12813, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12813, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "zpjkkb1HtUORoPaODFuuxg,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mummy Hand Wrap", + "GiftDropId": 12814, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12814, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ZsggwOJ8XUOGfaJltM418g,,,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Frankenstein Shirt", + "GiftDropId": 12815, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12815, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "05a20650-6ffe-41ea-b1c0-dcfb5e85ab7a", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hunter Boots", + "GiftDropId": 12816, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12816, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08046fdc-aafc-4b22-9917-3e7a9a7ffcd3,zhLs4Hgw1UCrcNekAWd4RQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Poodle Skirt (Shark)", + "GiftDropId": 12817, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12817, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "08409254-9916-4212-a5bf-7c747a1e9b9d", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barista Apron", + "GiftDropId": 12818, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12818, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "098518f6-30b1-4537-9bd5-08e2336a326d", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Denim Cuffed Jeans", + "GiftDropId": 12819, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12819, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "0c98212e-4835-4e11-8852-4a78acbadd76", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barista Button-up Shirt", + "GiftDropId": 12820, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12820, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "112fd41c-4240-435c-ae9d-761a94ed2eec", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Titan Plate", + "GiftDropId": 12821, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12821, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14e59af3-bc85-49b8-a16b-024c9bf3419f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Goth Choker", + "GiftDropId": 12822, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12822, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,1ab156c9-4ffd-40ed-887b-e72280d82ccc", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Warlock Ballcap", + "GiftDropId": 12823, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12823, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,447d7147-f9d5-4f7e-9503-220fe3257763", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Titan Ballcap", + "GiftDropId": 12824, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12824, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,531cbbea-e963-4f7c-a0cb-da880084fa3a", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hunter Ballcap", + "GiftDropId": 12825, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12825, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,952866cd-c899-4547-b16d-94193646d804", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sasquatch Cryptid Trainer Hat", + "GiftDropId": 12826, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12826, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,ca8ddc6f-3c69-44b0-b5da-969b419239d0", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chupacabra Cryptid Trainer Hat", + "GiftDropId": 12827, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12827, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "14ef6b00-debf-4a85-9755-b4d37df496d3,dde4711c-f489-42da-89fe-774918802249", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mothman Cryptid Trainer Hat", + "GiftDropId": 12828, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12828, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "157d609c-3827-45e3-ace1-be7cc250d132,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Bitten Boogie Board (Cerulean)", + "GiftDropId": 12829, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12829, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "157d609c-3827-45e3-ace1-be7cc250d132,ppkByMiIi0inxbXKX4fu4A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Bitten Boogie Board (Cardinal)", + "GiftDropId": 12830, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12830, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,5a0d7b1d-deba-40b6-881f-af5b499f033d", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "90's Skateboard on Back", + "GiftDropId": 12831, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12831, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "159aa0f1-38b7-4a31-b1c3-111bcde687c1,655a48e6-ab7c-4c77-9c52-262f5bb8cbc2", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Skateboard on Back (Stickered)", + "GiftDropId": 12832, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12832, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "16359b51-96c4-4be0-b598-319c7549e18a,3ya4VDfxLU-krfBh_H0VAA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fiery Mermaid Crown", + "GiftDropId": 12833, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12833, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17640fe1-2051-4159-93e0-7e037b9340a6", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Carnival Clown Shoes", + "GiftDropId": 12834, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12834, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17f321cb-b970-4159-87b2-0aec6adc9291", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gray Bike Shorts [Full Body]", + "GiftDropId": 12835, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12835, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "17f321cb-b970-4159-87b2-0aec6adc9291,04fa6c7e-87f5-4a96-ada0-106b5465b48e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Bike Shorts [Full Body]", + "GiftDropId": 12836, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12836, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18852aae-9bf8-4a41-a126-f3e7f777f436", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Carnival Clown Suit", + "GiftDropId": 12837, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12837, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "18bfbf96-f14b-4019-b915-dabd08ca1709", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Oceanic Skirt", + "GiftDropId": 12838, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12838, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,b11GS6Jd4E-UhO8wxhfQXw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Camp Hamhawk T-Shirt", + "GiftDropId": 12839, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12839, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1940c740-695d-4481-a802-bb11b6561635,cd9d37fb-51a9-45dd-8e87-2756eb62f48b", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Howling Wolf T-Shirt", + "GiftDropId": 12840, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12840, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1beaf288-b5a5-475c-8149-c8f3d1146083,MvC6bRHxmkaXvWS6Q0cIFg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Runner Wrists", + "GiftDropId": 12841, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12841, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1d5e951c-e970-470b-81b1-af669e832111", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knitted Fox Scarf", + "GiftDropId": 12842, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12842, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "1dbc517c-432b-4c85-8c5e-dfcf22b269cb,034d78cf-9dbd-46f3-b204-0d358e6891df", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Back Scythe (Venom)", + "GiftDropId": 12843, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12843, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "20eb23e8-ab3b-44fc-8038-3714946c1a09,e687fd8e-fcff-4a6e-a6fb-81baf4910675", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Kitten and Puppy Sweater", + "GiftDropId": 12844, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12844, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "22afabc7-86b6-4a37-829b-40520de4b9c5", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Titan Mark", + "GiftDropId": 12845, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12845, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "264fd0c2-88f9-4780-ad72-52351e31b13f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Burgundy Casual Cardigan", + "GiftDropId": 12846, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12846, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "264fd0c2-88f9-4780-ad72-52351e31b13f,2d035c24-8437-4403-a024-4c3bfd0d80a9", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Casual Cardigan (Blue)", + "GiftDropId": 12847, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12847, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "264fd0c2-88f9-4780-ad72-52351e31b13f,7d025ccf-f3b9-4601-9dba-9f25b135d11e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Casual Cardigan", + "GiftDropId": 12848, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 20, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12848, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 630, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flats [Full Body]", + "GiftDropId": 12849, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12849, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,1Ea8XwIf6kCD2Eb9oq7ReQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Flats [Full Body]", + "GiftDropId": 12850, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12850, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,6X97IqtVwUCHZGPUNvf2Yw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Flats [Full Body]", + "GiftDropId": 12851, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12851, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,AWHOOW5WBU2heQY-VJX86g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Flats [Full Body]", + "GiftDropId": 12852, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12852, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,BXqs_IS3rk65N_7LTr7vPw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brown Flats [Full Body]", + "GiftDropId": 12853, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12853, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,Gc5BjgqJbkSSoakH54F2gg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Flats [Full Body]", + "GiftDropId": 12854, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12854, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,GTur2Qczg0aK-BFm8OCYFQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orange Flats [Full Body]", + "GiftDropId": 12855, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12855, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,KnjyXIUSCUG0T836zd8uFA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Flats [Full Body]", + "GiftDropId": 12856, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12856, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,NOLj-kovfE6rezWYBQz7OA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Flats [Full Body]", + "GiftDropId": 12857, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12857, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "2791f5e2-b72a-4792-9727-0b78053c78ac,qFfT1pN9IkW3Nb4SQdEJdQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Flats [Full Body]", + "GiftDropId": 12858, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12858, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "27fa9f11-5368-4f6c-a114-18501478a9fa", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Atlantian Crown", + "GiftDropId": 12859, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12859, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,adETWZLIA0O0feRzUjxKQw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Coral Reef Cape (Teal)", + "GiftDropId": 12860, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12860, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "281937b2-f994-45e9-a6d3-03d097247ce6,f48124bc-8937-46fd-a2f9-3e55a46a495e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sticky Note Beach Towel Cape", + "GiftDropId": 12861, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12861, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "296eea1f-0e61-41d3-8acd-02b7ce637ad3", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snowflake Fairy Wrists", + "GiftDropId": 12862, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12862, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "309f3ab1-d2a4-4d63-b248-93d9795a8a23", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fruit Salad Belt", + "GiftDropId": 12863, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12863, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,02306559-159e-413d-ad33-8cb87cb354ff", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chupacabra Cryptid Trainer Hiker Shirt", + "GiftDropId": 12864, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12864, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,2405ae19-5918-4c95-a408-40015f28c6d2", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mothman Cryptid Trainer Hiker Shirt", + "GiftDropId": 12865, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12865, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,88a08c66-6a75-4dcb-bf38-2395403b1535", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sasquatch Cryptid Trainer Hiker Shirt", + "GiftDropId": 12866, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12866, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,qRIbIelHBUOU71eoK2XQeg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hiker Shirt (Violet)", + "GiftDropId": 12867, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12867, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "32cdcbc0-6a9e-4245-980f-6888f12fe065,VfSI4zfHbECwcrQmcbelTg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lime Hiker Shirt", + "GiftDropId": 12868, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12868, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "371ac113-5a7d-4cb7-bb4d-eccbed272422", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fall Outfit (Pumpkin Spice)", + "GiftDropId": 12869, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12869, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "371ac113-5a7d-4cb7-bb4d-eccbed272422,87694366-3401-43a0-aa32-03e816727d8b", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Winter Outfit (Sweet Treat)", + "GiftDropId": 12870, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12870, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "37668d3d-c9f4-4bd6-81d4-a4f64ba2d61b,1d92cbd4-4101-4edb-a7ef-5f5d81b9d672", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mothman Wings", + "GiftDropId": 12871, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12871, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3916a22b-ef4b-4ecc-9945-fd57867af597,IcgjR69rYUuNhsb3s9qjYA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lime Hiker Backpack", + "GiftDropId": 12872, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12872, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3916a22b-ef4b-4ecc-9945-fd57867af597,yMkN0om7l0-_47gDrBWxiw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hiker Backpack (Violet)", + "GiftDropId": 12873, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12873, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "39dde11e-7aa1-4bd2-8532-62665e8d8dd3,a0797dd3-0124-46f3-b519-dbf1d480d6d3", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Gothic Gentlelady Dress", + "GiftDropId": 12874, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12874, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "3fd409ff-8b34-4ce9-bf27-2dd698ea38cb", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barista Pants", + "GiftDropId": 12875, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12875, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "41bece0e-9b5d-4151-bf5c-d0e786a803b4,4be19a56-37b6-48eb-9439-c4e525418f89", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Beanie", + "GiftDropId": 12876, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12876, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "428bba86-8932-4bde-a2dc-abfb69ed76e4", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Race Car Driver Race Suit", + "GiftDropId": 12877, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12877, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4308b6d7-21ad-4417-a6fd-7116c6480689", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Mothman Cryptid Trainer Bookbag", + "GiftDropId": 12878, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12878, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "459ec62c-67db-4b72-9e29-0ad3ecd0b737,Iz6cWpY2B0uOQ9BnY3fSbA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Runner Helmet", + "GiftDropId": 12879, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12879, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "469f353a-384a-4a4e-a03c-118a0b9c2f5f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hunter Belt", + "GiftDropId": 12880, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12880, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,8c4c95e7-f427-4f2f-b933-6aadb8b74f5e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Titan Hoodie", + "GiftDropId": 12881, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12881, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,9fe0efad-641b-4aee-a097-f68603aa2c72", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hoodie", + "GiftDropId": 12882, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12882, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,dc82b045-3c0b-47a8-bf01-88c6740ac169", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hunter Hoodie", + "GiftDropId": 12883, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12883, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4a0e91a1-4562-4a82-92be-cb7491f1592b,ddf02962-396f-45c8-a0ef-512725cf75ab", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Warlock Hoodie", + "GiftDropId": 12884, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12884, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c091a48-90c9-4314-b0e9-96ac502f9b18", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tech Camper Cargo Shorts", + "GiftDropId": 12885, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12885, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c52478a-b2c9-4520-8f88-52f2262cc6bf,0e3eb615-3290-4efa-ac11-aa10a658525b", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Everything Hot Dog Suit", + "GiftDropId": 12886, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12886, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4c54eb96-4c84-4685-8cbc-e65ad792b777", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chupacabra Cryptid Trainer Bookbag", + "GiftDropId": 12887, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12887, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,15774b83-fb74-4475-a4e7-5f9b05bc7061", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Pop Idol Sneakers", + "GiftDropId": 12888, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12888, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,37b5f581-3064-4437-b6fa-ac66f6af4c28", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Primary Pop Idol Sneakers", + "GiftDropId": 12889, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12889, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,4bab58d9-4f46-458f-9dc1-a24a9297d421", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Pop Idol Sneakers", + "GiftDropId": 12890, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12890, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,4ea78d70-9599-4068-a787-5965249eb430", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Navy Pop Idol Sneakers", + "GiftDropId": 12891, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12891, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,5bdf060f-f0ad-442c-b999-6bd43ee86d56", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beige Pop Idol Sneakers", + "GiftDropId": 12892, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12892, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,61df955b-b54d-47e5-856e-1a151273bfd5", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Light Green Pop Idol Sneakers", + "GiftDropId": 12893, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12893, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,87250729-42e0-4bde-9a7f-fdb3100acc25", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Pop Idol Sneakers", + "GiftDropId": 12894, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12894, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,aff071d3-fddc-401f-bf84-7b2263bad287", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Pop Idol Sneakers", + "GiftDropId": 12895, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12895, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,d538bdc7-2740-44bd-8c69-7acc0c40bfff", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Pop Idol Sneakers", + "GiftDropId": 12896, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12896, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,d7943f3a-e06f-4a39-98e5-d93e7df889cd", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Pop Idol Sneakers", + "GiftDropId": 12897, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12897, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,d8f62d4a-dc62-492d-a207-508086b55963", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Light Blue Pop Idol Sneakers", + "GiftDropId": 12898, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12898, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "4fc6d0ce-4658-47d7-ac57-86dc0a0d6e9f,eeefaa2f-32ab-46d4-9a69-909f224c926a", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teal Pop Idol Sneakers", + "GiftDropId": 12899, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12899, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "515ac648-44bf-4ea7-a3e8-7a6d9899d740", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sasquatch Stompers", + "GiftDropId": 12900, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12900, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "517cc4d9-ea66-4787-8ce2-b3bf6c465bc7", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Knitted Sweater Dress", + "GiftDropId": 12901, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12901, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "572e1635-d62d-483f-ad25-a292e416284d", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Goth Outfit", + "GiftDropId": 12902, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12902, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5779551d-d536-4f85-b4a5-00fd723c94f4", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chupacabra Mutton Chops", + "GiftDropId": 12903, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12903, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57e05822-ca63-4726-b3a0-260b6ece7bd7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snake Balloon Hat (Green)", + "GiftDropId": 12904, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12904, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "57e05822-ca63-4726-b3a0-260b6ece7bd7,c2e62c10-3120-4991-9aa7-3f3e2cd29054", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Snake Balloon Hat (Blue)", + "GiftDropId": 12905, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12905, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "58d3f945-510f-4f92-87e3-a57e29611e4f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fruit Salad Hat", + "GiftDropId": 12906, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12906, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "5929bc1e-7ead-4818-a9ef-8e6d3bc885b3", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Powerlifter Necklace", + "GiftDropId": 12907, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12907, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "616ff7fa-8776-44ae-9d98-e0b545e48907", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Titan Greaves", + "GiftDropId": 12908, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12908, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "620934cd-aa73-42ec-97cd-65dd9eed1226,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Camera on Neck", + "GiftDropId": 12909, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12909, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67117b3d-0669-4cf3-8a4f-066cabd4d8b1,b42fa4f0-3b11-4b08-9a0a-7ed54795890d", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Iron Chef Cape", + "GiftDropId": 12910, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12910, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "67f082ac-4a7d-4ee3-b05e-872d9ec515f4", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "80's Arcade Retro Belt", + "GiftDropId": 12911, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12911, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6f57d0e7-ef7c-4bb7-9121-50dc752565c2", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pumpkin Spiced Boots", + "GiftDropId": 12912, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12912, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6f966a7f-29c2-45c7-952a-16f147e2f108", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White, Blue Baseball Cleats", + "GiftDropId": 12913, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12913, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "6f966a7f-29c2-45c7-952a-16f147e2f108,dd5095d7-b361-4a57-9101-5fd299e3cd51", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White, Red Baseball Cleats", + "GiftDropId": 12914, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12914, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7476f124-c7d5-4f38-882e-c1d8a3fd9f0c", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hunter Grips", + "GiftDropId": 12915, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12915, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7493664f-c575-4f59-84c6-87101875ae46", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Moon & Stars Slippers", + "GiftDropId": 12916, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12916, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "74aae830-a46e-4ea7-83dd-1fc7c3a50b1f,96556f7f-a6e8-48f4-a4e4-3fad9be5df4b", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Wedding Dress", + "GiftDropId": 12917, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12917, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7768ea0f-23e1-4e00-a685-5e655a231bca", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hunter Strides", + "GiftDropId": 12918, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12918, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7a7889e2-4247-46e5-8fa6-b1ceb65f359b", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Baseball Mitt", + "GiftDropId": 12919, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12919, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7baec8d2-2edc-4257-bf36-b4c73ff75548,e110e218-8667-4b81-9bb5-8cf00f82aeef", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Basic Pants [Full Body]", + "GiftDropId": 12920, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12920, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7baec8d2-2edc-4257-bf36-b4c73ff75548,ead47c94-95b2-4eb1-9b5a-75cf106e61f0", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Basic Pants [Full Body]", + "GiftDropId": 12921, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12921, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7baec8d2-2edc-4257-bf36-b4c73ff75548,f3074404-02b6-4f5a-a9f0-8dfab07b6e1f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orange Basic Pants [Full Body]", + "GiftDropId": 12922, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12922, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7baec8d2-2edc-4257-bf36-b4c73ff75548,fbcbc56c-4bb1-4e55-ab04-7abdffcf0cd4", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Navy Blue Basic Pants [Full Body]", + "GiftDropId": 12923, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12923, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Leggings [Full Body]", + "GiftDropId": 12924, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12924, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,22c70f8f-7dc7-4dbb-960e-0d43b43dd27f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Leggings [Full Body]", + "GiftDropId": 12925, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12925, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,4523816c-4195-44c7-b5cc-5a535f63d80f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Leggings [Full Body]", + "GiftDropId": 12926, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12926, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,77064661-67f5-4e72-b37f-1c2b6b4b75f2", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Leggings [Full Body]", + "GiftDropId": 12927, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12927, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,a37cf889-f2a9-42f8-937b-5371d1f31af3", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teal Leggings [Full Body]", + "GiftDropId": 12928, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12928, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,b5779ba5-ff69-435f-84ac-a4fa1ecee782", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Leggings - Free", + "GiftDropId": 12929, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12929, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,b72a746f-c67a-45da-8359-a7b9404df6d7", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orange Leggings [Full Body]", + "GiftDropId": 12930, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12930, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7c0b07a6-04a3-4ad4-98d2-fff12c48e7ef,db1ff0d7-3dc2-4961-bf84-d4edbb51e0cb", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Leggings [Full Body]", + "GiftDropId": 12931, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12931, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7cbb780b-dee0-415e-b948-e71b01c75fc8", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hunter Cloak", + "GiftDropId": 12932, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12932, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7df7c0b3-b713-4264-9563-19012422872f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pearly White Shell Necklace", + "GiftDropId": 12933, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12933, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "7f39c694-8b84-4f99-ae86-7776ca8ae089", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hunter Cowl", + "GiftDropId": 12934, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12934, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Boots [Full Body]", + "GiftDropId": 12935, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12935, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,02Qi33Ru4UKQ0RR1v5ONMw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Boots [Full Body]", + "GiftDropId": 12936, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12936, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,2WKCwYySwUSjksyyries9g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Boots [Full Body]", + "GiftDropId": 12937, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12937, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,Fs3GuxlV_EKk3XhgTT-4bg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Boots [Full Body]", + "GiftDropId": 12938, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12938, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,m0mC330TNkWkhle9TqUYYw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Brown Boots [Full Body]", + "GiftDropId": 12939, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12939, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,NB9iqdySpkG8agUCirr1AQ", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tan Boots [Full Body]", + "GiftDropId": 12940, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12940, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,VKz48bIeTU2ibOdFQ-afJw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Boots [Full Body]", + "GiftDropId": 12941, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12941, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "83544102-751c-4f68-adc5-a4c329ae6e70,Vld4uLqj20yYyut0hk_2sw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Boots [Full Body]", + "GiftDropId": 12942, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12942, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86694be4-17da-40bc-945b-044d0e735bd8", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Casual Dress", + "GiftDropId": 12943, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12943, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86694be4-17da-40bc-945b-044d0e735bd8,bab8193c-f67b-4022-834a-597cbf5dc7dc", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Casual Dress", + "GiftDropId": 12944, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12944, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "86694be4-17da-40bc-945b-044d0e735bd8,e5172c0a-3099-4e61-a181-f6b114b0a608", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Casual Dress", + "GiftDropId": 12945, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12945, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8705d28f-49f4-48d9-9946-13f18aabfe4b,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Hat (Hammerhead)", + "GiftDropId": 12946, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12946, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8ae154ba-8e69-48da-a314-507b419d4338", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Atlantian Cape", + "GiftDropId": 12947, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12947, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8b5bf159-bb05-4bdb-acc6-c793610cf26c", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Carnival Clown Pants", + "GiftDropId": 12948, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12948, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8bf20da1-c086-44f0-afda-ed48beb4746f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Warlock Boots", + "GiftDropId": 12949, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12949, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c0a1dfc-b49d-474a-bf26-ccdc6690d396", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flower Sandals", + "GiftDropId": 12950, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12950, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "8c51fc1a-b1ad-4002-a13c-4313abd92c7f,19b90abb-5a34-4b6f-93c8-67c9cf6b063a", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Barista Visor", + "GiftDropId": 12951, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12951, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "94220ee5-e70e-4643-b794-9ed555eb3d21,6d6b3904-10e2-430e-b26e-454e8ceb2984", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Workout Techwear", + "GiftDropId": 12952, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12952, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "94220ee5-e70e-4643-b794-9ed555eb3d21,6fcffb20-d67b-458a-875b-221a69890aba", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Duckegg Techwear", + "GiftDropId": 12953, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12953, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "96ca8d50-0721-47a3-a988-018a1c157677,1df59921-92d1-4bec-9355-b4d0bd942c47", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Carnival Back Drumset Backpack", + "GiftDropId": 12954, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12954, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "971f8378-fc9d-4c8d-b288-5b1527b1bfa0", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Neck Warmer (Pumpkin Spice)", + "GiftDropId": 12955, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12955, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "971f8378-fc9d-4c8d-b288-5b1527b1bfa0,baf3039b-1dd4-4766-a06c-bb74c2d286f6", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Neck Warmer", + "GiftDropId": 12956, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12956, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9880a782-734d-4621-b3ae-39ca7ffec93a", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tech Camper Hiking Vest", + "GiftDropId": 12957, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12957, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "98e4c868-df73-4755-84b6-c4d12723b811,058a0e3f-0940-41e0-aca6-880a99102902", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Neon Green Pop Rock Dress", + "GiftDropId": 12958, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12958, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "98e4c868-df73-4755-84b6-c4d12723b811,8e3513de-5b7a-43e3-b1d9-5c2022d7333a", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teal Pop Rock Dress", + "GiftDropId": 12959, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12959, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9918720d-198c-4cca-a72b-268ab1ac1437", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Race Car Driver Gloves", + "GiftDropId": 12960, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12960, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b62cbca-694f-4a32-b910-14da66bee9bb,85a04148-7326-4ad7-b073-e94291cc4fba", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cottagecore Outfit", + "GiftDropId": 12961, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12961, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9b636782-47f0-4218-9a1d-be65e550dc44,f0b2eb05-690f-4ec1-a573-927fba5b0a58", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Carnival Bongo Belt", + "GiftDropId": 12962, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12962, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cb48301-5e90-4e7c-8058-2f7a865ff869", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White, Blue Baseball Pants", + "GiftDropId": 12963, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12963, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cb48301-5e90-4e7c-8058-2f7a865ff869,4b010884-60a6-4646-bf4a-c3659c4ad2d0", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White, Red Baseball Pants", + "GiftDropId": 12964, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12964, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cc22975-768c-4b1c-8356-d3b6644d74eb", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White, Blue Catchers Mask", + "GiftDropId": 12965, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12965, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "9cc22975-768c-4b1c-8356-d3b6644d74eb,ca5fa878-bf9c-4386-bc7d-caea0dd2bf68", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White, Red Catchers Helmet", + "GiftDropId": 12966, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12966, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a03e28a4-b70a-44fa-b027-a112ea01ddb0", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tech Camper Hat", + "GiftDropId": 12967, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12967, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a112b8b5-ea0e-4d23-a7eb-2daa4683a87c", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Atlantian Warrior Pauldrons", + "GiftDropId": 12968, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12968, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,67232090-4ad1-4782-804b-532698f49d36", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Parrot Onesie", + "GiftDropId": 12969, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12969, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a2fc5417-07e1-402c-a80e-5111a7f57287,kTyKeivEskaxQNLhfPWo1A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Shark Onesie", + "GiftDropId": 12970, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12970, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a5ec4c56-3c0b-43c9-aa0f-dbf5295ff6c8,8375e19b-3420-448f-bc7f-5f14452698d7", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Basic Shorts [Full Body]", + "GiftDropId": 12971, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12971, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a5ec4c56-3c0b-43c9-aa0f-dbf5295ff6c8,83db910c-e496-4ed0-a772-1e00992b4cfe", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Basic Shorts [Full Body]", + "GiftDropId": 12972, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12972, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a5ec4c56-3c0b-43c9-aa0f-dbf5295ff6c8,d200cb87-1079-4f5a-98e7-cdbff6df6871", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Basic Shorts [Full Body]", + "GiftDropId": 12973, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12973, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a9404818-d7d0-4061-8eb8-90f23e82115c,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overflowing Book Bag (Red)", + "GiftDropId": 12974, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12974, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a9404818-d7d0-4061-8eb8-90f23e82115c,08593d9f-aaed-4662-973d-0f30e77f1955", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Overflowing Book Bag (Green)", + "GiftDropId": 12975, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12975, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a94cb187-1910-4fee-86a9-979b52b27db5", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beach Hat", + "GiftDropId": 12976, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12976, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a9578182-493f-4e12-94c1-746dcb9aef3f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Parrot Beanie", + "GiftDropId": 12977, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12977, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "a95a1b36-7849-4791-89be-c1a56868bfc5", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Artist's Belt", + "GiftDropId": 12978, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12978, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ab8282d8-f612-482f-b3bd-421176bfe2ee", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Warlock Robes", + "GiftDropId": 12979, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12979, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,5bBz1dY0WU-BNnDzMDtd8g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Sneakers [Full Body]", + "GiftDropId": 12980, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12980, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,Ac4_jZ729EqUT2ZNO0Do-A", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orange Sneakers [Full Body]", + "GiftDropId": 12981, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12981, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,b2LZ3KJSo0CqXK5JO3-Ldw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Sneakers [Full Body]", + "GiftDropId": 12982, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12982, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,HmUsJvhU80e1cSVFhSyZVw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Sneakers [Full Body]", + "GiftDropId": 12983, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12983, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,ps8WE0ePF0OUR46ehAEUQg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Sneakers [Full Body]", + "GiftDropId": 12984, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12984, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,vGslG5iYVESGQe9rrqUK1g", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Sneakers [Full Body]", + "GiftDropId": 12985, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12985, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,Z4G1DFsyA0CSBrbmYpkmIg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Sneakers [Full Body]", + "GiftDropId": 12986, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12986, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ac491e03-5bbd-4070-8ded-ca392d5b8bd9,zZ6khdQPG0KlCp_zp9Qv5w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Sneakers [Full Body]", + "GiftDropId": 12987, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 0, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 150, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12987, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 135, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "acdacd4e-5f15-4de9-84bf-95ce7d87d60f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Race Car Driver Hat", + "GiftDropId": 12988, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12988, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ad40bd95-d662-4993-8449-3df293a15e64", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Warlock Hood", + "GiftDropId": 12989, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12989, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "adbd2eaa-0dd0-4955-be4c-0d5a66d64ed2,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "DJ Headphones", + "GiftDropId": 12990, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12990, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "af33bdb1-b7fa-4fe6-b37a-b1fe6a420879,f0753d46-2ad0-4319-bf2d-f9f326c94120", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Iron Chef Hat", + "GiftDropId": 12991, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12991, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b226ba29-cd92-4baf-b4cc-3411c15c7070", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Compass Necklace", + "GiftDropId": 12992, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12992, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b63c6d3b-fe17-44d9-ac99-cd9a89f2a5e4", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orange Lifting Belt", + "GiftDropId": 12993, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12993, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b63c6d3b-fe17-44d9-ac99-cd9a89f2a5e4,1a37f1e3-9b30-46fb-ab92-d238ee88815e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teal Lifting Belt", + "GiftDropId": 12994, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12994, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b63c6d3b-fe17-44d9-ac99-cd9a89f2a5e4,34a725cb-3c69-49d7-a8fd-ac855ae9efb8", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Lifting Belt", + "GiftDropId": 12995, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12995, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b65fce08-fc5d-4519-872a-8b0953665f65", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Warlock Gloves", + "GiftDropId": 12996, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12996, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,4874a567-4497-4d2d-8a9f-875a9300f478", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Paw Print Hoodie", + "GiftDropId": 12997, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12997, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,52323c4d-2c02-47e6-b5b2-db8d6e15caa4", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red Paw Print Hoodie", + "GiftDropId": 12998, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12998, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b6rLwzD4NkKV7xKn9ZYVkA,de607042-f0d8-4a11-8d09-6e70d3cb661c", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Paw Print Hoodie", + "GiftDropId": 12999, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 12999, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b734172c-e405-4fc7-88c3-c859309bb4ac,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beanie (Flamingo)", + "GiftDropId": 13000, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13000, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "b97fc37e-8f10-48e1-b508-a6a346be896d,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Anglerfish Beanie", + "GiftDropId": 13001, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13001, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "bb6ee7fa-7a31-4a16-a97e-be6eac42c595,e6b8cc9e-950c-4427-bb55-0d8121f6fc99", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Cottagecore Dress", + "GiftDropId": 13002, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13002, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,1373f47c-72fb-4337-bc51-e1ed4d67447b", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teal & Yellow Quilted Vest", + "GiftDropId": 13003, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13003, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,5c632525-50f0-428d-adcd-5317259f3884", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black & Green Quilted Vest", + "GiftDropId": 13004, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13004, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,7b4969d1-bb3e-4ae0-aaee-c675313bda08", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink & White Quilted Vest", + "GiftDropId": 13005, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13005, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "be75b46c-ce22-4758-8810-c409c5aa1c50,fd948890-5fb4-4bb2-9c19-043395c91fc9", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teal & White Quilted Vest", + "GiftDropId": 13006, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13006, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c0f5ba50-8a26-4aa3-9a26-c3981574192f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Warlock Legs", + "GiftDropId": 13007, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13007, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c1d78817-7c33-4496-88c9-c28eeca92db1", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sasquatch Cryptid Trainer Bookbag", + "GiftDropId": 13008, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13008, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8c00394-4cd9-4bad-9774-a825ded78f80,Qevoxmtsa0eNzGss_aG2gw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fiery Mermaid Necklace", + "GiftDropId": 13009, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13009, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c8d2503e-5d43-4828-8d1d-40c64a577753,edb24c02-7bff-4150-ab44-eae04fe34c67", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Carnival Harmonica Necklace", + "GiftDropId": 13010, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13010, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "c9badd8f-3f81-4c05-8a31-24abd8839872", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fruit Salad Dress", + "GiftDropId": 13011, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13011, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ca7a3ccb-2bc9-4c93-a6a8-6f22b38526af,E7zTfb8zbUKuld0rxNt7fg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Stunt Runner Harness", + "GiftDropId": 13012, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13012, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cab5bbc7-e407-40e4-953e-c6bb9862795e", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Sweater Jacket", + "GiftDropId": 13013, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13013, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "caf1e229-9660-4abf-8074-f706709f4097,6a73a2a8-174e-4f19-9024-1a21a631dd5f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Citrus Overall Shorts", + "GiftDropId": 13014, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13014, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "caf1e229-9660-4abf-8074-f706709f4097,a264d345-20ce-4655-a890-90eb92e6456f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Berry Overall Shorts", + "GiftDropId": 13015, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13015, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cb061cf3-05fb-4494-be5e-091ddb080271,7cccd32d-ce12-4ce2-8621-6300fec69960", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teal Pop Rock Gloves", + "GiftDropId": 13016, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13016, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cb061cf3-05fb-4494-be5e-091ddb080271,ca07f961-9ac7-418c-a865-5a4e88cadcea", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Neon Green Pop Rock Gloves", + "GiftDropId": 13017, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13017, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cc05a236-c4f2-42b5-b6e5-2b217902a16f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Hunter Vest", + "GiftDropId": 13018, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13018, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cfce35b4-d182-4505-a631-5a8e5011f550,14b479d2-2f41-4274-a1bb-f3d8021267aa", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Neon Green Pop Rock Earrings", + "GiftDropId": 13019, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13019, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cfce35b4-d182-4505-a631-5a8e5011f550,95d8fe6d-76c6-4522-b950-9038b2ec64b7", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Teal Pop Rock Earrings", + "GiftDropId": 13020, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13020, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "cfe276b9-1bdf-4c41-9e86-1a0215c6c5a1,ffUVovxlWUCgOxJyUJscIA", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Ascot", + "GiftDropId": 13021, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13021, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d3bf87c4-cbc0-49dd-985e-7fc329a3a700", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Titan Helm", + "GiftDropId": 13022, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13022, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d52ff2bb-d396-478d-8153-2aa845feb306,G4MuMrpiKEWN0uEBcGlX4w", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Hiker Hat (Violet)", + "GiftDropId": 13023, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13023, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d52ff2bb-d396-478d-8153-2aa845feb306,N-C_xBTZeUq1YsdELln53Q", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lime Hiker Hat", + "GiftDropId": 13024, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13024, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Orange Cardigan Belt", + "GiftDropId": 13025, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13025, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,0737114a-6aac-4186-94cf-c7d25188a853", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Cardigan Belt", + "GiftDropId": 13026, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13026, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,0ab3f180-118a-4e6c-93b3-6b6882a5ef82", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Cardigan Belt", + "GiftDropId": 13027, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13027, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,24aaccc4-156a-4caa-8bb5-f153e093b8f0", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "White Cardigan Belt", + "GiftDropId": 13028, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13028, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,6d2e1307-772a-47ed-afc1-bfdb1db1b071", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Blue Cardigan Belt", + "GiftDropId": 13029, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13029, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,7631aa03-9995-4e13-8dbe-87829a5ff57f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Black Cardigan Belt", + "GiftDropId": 13030, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13030, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,aa2599ad-dfd0-4f07-bbef-07f2b6567212", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Cardigan Belt", + "GiftDropId": 13031, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13031, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "d748a979-6d39-4c30-a4a7-a82e8878f2c1,d9a488ba-931a-490b-919e-c722b7cc5b80", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Cardigan Belt", + "GiftDropId": 13032, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13032, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "da55b1ff-c7f0-4411-aecb-692af8a80029", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lumberjack Boots", + "GiftDropId": 13033, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13033, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "db50d9bc-4087-4743-89ae-dc40bf1ea166", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Beach Accoutrements", + "GiftDropId": 13034, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13034, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "dfffe31f-9f82-4622-a920-ea5f5bd26042,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Binoculars", + "GiftDropId": 13035, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13035, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e633d56d-5121-4492-b606-40759108a00e,c7adc07a-e172-4265-8107-c3c731dde5f2", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Chocolate Popsicle Earring", + "GiftDropId": 13036, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 30, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 800, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13036, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 720, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e8809b31-0c63-4d94-b201-154323212024", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Warlock Belt", + "GiftDropId": 13037, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13037, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e97f05da-57d3-4927-aa22-c124a94d8432,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Lifejacket & Swim Trunks", + "GiftDropId": 13038, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13038, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e97f05da-57d3-4927-aa22-c124a94d8432,6668a675-5be4-4238-843d-92f026a762b7", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Yellow Life Vest", + "GiftDropId": 13039, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13039, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "e97f05da-57d3-4927-aa22-c124a94d8432,a32f0749-0800-4cb8-936d-8b4627ce3d37", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple Life Vest", + "GiftDropId": 13040, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13040, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec4e3acc-f10e-4b7c-b74f-7cf1c95114e3", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Red & Orange Workout Shirt", + "GiftDropId": 13041, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13041, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec4e3acc-f10e-4b7c-b74f-7cf1c95114e3,1f4c7d76-2f55-4cfb-9693-207c5326ec9f", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Purple & Teal Workout Shirt", + "GiftDropId": 13042, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13042, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ec4e3acc-f10e-4b7c-b74f-7cf1c95114e3,3711f5aa-1817-4e7a-8587-40db9ef2a20c", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green & Black Workout Shirt", + "GiftDropId": 13043, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13043, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ee835538-058e-43d9-8268-b7d079563799", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Atlantian Warrior Helm", + "GiftDropId": 13044, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13044, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f0e16eb0-4d34-40e8-8885-5fc18f27c161", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Carnival Clown Hat", + "GiftDropId": 13045, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13045, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f20af2c6-724b-4772-a48e-1801d6002285", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fall Fashion Laced Boots", + "GiftDropId": 13046, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13046, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f567f792-e5bf-41d9-a8a9-e3af7aaddaf7,", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Flip-up Sunglasses", + "GiftDropId": 13047, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13047, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5cdba30-e08e-4e8d-a957-729c5c5aac68", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Kindred Forest Guardian Gauntlets", + "GiftDropId": 13048, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13048, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "f5e14115-c408-40c8-9ee6-90b8948ccd6d", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Titan Legs", + "GiftDropId": 13049, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13049, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fb521ede-d7cb-4dea-8cf4-300fa25872b8", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Goth Belt", + "GiftDropId": 13050, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 10, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 600, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13050, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 540, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fc2bbfa5-ade7-468a-bf39-83106f1fac0c", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Titan Gauntlets", + "GiftDropId": 13051, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13051, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "fd7774bb-b29c-40b5-84b1-5c2bbe574255,499irXZltkSvv9pWsdBSyw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Fiery Mermaid Dress", + "GiftDropId": 13052, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13052, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "ff5c62b3-4f41-4acd-bfd8-8db00de4f36c,16aebbd2-4e46-41b2-96d8-cc88fe502bc2", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Iron Chef Coat", + "GiftDropId": 13053, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13053, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "n52um7A-b0utGxixd1ESvA,8622dfef-d56f-4044-b32b-fcc94c2980c9", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Zipped Biker Jacket", + "GiftDropId": 13054, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13054, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "oYvOo47DJE-DEPlpn5xNUw,19c1f47c-0ebd-436b-94bb-0f51b1d952d2", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Destiny Belt Bag", + "GiftDropId": 13055, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13055, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "pQqNvrhDJ0uuipKHA2qUOA,28764629-3dae-4e0c-9064-fadd9d3d7b7a", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Carnival Suspender Shirt", + "GiftDropId": 13056, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13056, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,7WLoulmRgEKX3Eshtn_cxw", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Pink Tourist Dino Shirt", + "GiftDropId": 13057, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13057, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,BzzPuw8i0km4VQLd77mXEg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Neon Tourist Dino Shirt", + "GiftDropId": 13058, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13058, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,er8BswhSkUqh5TVV5fDAng", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Tourist Dino Shirt", + "GiftDropId": 13059, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13059, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + }, + { + "GiftDrop": { + "AvatarItemDesc": "vDSlMnayzEqWXwT-lkcKSA,zUZHddmmhE2rXfCVuz_GGg", + "AvatarItemType": 0, + "ConsumableItemDesc": "", + "Context": 0, + "Currency": 0, + "CurrencyType": 0, + "EquipmentModificationGuid": "", + "EquipmentPrefabName": "", + "FriendlyName": "Green Tourist Dino Shirt", + "GiftDropId": 13060, + "IsQuery": false, + "ItemSetFriendlyName": "", + "ItemSetId": 0, + "Rarity": 50, + "SubscribersOnly": false, + "Tooltip": "", + "Unique": true + }, + "IsFeatured": false, + "Prices": [ + { + "CurrencyType": 2, + "Price": 3000, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "PurchasableItemId": 13060, + "SubscriberPrices": [ + { + "CurrencyType": 2, + "Price": 2700, + "StorefrontSaleData": null, + "Type": 0 + } + ], + "Type": 0 + } + ], + "StorefrontType": 3, + "SubscriberDiscountPercent": 0 +}